From bcfe87080717715362a23d34ce5a62ee3b701882 Mon Sep 17 00:00:00 2001 From: uukelele Date: Tue, 8 Apr 2025 10:03:04 +0100 Subject: [PATCH 001/101] added 10ms delay to /setblock --- src/agent/library/skills.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/agent/library/skills.js b/src/agent/library/skills.js index 7b9e723..33dd04d 100644 --- a/src/agent/library/skills.js +++ b/src/agent/library/skills.js @@ -533,6 +533,7 @@ export async function breakBlockAt(bot, x, y, z) { let block = bot.blockAt(Vec3(x, y, z)); if (block.name !== 'air' && block.name !== 'water' && block.name !== 'lava') { if (bot.modes.isOn('cheat')) { + await new Promise(resolve => setTimeout(resolve, 10)); let msg = '/setblock ' + Math.floor(x) + ' ' + Math.floor(y) + ' ' + Math.floor(z) + ' air'; bot.chat(msg); log(bot, `Used /setblock to break block at ${x}, ${y}, ${z}.`); @@ -629,11 +630,14 @@ export async function placeBlock(bot, blockType, x, y, z, placeOn='bottom', dont if (blockType.includes('stairs')) { blockType += `[facing=${face}]`; } + await new Promise(resolve => setTimeout(resolve, 10)); let msg = '/setblock ' + Math.floor(x) + ' ' + Math.floor(y) + ' ' + Math.floor(z) + ' ' + blockType; bot.chat(msg); if (blockType.includes('door')) + await new Promise(resolve => setTimeout(resolve, 10)); bot.chat('/setblock ' + Math.floor(x) + ' ' + Math.floor(y+1) + ' ' + Math.floor(z) + ' ' + blockType + '[half=upper]'); if (blockType.includes('bed')) + await new Promise(resolve => setTimeout(resolve, 10)); bot.chat('/setblock ' + Math.floor(x) + ' ' + Math.floor(y) + ' ' + Math.floor(z-1) + ' ' + blockType + '[part=head]'); log(bot, `Used /setblock to place ${blockType} at ${target_dest}.`); return true; From 7c3b06caba54213d23a83f2cdfd0983b91209d4d Mon Sep 17 00:00:00 2001 From: uukelele Date: Fri, 11 Apr 2025 16:26:17 +0100 Subject: [PATCH 002/101] added settings control for block_place_delay --- settings.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/settings.js b/settings.js index e63c9fb..a507947 100644 --- a/settings.js +++ b/settings.js @@ -44,6 +44,8 @@ const settings = { "verbose_commands": true, // show full command syntax "narrate_behavior": true, // chat simple automatic actions ('Picking up item!') "chat_bot_messages": true, // publicly chat messages to other bots + + "block_place_delay": 10, // delay between placing blocks (ms) if using newAction. helps avoid bot being kicked by anti-cheat mechanisms on servers. } // these environment variables override certain settings From c5892c0c403f24b17da9d576ca84067cb0a78aef Mon Sep 17 00:00:00 2001 From: uukelele Date: Fri, 11 Apr 2025 16:29:54 +0100 Subject: [PATCH 003/101] added usage of block_place_delay to timeout --- src/agent/library/skills.js | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/agent/library/skills.js b/src/agent/library/skills.js index 33dd04d..1df6ea8 100644 --- a/src/agent/library/skills.js +++ b/src/agent/library/skills.js @@ -2,6 +2,7 @@ import * as mc from "../../utils/mcdata.js"; import * as world from "./world.js"; import pf from 'mineflayer-pathfinder'; import Vec3 from 'vec3'; +import settings from "../../../settings.js"; export function log(bot, message) { @@ -533,7 +534,7 @@ export async function breakBlockAt(bot, x, y, z) { let block = bot.blockAt(Vec3(x, y, z)); if (block.name !== 'air' && block.name !== 'water' && block.name !== 'lava') { if (bot.modes.isOn('cheat')) { - await new Promise(resolve => setTimeout(resolve, 10)); + await new Promise(resolve => setTimeout(resolve, settings.block_place_delay || 10)); let msg = '/setblock ' + Math.floor(x) + ' ' + Math.floor(y) + ' ' + Math.floor(z) + ' air'; bot.chat(msg); log(bot, `Used /setblock to break block at ${x}, ${y}, ${z}.`); @@ -630,14 +631,14 @@ export async function placeBlock(bot, blockType, x, y, z, placeOn='bottom', dont if (blockType.includes('stairs')) { blockType += `[facing=${face}]`; } - await new Promise(resolve => setTimeout(resolve, 10)); + await new Promise(resolve => setTimeout(resolve, settings.block_place_delay || 10)); let msg = '/setblock ' + Math.floor(x) + ' ' + Math.floor(y) + ' ' + Math.floor(z) + ' ' + blockType; bot.chat(msg); if (blockType.includes('door')) - await new Promise(resolve => setTimeout(resolve, 10)); + await new Promise(resolve => setTimeout(resolve, settings.block_place_delay || 10)); bot.chat('/setblock ' + Math.floor(x) + ' ' + Math.floor(y+1) + ' ' + Math.floor(z) + ' ' + blockType + '[half=upper]'); if (blockType.includes('bed')) - await new Promise(resolve => setTimeout(resolve, 10)); + await new Promise(resolve => setTimeout(resolve, settings.block_place_delay || 10)); bot.chat('/setblock ' + Math.floor(x) + ' ' + Math.floor(y) + ' ' + Math.floor(z-1) + ' ' + blockType + '[part=head]'); log(bot, `Used /setblock to place ${blockType} at ${target_dest}.`); return true; From 4a626ea607e20218acebe2512fb887ccde6d9d57 Mon Sep 17 00:00:00 2001 From: Isadora White Date: Wed, 23 Apr 2025 16:54:24 -0700 Subject: [PATCH 004/101] cooking tasks with equal load to five agent task --- .../equal_load_test_tasks/2_agent.json | 425 +++++++++++++++++ .../equal_load_test_tasks/3_agent.json | 435 ++++++++++++++++++ 2 files changed, 860 insertions(+) create mode 100644 tasks/cooking_tasks/equal_load_test_tasks/2_agent.json create mode 100644 tasks/cooking_tasks/equal_load_test_tasks/3_agent.json diff --git a/tasks/cooking_tasks/equal_load_test_tasks/2_agent.json b/tasks/cooking_tasks/equal_load_test_tasks/2_agent.json new file mode 100644 index 0000000..5ccff29 --- /dev/null +++ b/tasks/cooking_tasks/equal_load_test_tasks/2_agent.json @@ -0,0 +1,425 @@ +{ + "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_rabbit_stew_2_agents": { + "conversation": "Let's work together to make cooked_beef, baked_potato, cake, rabbit_stew.", + "agent_count": 2, + "target": { + "cooked_beef": 1, + "baked_potato": 1, + "cake": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", + "1": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + } + }, + "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_golden_apple_1_rabbit_stew_2_agent": { + "conversation": "Let's work together to make bread, cake, golden_apple, baked_potato, rabbit_stew.", + "agent_count": 2, + "target": { + "bread": 1, + "cake": 1, + "golden_apple": 1, + "baked_potato": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", + "1": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + } + }, + "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_golden_apple_2_agent": { + "conversation": "Let's work together to make baked_potato, bread, cooked_beef, golden_apple.", + "agent_count": 2, + "target": { + "baked_potato": 1, + "bread": 1, + "cooked_beef": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + } + }, + "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_cooked_beef_1_golden_apple": { + "conversation": "Let's work together to make cake, bread, golden_apple, baked_potato, cooked_beef.", + "agent_count": 2, + "target": { + "cake": 1, + "bread": 1, + "golden_apple": 1, + "baked_potato": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", + "1": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." + } + }, + "multiagent_cooking_5_1_baked_potato_1_cake_1_golden_apple_1_rabbit_stew_2_agent": { + "conversation": "Let's work together to make rabbit_stew, golden_apple, cake, baked_potato.", + "agent_count": 2, + "target": { + "rabbit_stew": 1, + "golden_apple": 1, + "cake": 1, + "baked_potato": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", + "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." + } + }, + "multiagent_cooking_5_1_bread_1_cooked_beef_1_golden_apple_1_rabbit_stew_2_agent": { + "conversation": "Let's work together to make bread, rabbit_stew, golden_apple, cooked_beef.", + "agent_count": 2, + "target": { + "bread": 1, + "rabbit_stew": 1, + "golden_apple": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", + "1": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." + } + }, + "multiagent_cooking_5_1_bread_1_cake_1_golden_apple_1_rabbit_stew_2_agent": { + "conversation": "Let's work together to make cake, rabbit_stew, golden_apple, bread.", + "agent_count": 2, + "target": { + "cake": 1, + "rabbit_stew": 1, + "golden_apple": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", + "1": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread." + } + }, + "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_2_agent": { + "conversation": "Let's work together to make cooked_beef, golden_apple, cake, baked_potato, rabbit_stew.", + "agent_count": 2, + "target": { + "cooked_beef": 1, + "golden_apple": 1, + "cake": 1, + "baked_potato": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", + "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + } + }, + "multiagent_cooking_5_1_bread_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_2_agent": { + "conversation": "Let's work together to make cooked_beef, golden_apple, rabbit_stew, bread, cake.", + "agent_count": 5, + "target": { + "cooked_beef": 1, + "golden_apple": 1, + "rabbit_stew": 1, + "bread": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", + "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + } + }, + "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_rabbit_stew_2_agent": { + "conversation": "Let's work together to make bread, cooked_beef, rabbit_stew, baked_potato.", + "agent_count": 2, + "target": { + "bread": 1, + "cooked_beef": 1, + "rabbit_stew": 1, + "baked_potato": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", + "1": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." + } + } + } \ No newline at end of file diff --git a/tasks/cooking_tasks/equal_load_test_tasks/3_agent.json b/tasks/cooking_tasks/equal_load_test_tasks/3_agent.json new file mode 100644 index 0000000..0c76be9 --- /dev/null +++ b/tasks/cooking_tasks/equal_load_test_tasks/3_agent.json @@ -0,0 +1,435 @@ +{ + "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_rabbit_stew_3_agent": { + "conversation": "Let's work together to make cooked_beef, baked_potato, cake, rabbit_stew.", + "agent_count": 3, + "target": { + "cooked_beef": 1, + "baked_potato": 1, + "cake": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", + "1": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", + "2": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + } + }, + "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_golden_apple_1_rabbit_stew_3_agent": { + "conversation": "Let's work together to make bread, cake, golden_apple, baked_potato, rabbit_stew.", + "agent_count": 5, + "target": { + "bread": 1, + "cake": 1, + "golden_apple": 1, + "baked_potato": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", + "1": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", + "2": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + } + }, + "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_golden_apple_3_agent": { + "conversation": "Let's work together to make baked_potato, bread, cooked_beef, golden_apple.", + "agent_count": 3, + "target": { + "baked_potato": 1, + "bread": 1, + "cooked_beef": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", + "2": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + } + }, + "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_cooked_beef_1_golden_apple_3_agent": { + "conversation": "Let's work together to make cake, bread, golden_apple, baked_potato, cooked_beef.", + "agent_count": 3, + "target": { + "cake": 1, + "bread": 1, + "golden_apple": 1, + "baked_potato": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", + "1": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", + "2": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." + } + }, + "multiagent_cooking_5_1_baked_potato_1_cake_1_golden_apple_1_rabbit_stew_3_agent": { + "conversation": "Let's work together to make rabbit_stew, golden_apple, cake, baked_potato.", + "agent_count": 3, + "target": { + "rabbit_stew": 1, + "golden_apple": 1, + "cake": 1, + "baked_potato": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", + "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", + "2": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." + } + }, + "multiagent_cooking_5_1_bread_1_cooked_beef_1_golden_apple_1_rabbit_stew_3_agent": { + "conversation": "Let's work together to make bread, rabbit_stew, golden_apple, cooked_beef.", + "agent_count": 5, + "target": { + "bread": 1, + "rabbit_stew": 1, + "golden_apple": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", + "1": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", + "2": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." + } + }, + "multiagent_cooking_5_1_bread_1_cake_1_golden_apple_1_rabbit_stew_3_agent": { + "conversation": "Let's work together to make cake, rabbit_stew, golden_apple, bread.", + "agent_count": 3, + "target": { + "cake": 1, + "rabbit_stew": 1, + "golden_apple": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", + "1": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", + "2": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread." + } + }, + "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew": { + "conversation": "Let's work together to make cooked_beef, golden_apple, cake, baked_potato, rabbit_stew.", + "agent_count": 3, + "target": { + "cooked_beef": 1, + "golden_apple": 1, + "cake": 1, + "baked_potato": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", + "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", + "2": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + } + }, + "multiagent_cooking_5_1_bread_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_3_agent": { + "conversation": "Let's work together to make cooked_beef, golden_apple, rabbit_stew, bread, cake.", + "agent_count": 3, + "target": { + "cooked_beef": 1, + "golden_apple": 1, + "rabbit_stew": 1, + "bread": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", + "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", + "2": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + } + }, + "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_rabbit_stew_3_agent": { + "conversation": "Let's work together to make bread, cooked_beef, rabbit_stew, baked_potato.", + "agent_count": 5, + "target": { + "bread": 1, + "cooked_beef": 1, + "rabbit_stew": 1, + "baked_potato": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", + "1": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", + "2": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." + } + } +} \ No newline at end of file From 91bee28fca1225d1fdaa86ca74c07fea68fa9c01 Mon Sep 17 00:00:00 2001 From: Isadora White Date: Wed, 23 Apr 2025 22:52:54 -0700 Subject: [PATCH 005/101] single agent and four agent equal load --- .../equal_load_test_tasks/1_agent.json | 415 ++++++++++++++++ .../4_agent_long_timeout.json | 445 ++++++++++++++++++ 2 files changed, 860 insertions(+) create mode 100644 tasks/cooking_tasks/equal_load_test_tasks/1_agent.json create mode 100644 tasks/cooking_tasks/equal_load_test_tasks/4_agent_long_timeout.json diff --git a/tasks/cooking_tasks/equal_load_test_tasks/1_agent.json b/tasks/cooking_tasks/equal_load_test_tasks/1_agent.json new file mode 100644 index 0000000..32075e9 --- /dev/null +++ b/tasks/cooking_tasks/equal_load_test_tasks/1_agent.json @@ -0,0 +1,415 @@ +{ + "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_rabbit_stew_1_agent": { + "conversation": "Let's work together to make cooked_beef, baked_potato, cake, rabbit_stew.", + "agent_count": 1, + "target": { + "cooked_beef": 1, + "baked_potato": 1, + "cake": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + } + }, + "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_golden_apple_1_rabbit_stew_1_agent": { + "conversation": "Let's work together to make bread, cake, golden_apple, baked_potato, rabbit_stew.", + "agent_count": 1, + "target": { + "bread": 1, + "cake": 1, + "golden_apple": 1, + "baked_potato": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + } + }, + "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_golden_apple_1_agent": { + "conversation": "Let's work together to make baked_potato, bread, cooked_beef, golden_apple.", + "agent_count": 1, + "target": { + "baked_potato": 1, + "bread": 1, + "cooked_beef": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + } + }, + "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_cooked_beef_1_golden_apple_1_agent": { + "conversation": "Let's work together to make cake, bread, golden_apple, baked_potato, cooked_beef.", + "agent_count": 1, + "target": { + "cake": 1, + "bread": 1, + "golden_apple": 1, + "baked_potato": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." + } + }, + "multiagent_cooking_5_1_baked_potato_1_cake_1_golden_apple_1_rabbit_stew_1_agent": { + "conversation": "Let's work together to make rabbit_stew, golden_apple, cake, baked_potato.", + "agent_count": 1, + "target": { + "rabbit_stew": 1, + "golden_apple": 1, + "cake": 1, + "baked_potato": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." + } + }, + "multiagent_cooking_5_1_bread_1_cooked_beef_1_golden_apple_1_rabbit_stew_1_agent": { + "conversation": "Let's work together to make bread, rabbit_stew, golden_apple, cooked_beef.", + "agent_count": 2, + "target": { + "bread": 1, + "rabbit_stew": 1, + "golden_apple": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." + } + }, + "multiagent_cooking_5_1_bread_1_cake_1_golden_apple_1_rabbit_stew_1_agent": { + "conversation": "Let's work together to make cake, rabbit_stew, golden_apple, bread.", + "agent_count": 1, + "target": { + "cake": 1, + "rabbit_stew": 1, + "golden_apple": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread." + } + }, + "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_1_agent": { + "conversation": "Let's work together to make cooked_beef, golden_apple, cake, baked_potato, rabbit_stew.", + "agent_count": 1, + "target": { + "cooked_beef": 1, + "golden_apple": 1, + "cake": 1, + "baked_potato": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + } + }, + "multiagent_cooking_5_1_bread_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_1_agent": { + "conversation": "Let's work together to make cooked_beef, golden_apple, rabbit_stew, bread, cake.", + "agent_count": 5, + "target": { + "cooked_beef": 1, + "golden_apple": 1, + "rabbit_stew": 1, + "bread": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + } + }, + "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_rabbit_stew_1_agent": { + "conversation": "Let's work together to make bread, cooked_beef, rabbit_stew, baked_potato.", + "agent_count": 2, + "target": { + "bread": 1, + "cooked_beef": 1, + "rabbit_stew": 1, + "baked_potato": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." + } + } + } \ No newline at end of file diff --git a/tasks/cooking_tasks/equal_load_test_tasks/4_agent_long_timeout.json b/tasks/cooking_tasks/equal_load_test_tasks/4_agent_long_timeout.json new file mode 100644 index 0000000..63c4f51 --- /dev/null +++ b/tasks/cooking_tasks/equal_load_test_tasks/4_agent_long_timeout.json @@ -0,0 +1,445 @@ +{ + "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_rabbit_stew_4_agent": { + "conversation": "Let's work together to make cooked_beef, baked_potato, cake, rabbit_stew.", + "agent_count": 4, + "target": { + "cooked_beef": 1, + "baked_potato": 1, + "cake": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", + "1": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", + "2": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", + "3": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + } + }, + "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_golden_apple_1_rabbit_stew_4_agent": { + "conversation": "Let's work together to make bread, cake, golden_apple, baked_potato, rabbit_stew.", + "agent_count": 5, + "target": { + "bread": 1, + "cake": 1, + "golden_apple": 1, + "baked_potato": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", + "1": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", + "2": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", + "3": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + } + }, + "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_golden_apple_4_agent": { + "conversation": "Let's work together to make baked_potato, bread, cooked_beef, golden_apple.", + "agent_count": 4, + "target": { + "baked_potato": 1, + "bread": 1, + "cooked_beef": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", + "2": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", + "3": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + } + }, + "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_cooked_beef_1_golden_apple_4_agent": { + "conversation": "Let's work together to make cake, bread, golden_apple, baked_potato, cooked_beef.", + "agent_count": 4, + "target": { + "cake": 1, + "bread": 1, + "golden_apple": 1, + "baked_potato": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", + "1": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", + "2": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", + "3": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." + } + }, + "multiagent_cooking_5_1_baked_potato_1_cake_1_golden_apple_1_rabbit_stew_4_agent": { + "conversation": "Let's work together to make rabbit_stew, golden_apple, cake, baked_potato.", + "agent_count": 4, + "target": { + "rabbit_stew": 1, + "golden_apple": 1, + "cake": 1, + "baked_potato": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", + "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", + "2": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", + "3": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." + } + }, + "multiagent_cooking_5_1_bread_1_cooked_beef_1_golden_apple_1_rabbit_stew_4_agent": { + "conversation": "Let's work together to make bread, rabbit_stew, golden_apple, cooked_beef.", + "agent_count": 5, + "target": { + "bread": 1, + "rabbit_stew": 1, + "golden_apple": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", + "1": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", + "2": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", + "3": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." + } + }, + "multiagent_cooking_5_1_bread_1_cake_1_golden_apple_1_rabbit_stew_4_agent": { + "conversation": "Let's work together to make cake, rabbit_stew, golden_apple, bread.", + "agent_count": 5, + "target": { + "cake": 1, + "rabbit_stew": 1, + "golden_apple": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", + "1": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", + "2": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", + "3": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread." + } + }, + "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_4_agent": { + "conversation": "Let's work together to make cooked_beef, golden_apple, cake, baked_potato, rabbit_stew.", + "agent_count": 5, + "target": { + "cooked_beef": 1, + "golden_apple": 1, + "cake": 1, + "baked_potato": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", + "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", + "2": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", + "3": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + } + }, + "multiagent_cooking_5_1_bread_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_4_agent": { + "conversation": "Let's work together to make cooked_beef, golden_apple, rabbit_stew, bread, cake.", + "agent_count": 4, + "target": { + "cooked_beef": 1, + "golden_apple": 1, + "rabbit_stew": 1, + "bread": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", + "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", + "2": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", + "3": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + } + }, + "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_rabbit_stew_4_agent": { + "conversation": "Let's work together to make bread, cooked_beef, rabbit_stew, baked_potato.", + "agent_count": 5, + "target": { + "bread": 1, + "cooked_beef": 1, + "rabbit_stew": 1, + "baked_potato": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", + "1": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", + "2": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", + "3": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." + } + } +} \ No newline at end of file From aac00bc893612da5ad7e42815f6a718fe48d8c78 Mon Sep 17 00:00:00 2001 From: Isadora White Date: Fri, 25 Apr 2025 19:16:00 -0700 Subject: [PATCH 006/101] human ai cooking and crafting tasks --- src/agent/agent.js | 1 + src/agent/tasks/tasks.js | 45 +- .../human_ai_tasks/1_agent_1_human.json | 803 ++++++++++++++++++ .../human_ai_tasks/1_agent_1_human_copy.json | 793 +++++++++++++++++ tasks/evaluation_script.py | 17 + tasks/example_tasks.json | 16 +- tasks/human_ai_tasks.py | 58 ++ 7 files changed, 1722 insertions(+), 11 deletions(-) create mode 100644 tasks/crafting_tasks/human_ai_tasks/1_agent_1_human.json create mode 100644 tasks/crafting_tasks/human_ai_tasks/1_agent_1_human_copy.json create mode 100644 tasks/human_ai_tasks.py diff --git a/src/agent/agent.js b/src/agent/agent.js index 7106783..b8046bb 100644 --- a/src/agent/agent.js +++ b/src/agent/agent.js @@ -194,6 +194,7 @@ export class Agent { if (!this.task || !this.task.agent_names) { return; } + console.log(this.task.agent_names) const missingPlayers = this.task.agent_names.filter(name => !this.bot.players[name]); if (missingPlayers.length > 0) { diff --git a/src/agent/tasks/tasks.js b/src/agent/tasks/tasks.js index 975f37e..2c76f2f 100644 --- a/src/agent/tasks/tasks.js +++ b/src/agent/tasks/tasks.js @@ -430,12 +430,43 @@ export class Task { let initialInventory = {}; // Handle multi-agent inventory assignment - if (this.data.agent_count > 1) { - initialInventory = this.data.initial_inventory[this.agent.count_id.toString()] || {}; - console.log("Initial inventory for agent", this.agent.count_id, ":", initialInventory); - } else { - initialInventory = this.data.initial_inventory; - console.log("Initial inventory:", initialInventory); + // function hasSubDictionary(obj) { + // for (let key in obj) { + // if (typeof obj[key] === 'object' && obj[key] !== null) { + // return true; + // } + // } + // return false; + // } + + // const hasSubDictionaryResult = hasSubDictionary(this.data.initial_inventory); + // const firstKey = Object.keys(initialInventory)[0]; + // console.log(firstKey); + // console.log(hasSubDictionaryResult); + // if (typeof this.data.initial_inventory[firstKey] === 'object') { + initialInventory = this.data.initial_inventory[this.agent.count_id.toString()] || {}; + console.log("Initial inventory for agent", this.agent.count_id, ":", initialInventory); + + if (this.data.human_count > 0 && this.agent.count_id === 0) { + // this.num_humans = num_keys - this.data.num_agents; + if (this.data.human_count !== this.data.usernames.length) { + console.log(`Number of human players ${this.human_count} does not match the number of usernames provided. ${this.data.usernames.length}`); + throw new Error(`Number of human players ${this.human_count} does not match the number of usernames provided. ${this.data.usernames.length}`); + return; + } + const starting_idx = this.data.agent_count; + for (let i = 0; i < this.data.human_count; i++) { + const username = this.data.usernames[i]; + console.log(`Giving ${username} ${this.data.initial_inventory[starting_idx + i]}`); + const inventory = this.data.initial_inventory[starting_idx + i]; + console.log(Object.keys(inventory)); + for (let key of Object.keys(inventory)) { + const itemName = key.toLowerCase(); + const quantity = inventory[key]; + console.log(`Give ${username} ${quantity} ${itemName}`); + await this.agent.bot.chat(`/give ${username} ${itemName} ${quantity}`); + } + } } console.log(this.data.initial_inventory); @@ -474,7 +505,7 @@ export class Task { await new Promise((resolve) => setTimeout(resolve, 1000)); waitCount++; } - if (other_name === undefined) { + if (other_name === undefined && this.agent_count > 1) { console.log('No other agents found. Task unsuccessful.'); this.agent.killAll(); } diff --git a/tasks/crafting_tasks/human_ai_tasks/1_agent_1_human.json b/tasks/crafting_tasks/human_ai_tasks/1_agent_1_human.json new file mode 100644 index 0000000..ed5fbba --- /dev/null +++ b/tasks/crafting_tasks/human_ai_tasks/1_agent_1_human.json @@ -0,0 +1,803 @@ +{ + "multiagent_crafting_pink_wool_full_plan__depth_0": { + "goal": "Collaborate with other agents to craft an pink_wool", + "conversation": "Let's work together to craft an pink_wool.", + "initial_inventory": { + "0": { + "pink_dye": 1 + }, + "1": { + "black_wool": 1 + } + }, + "agent_count": 1, + "target": "pink_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [], + "human_count": 1, + "usernames":[ + "izzycw" + ], + "requires_ctable": false + }, + "multiagent_crafting_lime_wool_partial_plan__depth_0": { + "goal": "Collaborate with other agents to craft an lime_wool", + "conversation": "Let's work together to craft an lime_wool.", + "initial_inventory": { + "0": { + "lime_dye": 1 + }, + "1": { + "black_wool": 1 + } + }, + "agent_count": 1, + "target": "lime_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 300, + "blocked_actions": { + "0": [ + ], + "1": ["!getCraftingPlan"] + }, + "human_count": 1, + "usernames":[ + "izzycw" + ], + "missing_items": [ + ], + "requires_ctable": false + }, + "multiagent_crafting_purple_banner_full_plan_requires_ctable__depth_0": { + "goal": "Collaborate with other agents to craft an purple_banner", + "conversation": "Let's work together to craft an purple_banner.", + "initial_inventory": { + "0": { + "purple_wool": 4, + "stick": 1 + }, + "1": { + "purple_wool": 3, + "crafting_table": 1 + } + }, + "agent_count": 1, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 300, + "human_count": 1, + "usernames":[ + "izzycw" + ], + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + }, + "multiagent_crafting_soul_campfire_partial_plan_requires_ctable__depth_0": { + "goal": "Collaborate with other agents to craft an soul_campfire", + "conversation": "Let's work together to craft an soul_campfire.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "soul_sand": 1, + "dark_oak_log": 2 + }, + "1": { + "oak_planks": 1, + "dark_oak_log": 1, + "crafting_table": 1 + } + }, + "agent_count": 2, + "target": "soul_campfire", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 300, + "human_count": 1, + "usernames":[ + "izzycw" + ], + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + }, + "multiagent_crafting_bookshelf_full_plan_requires_ctable__depth_0": { + "goal": "Collaborate with other agents to craft a bookshelf", + "conversation": "Let's work together to craft a bookshelf.", + "initial_inventory": { + "0": { + "oak_planks": 4, + "book": 2 + }, + "1": { + "oak_planks": 2, + "book": 1, + "crafting_table": 1 + } + }, + "agent_count": 1, + "target": "bookshelf", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 300, + "human_count": 1, + "usernames":[ + "izzycw" + ], + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + }, + "multiagent_crafting_compass_partial_plan_requires_ctable__depth_0": { + "goal": "Collaborate with other agents to craft a compass", + "conversation": "Let's work together to craft a compass.", + "initial_inventory": { + "0": { + "iron_ingot": 2 + }, + "1": { + "iron_ingot": 2, + "redstone": 1, + "crafting_table": 1 + } + }, + "agent_count": 1, + "target": "compass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 300, + "human_count": 1, + "usernames":[ + "izzycw" + ], + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + }, + "multiagent_crafting_fishing_rod_full_plan_requires_ctable__depth_1": { + "goal": "Collaborate with other agents to craft a fishing_rod", + "conversation": "Let's work together to craft a fishing_rod.", + "initial_inventory": { + "0": { + "string": 1, + "oak_planks": 2 + }, + "1": { + "string": 1, + "crafting_table": 1 + } + }, + "agent_count": 1, + "target": "fishing_rod", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 300, + "human_count": 1, + "usernames":[ + "izzycw" + ], + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + ], + "requires_ctable": true + }, + "multiagent_crafting_cake_partial_plan_requires_ctable__depth_0": { + "goal": "Collaborate with other agents to craft a cake", + "conversation": "Let's work together to craft a cake.", + "initial_inventory": { + "0": { + "wheat": 2, + "sugar": 1, + "egg": 1 + }, + "1": { + "wheat": 1, + "milk_bucket": 2, + "crafting_table": 1 + } + }, + "agent_count": 1, + "target": "cake", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 300, + "human_count": 1, + "usernames":[ + "izzycw" + ], + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + }, + "multiagent_crafting_golden_carrot_full_plan_requires_ctable__depth_0": { + "goal": "Collaborate with other agents to craft a golden_carrot", + "conversation": "Let's work together to craft a golden_carrot.", + "initial_inventory": { + "0": { + "gold_nugget": 5, + "carrot": 1 + }, + "1": { + "gold_nugget": 3, + "crafting_table": 1 + } + }, + "agent_count": 1, + "target": "golden_carrot", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 300, + "human_count": 1, + "usernames":[ + "izzycw" + ], + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + }, + "multiagent_crafting_map_partial_plan_requires_ctable__depth_0": { + "goal": "Collaborate with other agents to craft a map", + "conversation": "Let's work together to craft a map.", + "initial_inventory": { + "0": { + "paper": 5 + }, + "1": { + "paper": 3, + "compass": 1, + "crafting_table": 1 + } + }, + "agent_count": 1, + "target": "map", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 300, + "human_count": 1, + "usernames":[ + "izzycw" + ], + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + }, + "multiagent_crafting_blue_wool_full_plan__depth_0": { + "goal": "Collaborate with other agents to craft blue_wool", + "conversation": "Let's work together to craft blue_wool.", + "initial_inventory": { + "0": { + "blue_dye": 1 + }, + "1": { + "white_wool": 1 + } + }, + "agent_count": 2, + "target": "blue_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 300, + "human_count": 1, + "usernames":[ + "izzycw" + ], + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [], + "requires_ctable": false + }, + "multiagent_crafting_lime_wool_partial_plan__depth_2": { + "goal": "Collaborate with other agents to craft lime_wool", + "conversation": "Let's work together to craft lime_wool.", + "initial_inventory": { + "0": { + "green_dye": 1 + }, + "1": { + "white_wool": 1, + "bone_meal": 1 + } + }, + "agent_count": 2, + "target": "lime_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 300, + "human_count": 1, + "usernames":[ + "izzycw" + ], + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + ], + "requires_ctable": false + }, + "multiagent_crafting_magenta_wool_full_plan__depth_2": { + "goal": "Collaborate with other agents to craft magenta_wool", + "conversation": "Let's work together to craft magenta_wool.", + "initial_inventory": { + "0": { + "rose_red": 1, + "lapis_lazuli": 1 + }, + "1": { + "white_wool": 1, + "bone_meal": 1 + } + }, + "agent_count": 1, + "target": "magenta_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "human_count": 1, + "usernames":[ + "izzycw" + ], + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + ], + "requires_ctable": false + }, + "multiagent_crafting_chest_full_plan_requires_ctable__depth_1": { + "goal": "Collaborate with other agents to craft a chest", + "conversation": "Let's work together to craft a chest.", + "initial_inventory": { + "0": { + "oak_log": 1 + }, + "1": { + "oak_planks": 4, + "crafting_table": 1 + } + }, + "agent_count": 2, + "target": "chest", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 1, + "timeout": 300, + "human_count": 1, + "usernames":[ + "izzycw" + ], + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + }, + "multiagent_crafting_barrel_partial_plan_requires_ctable__depth_1": { + "goal": "Collaborate with other agents to craft a barrel", + "conversation": "Let's work together to craft a barrel.", + "initial_inventory": { + "0": { + "spruce_planks": 3, + "crafting_table": 1 + }, + "1": { + "spruce_planks": 3, + "wooden_slab": 1 + } + }, + "agent_count": 2, + "target": "barrel", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 300, + "human_count": 1, + "usernames":[ + "izzycw" + ], + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + ], + "requires_ctable": true + }, + "multiagent_crafting_lectern_full_plan_requires_ctable__depth_2": { + "goal": "Collaborate with other agents to craft a lectern", + "conversation": "Let's work together to craft a lectern.", + "initial_inventory": { + "0": { + "birch_slab": 5, + "crafting_table": 1 + }, + "1": { + "birch_log": 2, + "book": 3 + } + }, + "agent_count": 1, + "target": "lectern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 2, + "timeout": 300, + "human_count": 1, + "usernames":[ + "izzycw" + ], + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + ], + "requires_ctable": true + }, + "multiagent_crafting_clock_partial_plan_requires_ctable__depth_0": { + "goal": "Collaborate with other agents to craft a clock", + "conversation": "Let's work together to craft a clock.", + "initial_inventory": { + "0": { + "gold_ingot": 2 + }, + "1": { + "gold_ingot": 2, + "redstone": 1, + "crafting_table": 1 + } + }, + "agent_count": 1, + "target": "clock", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 300, + "human_count": 1, + "usernames":[ + "izzycw" + ], + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + }, + "multiagent_crafting_firework_rocket_partial_plan__depth_0": { + "goal": "Collaborate with other agents to craft firework_rocket", + "conversation": "Let's work together to craft firework_rocket.", + "initial_inventory": { + "0": { + "paper": 1 + }, + "1": { + "gunpowder": 3 + } + }, + "agent_count": 2, + "target": "firework_rocket", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 300, + "human_count": 1, + "usernames":[ + "izzycw" + ], + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [], + "requires_ctable": false + }, + "multiagent_crafting_enchanting_table_partial_plan_requires_ctable__depth_0": { + "goal": "Collaborate with other agents to craft an enchanting_table", + "conversation": "Let's work together to craft an enchanting_table.", + "initial_inventory": { + "0": { + "diamond": 2, + "obsidian": 2, + "crafting_table": 1 + }, + "1": { + "obsidian": 2, + "book": 1 + } + }, + "agent_count": 2, + "target": "enchanting_table", + "number_of_target": 1, + "type": "techtree", + "max_depth": 0, + "depth": 0, + "timeout": 300, + "human_count": 1, + "usernames":[ + "izzycw" + ], + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + }, + "multiagent_crafting_jukebox_full_plan_requires_ctable__depth_1": { + "goal": "Collaborate with other agents to craft a jukebox", + "conversation": "Let's work together to craft a jukebox.", + "initial_inventory": { + "0": { + "diamond": 1 + }, + "1": { + "oak_log": 2, + "crafting_table": 1 + } + }, + "agent_count": 1, + "target": "jukebox", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 1, + "timeout": 300, + "human_count": 1, + "usernames":[ + "izzycw" + ], + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + }, + "multiagent_crafting_light_gray_wool_full_plan__depth_1": { + "goal": "Collaborate with other agents to craft light_gray_wool", + "conversation": "Let's work together to craft light_gray_wool.", + "initial_inventory": { + "0": { + "black_dye": 1 + }, + "1": { + "white_wool": 1, + "white_dye": 2 + } + }, + "agent_count": 1, + "target": "light_gray_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 300, + "human_count": 1, + "usernames":[ + "izzycw" + ], + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + ], + "requires_ctable": false + }, + "multiagent_crafting_blast_furnace_full_plan_requires_ctable__depth_1": { + "goal": "Collaborate with other agents to craft a blast_furnace", + "conversation": "Let's work together to craft a blast_furnace.", + "initial_inventory": { + "0": { + "iron_ingot": 5, + "smooth_stone": 3 + }, + "1": { + "cobblestone": 8, + "crafting_table": 1 + } + }, + "agent_count": 2, + "target": "blast_furnace", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 300, + "human_count": 1, + "usernames":[ + "izzycw" + ], + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + ], + "requires_ctable": true + }, + "multiagent_crafting_activator_rail_full_plan_requires_ctable__depth_2": { + "goal": "Collaborate with other agents to craft activator_rail", + "conversation": "Let's work together to craft activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 3, + "oak_planks": 6 + }, + "1": { + "redstone": 1, + "iron_ingot": 3, + "crafting_table": 1 + } + }, + "agent_count": 1, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "human_count": 1, + "usernames":[ + "izzycw" + ], + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + ], + "requires_ctable": true + }, + "multiagent_crafting_campfire_partial_plan_requires_ctable__depth_2": { + "goal": "Collaborate with other agents to craft campfire", + "conversation": "Let's work together to craft campfire.", + "initial_inventory": { + "0": { + "oak_log": 8 + }, + "1": { + "coal": 1, + "crafting_table": 1 + } + }, + "agent_count": 1, + "target": "campfire", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "human_count": 1, + "usernames":[ + "izzycw" + ], + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + ], + "requires_ctable": true + }, + "multiagent_crafting_crossbow_full_plan_requires_ctable__depth_2": { + "goal": "Collaborate with other agents to craft a crossbow", + "conversation": "Let's work together to craft a crossbow.", + "initial_inventory": { + "0": { + "oak_planks": 8, + "iron_ingot": 2 + }, + "1": { + "string": 2, + "crafting_table": 1 + } + }, + "agent_count": 1, + "target": "crossbow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "human_count": 1, + "usernames":[ + "izzycw" + ], + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + ], + "requires_ctable": true + } +} \ No newline at end of file diff --git a/tasks/crafting_tasks/human_ai_tasks/1_agent_1_human_copy.json b/tasks/crafting_tasks/human_ai_tasks/1_agent_1_human_copy.json new file mode 100644 index 0000000..e539510 --- /dev/null +++ b/tasks/crafting_tasks/human_ai_tasks/1_agent_1_human_copy.json @@ -0,0 +1,793 @@ +{ + "multiagent_crafting_pink_wool_full_plan__depth_0": { + "goal": "Collaborate with other agents to craft an pink_wool", + "conversation": "Let's work together to craft an pink_wool.", + "initial_inventory": { + "0": { + "pink_dye": 1 + }, + "1": { + "black_wool": 1 + } + }, + "agent_count": 1, + "target": "pink_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [], + "human_count": 1, + "usernames": [ + "izzycw" + ], + "requires_ctable": false + }, + "multiagent_crafting_lime_wool_partial_plan__depth_0": { + "goal": "Collaborate with other agents to craft an lime_wool", + "conversation": "Let's work together to craft an lime_wool.", + "initial_inventory": { + "0": { + "lime_dye": 1 + }, + "1": { + "black_wool": 1 + } + }, + "agent_count": 1, + "target": "lime_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [ + "!getCraftingPlan" + ] + }, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "missing_items": [], + "requires_ctable": false + }, + "multiagent_crafting_purple_banner_full_plan_requires_ctable__depth_0": { + "goal": "Collaborate with other agents to craft an purple_banner", + "conversation": "Let's work together to craft an purple_banner.", + "initial_inventory": { + "0": { + "purple_wool": 4, + "stick": 1 + }, + "1": { + "purple_wool": 3, + "crafting_table": 1 + } + }, + "agent_count": 1, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + }, + "multiagent_crafting_soul_campfire_partial_plan_requires_ctable__depth_0": { + "goal": "Collaborate with other agents to craft an soul_campfire", + "conversation": "Let's work together to craft an soul_campfire.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "soul_sand": 1, + "dark_oak_log": 2 + }, + "1": { + "oak_planks": 1, + "dark_oak_log": 1, + "crafting_table": 1 + } + }, + "agent_count": 2, + "target": "soul_campfire", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + }, + "multiagent_crafting_bookshelf_full_plan_requires_ctable__depth_0": { + "goal": "Collaborate with other agents to craft a bookshelf", + "conversation": "Let's work together to craft a bookshelf.", + "initial_inventory": { + "0": { + "oak_planks": 4, + "book": 2 + }, + "1": { + "oak_planks": 2, + "book": 1, + "crafting_table": 1 + } + }, + "agent_count": 1, + "target": "bookshelf", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + }, + "multiagent_crafting_compass_partial_plan_requires_ctable__depth_0": { + "goal": "Collaborate with other agents to craft a compass", + "conversation": "Let's work together to craft a compass.", + "initial_inventory": { + "0": { + "iron_ingot": 2 + }, + "1": { + "iron_ingot": 2, + "redstone": 1, + "crafting_table": 1 + } + }, + "agent_count": 1, + "target": "compass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + }, + "multiagent_crafting_fishing_rod_full_plan_requires_ctable__depth_1": { + "goal": "Collaborate with other agents to craft a fishing_rod", + "conversation": "Let's work together to craft a fishing_rod.", + "initial_inventory": { + "0": { + "string": 1, + "oak_planks": 2 + }, + "1": { + "string": 1, + "crafting_table": 1 + } + }, + "agent_count": 1, + "target": "fishing_rod", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + }, + "multiagent_crafting_cake_partial_plan_requires_ctable__depth_0": { + "goal": "Collaborate with other agents to craft a cake", + "conversation": "Let's work together to craft a cake.", + "initial_inventory": { + "0": { + "wheat": 2, + "sugar": 1, + "egg": 1 + }, + "1": { + "wheat": 1, + "milk_bucket": 2, + "crafting_table": 1 + } + }, + "agent_count": 1, + "target": "cake", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + }, + "multiagent_crafting_golden_carrot_full_plan_requires_ctable__depth_0": { + "goal": "Collaborate with other agents to craft a golden_carrot", + "conversation": "Let's work together to craft a golden_carrot.", + "initial_inventory": { + "0": { + "gold_nugget": 5, + "carrot": 1 + }, + "1": { + "gold_nugget": 3, + "crafting_table": 1 + } + }, + "agent_count": 1, + "target": "golden_carrot", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + }, + "multiagent_crafting_map_partial_plan_requires_ctable__depth_0": { + "goal": "Collaborate with other agents to craft a map", + "conversation": "Let's work together to craft a map.", + "initial_inventory": { + "0": { + "paper": 5 + }, + "1": { + "paper": 3, + "compass": 1, + "crafting_table": 1 + } + }, + "agent_count": 1, + "target": "map", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + }, + "multiagent_crafting_blue_wool_full_plan__depth_0": { + "goal": "Collaborate with other agents to craft blue_wool", + "conversation": "Let's work together to craft blue_wool.", + "initial_inventory": { + "0": { + "blue_dye": 1 + }, + "1": { + "white_wool": 1 + } + }, + "agent_count": 2, + "target": "blue_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [], + "requires_ctable": false + }, + "multiagent_crafting_lime_wool_partial_plan__depth_2": { + "goal": "Collaborate with other agents to craft lime_wool", + "conversation": "Let's work together to craft lime_wool.", + "initial_inventory": { + "0": { + "green_dye": 1 + }, + "1": { + "white_wool": 1, + "bone_meal": 1 + } + }, + "agent_count": 2, + "target": "lime_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [], + "requires_ctable": false + }, + "multiagent_crafting_magenta_wool_full_plan__depth_2": { + "goal": "Collaborate with other agents to craft magenta_wool", + "conversation": "Let's work together to craft magenta_wool.", + "initial_inventory": { + "0": { + "rose_red": 1, + "lapis_lazuli": 1 + }, + "1": { + "white_wool": 1, + "bone_meal": 1 + } + }, + "agent_count": 1, + "target": "magenta_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [], + "requires_ctable": false + }, + "multiagent_crafting_chest_full_plan_requires_ctable__depth_1": { + "goal": "Collaborate with other agents to craft a chest", + "conversation": "Let's work together to craft a chest.", + "initial_inventory": { + "0": { + "oak_log": 1 + }, + "1": { + "oak_planks": 4, + "crafting_table": 1 + } + }, + "agent_count": 2, + "target": "chest", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 1, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + }, + "multiagent_crafting_barrel_partial_plan_requires_ctable__depth_1": { + "goal": "Collaborate with other agents to craft a barrel", + "conversation": "Let's work together to craft a barrel.", + "initial_inventory": { + "0": { + "spruce_planks": 3, + "crafting_table": 1 + }, + "1": { + "spruce_planks": 3, + "wooden_slab": 1 + } + }, + "agent_count": 2, + "target": "barrel", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + }, + "multiagent_crafting_lectern_full_plan_requires_ctable__depth_2": { + "goal": "Collaborate with other agents to craft a lectern", + "conversation": "Let's work together to craft a lectern.", + "initial_inventory": { + "0": { + "birch_slab": 5, + "crafting_table": 1 + }, + "1": { + "birch_log": 2, + "book": 3 + } + }, + "agent_count": 1, + "target": "lectern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 2, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + }, + "multiagent_crafting_clock_partial_plan_requires_ctable__depth_0": { + "goal": "Collaborate with other agents to craft a clock", + "conversation": "Let's work together to craft a clock.", + "initial_inventory": { + "0": { + "gold_ingot": 2 + }, + "1": { + "gold_ingot": 2, + "redstone": 1, + "crafting_table": 1 + } + }, + "agent_count": 1, + "target": "clock", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + }, + "multiagent_crafting_firework_rocket_partial_plan__depth_0": { + "goal": "Collaborate with other agents to craft firework_rocket", + "conversation": "Let's work together to craft firework_rocket.", + "initial_inventory": { + "0": { + "paper": 1 + }, + "1": { + "gunpowder": 3 + } + }, + "agent_count": 2, + "target": "firework_rocket", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [], + "requires_ctable": false + }, + "multiagent_crafting_enchanting_table_partial_plan_requires_ctable__depth_0": { + "goal": "Collaborate with other agents to craft an enchanting_table", + "conversation": "Let's work together to craft an enchanting_table.", + "initial_inventory": { + "0": { + "diamond": 2, + "obsidian": 2, + "crafting_table": 1 + }, + "1": { + "obsidian": 2, + "book": 1 + } + }, + "agent_count": 2, + "target": "enchanting_table", + "number_of_target": 1, + "type": "techtree", + "max_depth": 0, + "depth": 0, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + }, + "multiagent_crafting_jukebox_full_plan_requires_ctable__depth_1": { + "goal": "Collaborate with other agents to craft a jukebox", + "conversation": "Let's work together to craft a jukebox.", + "initial_inventory": { + "0": { + "diamond": 1 + }, + "1": { + "oak_log": 2, + "crafting_table": 1 + } + }, + "agent_count": 1, + "target": "jukebox", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 1, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + }, + "multiagent_crafting_light_gray_wool_full_plan__depth_1": { + "goal": "Collaborate with other agents to craft light_gray_wool", + "conversation": "Let's work together to craft light_gray_wool.", + "initial_inventory": { + "0": { + "black_dye": 1 + }, + "1": { + "white_wool": 1, + "white_dye": 2 + } + }, + "agent_count": 1, + "target": "light_gray_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [], + "requires_ctable": false + }, + "multiagent_crafting_blast_furnace_full_plan_requires_ctable__depth_1": { + "goal": "Collaborate with other agents to craft a blast_furnace", + "conversation": "Let's work together to craft a blast_furnace.", + "initial_inventory": { + "0": { + "iron_ingot": 5, + "smooth_stone": 3 + }, + "1": { + "cobblestone": 8, + "crafting_table": 1 + } + }, + "agent_count": 2, + "target": "blast_furnace", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + }, + "multiagent_crafting_activator_rail_full_plan_requires_ctable__depth_2": { + "goal": "Collaborate with other agents to craft activator_rail", + "conversation": "Let's work together to craft activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 3, + "oak_planks": 6 + }, + "1": { + "redstone": 1, + "iron_ingot": 3, + "crafting_table": 1 + } + }, + "agent_count": 1, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + }, + "multiagent_crafting_campfire_partial_plan_requires_ctable__depth_2": { + "goal": "Collaborate with other agents to craft campfire", + "conversation": "Let's work together to craft campfire.", + "initial_inventory": { + "0": { + "oak_log": 8 + }, + "1": { + "coal": 1, + "crafting_table": 1 + } + }, + "agent_count": 1, + "target": "campfire", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + }, + "multiagent_crafting_crossbow_full_plan_requires_ctable__depth_2": { + "goal": "Collaborate with other agents to craft a crossbow", + "conversation": "Let's work together to craft a crossbow.", + "initial_inventory": { + "0": { + "oak_planks": 8, + "iron_ingot": 2 + }, + "1": { + "string": 2, + "crafting_table": 1 + } + }, + "agent_count": 1, + "target": "crossbow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + } +} \ No newline at end of file diff --git a/tasks/evaluation_script.py b/tasks/evaluation_script.py index d91940f..792cce7 100644 --- a/tasks/evaluation_script.py +++ b/tasks/evaluation_script.py @@ -743,6 +743,7 @@ def main(): parser.add_argument('--no-pruning', action='store_true', help='Disable pruning of the actions') parser.add_argument('--block_conversation', action='store_true', help='Block conversation actions') parser.add_argument('--check', metavar='FOLDER_PATH', help='Check and evaluate results in the specified folder without running experiments') + parser.add_argument('--usernames', default="", help='Comma-separated list of usernames for the agents') args = parser.parse_args() print(args) @@ -763,6 +764,22 @@ def main(): clean_up_server_files(args.num_parallel) if args.add_keys: update_keys_json() + + # change task file to include usernames + with open(args.task_path, 'r') as f: + content = f.read() + task = json.loads(content) + # check if human count for first task is non zero + human_count = task[list(task.keys())[0]]["human_count"] + username_lst = args.usernames.replace(" ", "").split(",") + if len(username_lst) != human_count: + raise ValueError(f"Number of usernames provided ({len(username_lst)}) does not match human count ({human_count})") + if human_count > 0: + for task_id in task.keys(): + task[task_id]["usernames"] = args.usernames.replace(" ", "").split(",") + # dump to task_path + with open(args.task_path, 'w') as f: + json.dump(task, f, indent=4) launch_parallel_experiments(args.task_path, num_exp=args.num_exp, diff --git a/tasks/example_tasks.json b/tasks/example_tasks.json index 7a08ce4..1523c82 100644 --- a/tasks/example_tasks.json +++ b/tasks/example_tasks.json @@ -21,7 +21,9 @@ "goal": "Just stand at a place and don't do anything", "agent_count": 1, "initial_inventory": { - "iron_ingot": 1 + "0" : { + "iron_ingot": 1 + } }, "type": "debug", "timeout": 60 @@ -111,7 +113,9 @@ "debug_inventory_restriction": { "goal": "Place 1 oak plank, then place 1 stone brick", "initial_inventory": { - "oak_planks": 20 + "0" : { + "oak_planks": 20 + } }, "type": "debug", "restrict_to_inventory": true @@ -120,13 +124,17 @@ "type": "construction", "goal": "Build a house", "initial_inventory": { - "oak_planks": 20 + "0" : { + "oak_planks": 20 + } } }, "techtree_1_shears_with_2_iron_ingot": { "goal": "Build a shear.", "initial_inventory": { - "iron_ingot": 2 + "0": { + "iron_ingot": 2 + } }, "target": "shears", "number_of_target": 1, diff --git a/tasks/human_ai_tasks.py b/tasks/human_ai_tasks.py new file mode 100644 index 0000000..11fec7a --- /dev/null +++ b/tasks/human_ai_tasks.py @@ -0,0 +1,58 @@ +# run all tasks in a given file + +import os +import json +import argparse +import subprocess +import time + +def run_task(task_path, task_id, profiles=None): + """Run a single task using main.js""" + # Convert task_path to absolute path if it's relative + if not os.path.isabs(task_path): + task_path = os.path.abspath(task_path) + + cmd = ["node", "main.js", "--task_path", task_path, "--task_id", task_id] + + # Add profiles if provided + if profiles: + cmd.extend(["--profiles", *profiles]) + + print(f"Running task: {task_id}") + + project_root = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) + + # Execute the command from the project root directory + process = subprocess.run(cmd, check=True, cwd=project_root) + + return process.returncode == 0 + +def main(): + parser = argparse.ArgumentParser(description='Run all tasks in a JSON file sequentially') + parser.add_argument('--task_path', required=True, help='Path to the task file') + parser.add_argument('--profiles', nargs='+', help='List of agent profile paths') + parser.add_argument('--delay', type=int, default=2, help='Delay in seconds between tasks') + + args = parser.parse_args() + + # Load the task file + with open(args.task_path, 'r') as f: + tasks = json.load(f) + + print(f"Found {len(tasks)} tasks in {args.task_path}") + + # Run each task sequentially + successful_tasks = 0 + for task_id in tasks: + success = run_task(args.task_path, task_id, args.profiles) + if success: + successful_tasks += 1 + + # Wait between tasks + time.sleep(args.delay) + + print(f"Completed {successful_tasks}/{len(tasks)} tasks successfully") + +if __name__ == "__main__": + main() + From 759f861b577a9800b7773639accd07ab39d6be35 Mon Sep 17 00:00:00 2001 From: Isadora White Date: Tue, 29 Apr 2025 14:26:37 -0700 Subject: [PATCH 007/101] fixed issue with single agent and equal load tasks --- src/agent/tasks/tasks.js | 2 +- .../equal_load_test_tasks/1_agent.json | 415 ++++++++++++++++ .../equal_load_test_tasks/2_agent.json | 425 +++++++++++++++++ .../equal_load_test_tasks/3_agent.json | 435 +++++++++++++++++ .../4_agent_long_timeout.json | 445 ++++++++++++++++++ 5 files changed, 1721 insertions(+), 1 deletion(-) create mode 100644 tasks/cooking_tasks/equal_load_test_tasks/1_agent.json create mode 100644 tasks/cooking_tasks/equal_load_test_tasks/2_agent.json create mode 100644 tasks/cooking_tasks/equal_load_test_tasks/3_agent.json create mode 100644 tasks/cooking_tasks/equal_load_test_tasks/4_agent_long_timeout.json diff --git a/src/agent/tasks/tasks.js b/src/agent/tasks/tasks.js index 975f37e..859b5de 100644 --- a/src/agent/tasks/tasks.js +++ b/src/agent/tasks/tasks.js @@ -474,7 +474,7 @@ export class Task { await new Promise((resolve) => setTimeout(resolve, 1000)); waitCount++; } - if (other_name === undefined) { + if (other_name === undefined && this.data.agent_count > 1) { console.log('No other agents found. Task unsuccessful.'); this.agent.killAll(); } diff --git a/tasks/cooking_tasks/equal_load_test_tasks/1_agent.json b/tasks/cooking_tasks/equal_load_test_tasks/1_agent.json new file mode 100644 index 0000000..32075e9 --- /dev/null +++ b/tasks/cooking_tasks/equal_load_test_tasks/1_agent.json @@ -0,0 +1,415 @@ +{ + "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_rabbit_stew_1_agent": { + "conversation": "Let's work together to make cooked_beef, baked_potato, cake, rabbit_stew.", + "agent_count": 1, + "target": { + "cooked_beef": 1, + "baked_potato": 1, + "cake": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + } + }, + "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_golden_apple_1_rabbit_stew_1_agent": { + "conversation": "Let's work together to make bread, cake, golden_apple, baked_potato, rabbit_stew.", + "agent_count": 1, + "target": { + "bread": 1, + "cake": 1, + "golden_apple": 1, + "baked_potato": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + } + }, + "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_golden_apple_1_agent": { + "conversation": "Let's work together to make baked_potato, bread, cooked_beef, golden_apple.", + "agent_count": 1, + "target": { + "baked_potato": 1, + "bread": 1, + "cooked_beef": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + } + }, + "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_cooked_beef_1_golden_apple_1_agent": { + "conversation": "Let's work together to make cake, bread, golden_apple, baked_potato, cooked_beef.", + "agent_count": 1, + "target": { + "cake": 1, + "bread": 1, + "golden_apple": 1, + "baked_potato": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." + } + }, + "multiagent_cooking_5_1_baked_potato_1_cake_1_golden_apple_1_rabbit_stew_1_agent": { + "conversation": "Let's work together to make rabbit_stew, golden_apple, cake, baked_potato.", + "agent_count": 1, + "target": { + "rabbit_stew": 1, + "golden_apple": 1, + "cake": 1, + "baked_potato": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." + } + }, + "multiagent_cooking_5_1_bread_1_cooked_beef_1_golden_apple_1_rabbit_stew_1_agent": { + "conversation": "Let's work together to make bread, rabbit_stew, golden_apple, cooked_beef.", + "agent_count": 2, + "target": { + "bread": 1, + "rabbit_stew": 1, + "golden_apple": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." + } + }, + "multiagent_cooking_5_1_bread_1_cake_1_golden_apple_1_rabbit_stew_1_agent": { + "conversation": "Let's work together to make cake, rabbit_stew, golden_apple, bread.", + "agent_count": 1, + "target": { + "cake": 1, + "rabbit_stew": 1, + "golden_apple": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread." + } + }, + "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_1_agent": { + "conversation": "Let's work together to make cooked_beef, golden_apple, cake, baked_potato, rabbit_stew.", + "agent_count": 1, + "target": { + "cooked_beef": 1, + "golden_apple": 1, + "cake": 1, + "baked_potato": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + } + }, + "multiagent_cooking_5_1_bread_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_1_agent": { + "conversation": "Let's work together to make cooked_beef, golden_apple, rabbit_stew, bread, cake.", + "agent_count": 5, + "target": { + "cooked_beef": 1, + "golden_apple": 1, + "rabbit_stew": 1, + "bread": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + } + }, + "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_rabbit_stew_1_agent": { + "conversation": "Let's work together to make bread, cooked_beef, rabbit_stew, baked_potato.", + "agent_count": 2, + "target": { + "bread": 1, + "cooked_beef": 1, + "rabbit_stew": 1, + "baked_potato": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." + } + } + } \ No newline at end of file diff --git a/tasks/cooking_tasks/equal_load_test_tasks/2_agent.json b/tasks/cooking_tasks/equal_load_test_tasks/2_agent.json new file mode 100644 index 0000000..5ccff29 --- /dev/null +++ b/tasks/cooking_tasks/equal_load_test_tasks/2_agent.json @@ -0,0 +1,425 @@ +{ + "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_rabbit_stew_2_agents": { + "conversation": "Let's work together to make cooked_beef, baked_potato, cake, rabbit_stew.", + "agent_count": 2, + "target": { + "cooked_beef": 1, + "baked_potato": 1, + "cake": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", + "1": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + } + }, + "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_golden_apple_1_rabbit_stew_2_agent": { + "conversation": "Let's work together to make bread, cake, golden_apple, baked_potato, rabbit_stew.", + "agent_count": 2, + "target": { + "bread": 1, + "cake": 1, + "golden_apple": 1, + "baked_potato": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", + "1": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + } + }, + "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_golden_apple_2_agent": { + "conversation": "Let's work together to make baked_potato, bread, cooked_beef, golden_apple.", + "agent_count": 2, + "target": { + "baked_potato": 1, + "bread": 1, + "cooked_beef": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + } + }, + "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_cooked_beef_1_golden_apple": { + "conversation": "Let's work together to make cake, bread, golden_apple, baked_potato, cooked_beef.", + "agent_count": 2, + "target": { + "cake": 1, + "bread": 1, + "golden_apple": 1, + "baked_potato": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", + "1": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." + } + }, + "multiagent_cooking_5_1_baked_potato_1_cake_1_golden_apple_1_rabbit_stew_2_agent": { + "conversation": "Let's work together to make rabbit_stew, golden_apple, cake, baked_potato.", + "agent_count": 2, + "target": { + "rabbit_stew": 1, + "golden_apple": 1, + "cake": 1, + "baked_potato": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", + "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." + } + }, + "multiagent_cooking_5_1_bread_1_cooked_beef_1_golden_apple_1_rabbit_stew_2_agent": { + "conversation": "Let's work together to make bread, rabbit_stew, golden_apple, cooked_beef.", + "agent_count": 2, + "target": { + "bread": 1, + "rabbit_stew": 1, + "golden_apple": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", + "1": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." + } + }, + "multiagent_cooking_5_1_bread_1_cake_1_golden_apple_1_rabbit_stew_2_agent": { + "conversation": "Let's work together to make cake, rabbit_stew, golden_apple, bread.", + "agent_count": 2, + "target": { + "cake": 1, + "rabbit_stew": 1, + "golden_apple": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", + "1": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread." + } + }, + "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_2_agent": { + "conversation": "Let's work together to make cooked_beef, golden_apple, cake, baked_potato, rabbit_stew.", + "agent_count": 2, + "target": { + "cooked_beef": 1, + "golden_apple": 1, + "cake": 1, + "baked_potato": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", + "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + } + }, + "multiagent_cooking_5_1_bread_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_2_agent": { + "conversation": "Let's work together to make cooked_beef, golden_apple, rabbit_stew, bread, cake.", + "agent_count": 5, + "target": { + "cooked_beef": 1, + "golden_apple": 1, + "rabbit_stew": 1, + "bread": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", + "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + } + }, + "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_rabbit_stew_2_agent": { + "conversation": "Let's work together to make bread, cooked_beef, rabbit_stew, baked_potato.", + "agent_count": 2, + "target": { + "bread": 1, + "cooked_beef": 1, + "rabbit_stew": 1, + "baked_potato": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", + "1": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." + } + } + } \ No newline at end of file diff --git a/tasks/cooking_tasks/equal_load_test_tasks/3_agent.json b/tasks/cooking_tasks/equal_load_test_tasks/3_agent.json new file mode 100644 index 0000000..0c76be9 --- /dev/null +++ b/tasks/cooking_tasks/equal_load_test_tasks/3_agent.json @@ -0,0 +1,435 @@ +{ + "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_rabbit_stew_3_agent": { + "conversation": "Let's work together to make cooked_beef, baked_potato, cake, rabbit_stew.", + "agent_count": 3, + "target": { + "cooked_beef": 1, + "baked_potato": 1, + "cake": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", + "1": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", + "2": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + } + }, + "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_golden_apple_1_rabbit_stew_3_agent": { + "conversation": "Let's work together to make bread, cake, golden_apple, baked_potato, rabbit_stew.", + "agent_count": 5, + "target": { + "bread": 1, + "cake": 1, + "golden_apple": 1, + "baked_potato": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", + "1": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", + "2": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + } + }, + "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_golden_apple_3_agent": { + "conversation": "Let's work together to make baked_potato, bread, cooked_beef, golden_apple.", + "agent_count": 3, + "target": { + "baked_potato": 1, + "bread": 1, + "cooked_beef": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", + "2": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + } + }, + "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_cooked_beef_1_golden_apple_3_agent": { + "conversation": "Let's work together to make cake, bread, golden_apple, baked_potato, cooked_beef.", + "agent_count": 3, + "target": { + "cake": 1, + "bread": 1, + "golden_apple": 1, + "baked_potato": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", + "1": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", + "2": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." + } + }, + "multiagent_cooking_5_1_baked_potato_1_cake_1_golden_apple_1_rabbit_stew_3_agent": { + "conversation": "Let's work together to make rabbit_stew, golden_apple, cake, baked_potato.", + "agent_count": 3, + "target": { + "rabbit_stew": 1, + "golden_apple": 1, + "cake": 1, + "baked_potato": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", + "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", + "2": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." + } + }, + "multiagent_cooking_5_1_bread_1_cooked_beef_1_golden_apple_1_rabbit_stew_3_agent": { + "conversation": "Let's work together to make bread, rabbit_stew, golden_apple, cooked_beef.", + "agent_count": 5, + "target": { + "bread": 1, + "rabbit_stew": 1, + "golden_apple": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", + "1": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", + "2": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." + } + }, + "multiagent_cooking_5_1_bread_1_cake_1_golden_apple_1_rabbit_stew_3_agent": { + "conversation": "Let's work together to make cake, rabbit_stew, golden_apple, bread.", + "agent_count": 3, + "target": { + "cake": 1, + "rabbit_stew": 1, + "golden_apple": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", + "1": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", + "2": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread." + } + }, + "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew": { + "conversation": "Let's work together to make cooked_beef, golden_apple, cake, baked_potato, rabbit_stew.", + "agent_count": 3, + "target": { + "cooked_beef": 1, + "golden_apple": 1, + "cake": 1, + "baked_potato": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", + "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", + "2": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + } + }, + "multiagent_cooking_5_1_bread_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_3_agent": { + "conversation": "Let's work together to make cooked_beef, golden_apple, rabbit_stew, bread, cake.", + "agent_count": 3, + "target": { + "cooked_beef": 1, + "golden_apple": 1, + "rabbit_stew": 1, + "bread": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", + "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", + "2": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + } + }, + "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_rabbit_stew_3_agent": { + "conversation": "Let's work together to make bread, cooked_beef, rabbit_stew, baked_potato.", + "agent_count": 5, + "target": { + "bread": 1, + "cooked_beef": 1, + "rabbit_stew": 1, + "baked_potato": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", + "1": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", + "2": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." + } + } +} \ No newline at end of file diff --git a/tasks/cooking_tasks/equal_load_test_tasks/4_agent_long_timeout.json b/tasks/cooking_tasks/equal_load_test_tasks/4_agent_long_timeout.json new file mode 100644 index 0000000..63c4f51 --- /dev/null +++ b/tasks/cooking_tasks/equal_load_test_tasks/4_agent_long_timeout.json @@ -0,0 +1,445 @@ +{ + "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_rabbit_stew_4_agent": { + "conversation": "Let's work together to make cooked_beef, baked_potato, cake, rabbit_stew.", + "agent_count": 4, + "target": { + "cooked_beef": 1, + "baked_potato": 1, + "cake": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", + "1": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", + "2": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", + "3": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + } + }, + "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_golden_apple_1_rabbit_stew_4_agent": { + "conversation": "Let's work together to make bread, cake, golden_apple, baked_potato, rabbit_stew.", + "agent_count": 5, + "target": { + "bread": 1, + "cake": 1, + "golden_apple": 1, + "baked_potato": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", + "1": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", + "2": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", + "3": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + } + }, + "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_golden_apple_4_agent": { + "conversation": "Let's work together to make baked_potato, bread, cooked_beef, golden_apple.", + "agent_count": 4, + "target": { + "baked_potato": 1, + "bread": 1, + "cooked_beef": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", + "2": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", + "3": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + } + }, + "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_cooked_beef_1_golden_apple_4_agent": { + "conversation": "Let's work together to make cake, bread, golden_apple, baked_potato, cooked_beef.", + "agent_count": 4, + "target": { + "cake": 1, + "bread": 1, + "golden_apple": 1, + "baked_potato": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", + "1": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", + "2": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", + "3": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." + } + }, + "multiagent_cooking_5_1_baked_potato_1_cake_1_golden_apple_1_rabbit_stew_4_agent": { + "conversation": "Let's work together to make rabbit_stew, golden_apple, cake, baked_potato.", + "agent_count": 4, + "target": { + "rabbit_stew": 1, + "golden_apple": 1, + "cake": 1, + "baked_potato": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", + "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", + "2": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", + "3": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." + } + }, + "multiagent_cooking_5_1_bread_1_cooked_beef_1_golden_apple_1_rabbit_stew_4_agent": { + "conversation": "Let's work together to make bread, rabbit_stew, golden_apple, cooked_beef.", + "agent_count": 5, + "target": { + "bread": 1, + "rabbit_stew": 1, + "golden_apple": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", + "1": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", + "2": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", + "3": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." + } + }, + "multiagent_cooking_5_1_bread_1_cake_1_golden_apple_1_rabbit_stew_4_agent": { + "conversation": "Let's work together to make cake, rabbit_stew, golden_apple, bread.", + "agent_count": 5, + "target": { + "cake": 1, + "rabbit_stew": 1, + "golden_apple": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", + "1": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", + "2": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", + "3": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread." + } + }, + "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_4_agent": { + "conversation": "Let's work together to make cooked_beef, golden_apple, cake, baked_potato, rabbit_stew.", + "agent_count": 5, + "target": { + "cooked_beef": 1, + "golden_apple": 1, + "cake": 1, + "baked_potato": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", + "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", + "2": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", + "3": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + } + }, + "multiagent_cooking_5_1_bread_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_4_agent": { + "conversation": "Let's work together to make cooked_beef, golden_apple, rabbit_stew, bread, cake.", + "agent_count": 4, + "target": { + "cooked_beef": 1, + "golden_apple": 1, + "rabbit_stew": 1, + "bread": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", + "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", + "2": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", + "3": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + } + }, + "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_rabbit_stew_4_agent": { + "conversation": "Let's work together to make bread, cooked_beef, rabbit_stew, baked_potato.", + "agent_count": 5, + "target": { + "bread": 1, + "cooked_beef": 1, + "rabbit_stew": 1, + "baked_potato": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", + "1": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", + "2": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", + "3": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." + } + } +} \ No newline at end of file From 87df69108fdb172a2a9d29fbf4f672f7defea961 Mon Sep 17 00:00:00 2001 From: mrelmida Date: Thu, 1 May 2025 17:57:47 +0300 Subject: [PATCH 008/101] fix groq bug fix the bug regarding the empty result --- src/models/groq.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/models/groq.js b/src/models/groq.js index e601137..e4e8f3b 100644 --- a/src/models/groq.js +++ b/src/models/groq.js @@ -55,7 +55,7 @@ export class GroqCloudAPI { ...(this.params || {}) }); - res = completion.choices[0].message; + res = completion.choices[0].message.content; res = res.replace(/[\s\S]*?<\/think>/g, '').trim(); } From f8c61c64ec7f350ddcfbf78e46b4726171f0eac6 Mon Sep 17 00:00:00 2001 From: Isadora White Date: Thu, 1 May 2025 13:41:54 -0700 Subject: [PATCH 009/101] add human human evaluation set up --- tasks/human_evaluation.js | 87 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 87 insertions(+) create mode 100644 tasks/human_evaluation.js diff --git a/tasks/human_evaluation.js b/tasks/human_evaluation.js new file mode 100644 index 0000000..68fe6ef --- /dev/null +++ b/tasks/human_evaluation.js @@ -0,0 +1,87 @@ +import mineflayer from 'mineflayer'; +import yargs from 'yargs'; +import { worldToBlueprint, blueprintToTask } from '../../src/agent/tasks/construction_tasks.js'; +import fs from 'fs'; +import { start } from 'repl'; + +// add a mineflayer bot the world named Andy +const bot = mineflayer.createBot({ + host: 'localhost', // Replace with your server IP or hostname + port: 55916, // Replace with your server port + username: 'andy', // Replace with your bot's username + // password: 'your_bot_password' // Only if the server has online-mode=true +}); + +function parseArguments() { + return yargs(hideBin(process.argv)) + .option('usernames', { + type: 'array', + describe: 'List of usernames to give items to', + }) + .option('task_path', { + type: 'string', + describe: 'Path to task file to execute' + }) + .option('task_id', { + type: 'string', + describe: 'Task ID to execute' + }) + .help() + .alias('help', 'h') + .parse(); +} + +// parse arguments +const args = parseArguments(); + +// load in the task path +const taskPath = fs.readFileSync(args.task_path, 'utf8'); +const taskData = JSON.parse(taskPath); +const selectedTaskId = taskData.task_id; + + +// give the required inventory items to the usernames specified in the usernames list +bot.on('spawn', async () => { + console.log("Bot spawned. Starting task..."); + const usernames = args.usernames; + const task = taskData[selectedTaskId]; + const inventory = task.initial_inventory; + + // give the items to the users + for (let i = 0; i < usernames.length; i++) { + const user = usernames[i]; + const userInventory = inventory[i]; + + if (userInventory) { + for (const item in userInventory) { + const count = userInventory[item]; + bot.chat(`/give ${user} ${item} ${count}`); + } + } else { + console.log(`No inventory found for user: ${user}`); + } + + if (task.type === "techtree" ) { + bot.chat(`/tell ${user} You have the goal to ${task.goal}`); + } + + if (task.type === "construction") { + bot.chat(`/tell ${user} You have the goal to ${task.goal}`); + //todo: some sort of blueprint visualizer + } + if (task.type === "cooking") { + const user_goal = task.goal[i]; + bot.chat(`/tell ${user} You have the goal to ${user_goal}`); + } + + } + + const timeout = task.timeout; + // wait timeout seconds and then crash the task + setTimeout(() => { + bot.chat(`/tell ${usernames} Time is up!`); + bot.quit(); + }, timeout * 1000); +}); +// give required information to the users in some way +// do some automatic timer sort of thing to give the users time to do the task From abf3532433aa6171b22e76667d9d91547a67f0a9 Mon Sep 17 00:00:00 2001 From: Isadora White Date: Thu, 1 May 2025 15:08:07 -0700 Subject: [PATCH 010/101] updating cooking task intiator to be easier to read, fewer nested function --- src/agent/tasks/cooking_tasks.js | 734 ++++++++++++++++--------------- src/agent/tasks/tasks.js | 4 +- tasks/human_evaluation.js | 4 + 3 files changed, 385 insertions(+), 357 deletions(-) diff --git a/src/agent/tasks/cooking_tasks.js b/src/agent/tasks/cooking_tasks.js index 97f711c..5667c79 100644 --- a/src/agent/tasks/cooking_tasks.js +++ b/src/agent/tasks/cooking_tasks.js @@ -1,390 +1,414 @@ import { getPosition } from "../library/world.js"; export class CookingTaskInitiator { - constructor(data, agent) { - this.agent = agent; + constructor(data, bot) { + this.bot = bot; this.data = data; } async init() { - let bot = this.agent.bot; + let bot = this.bot; //// Setting up the cooking world using minecraft cheats //// // Only run the setup if the agent is the first one - if (this.agent.count_id === 0) { - // Clear and prepare the base area - await bot.chat(`/fill ~ ~-1 ~ ~50 ~-3 ~50 grass_block`); - await bot.chat(`/fill ~ ~-1 ~ ~-50 ~-3 ~50 grass_block`); - await bot.chat(`/fill ~ ~-1 ~ ~-50 ~-3 ~-50 grass_block`); - await bot.chat(`/fill ~ ~-1 ~ ~50 ~-3 ~-50 grass_block`); - await bot.chat(`/fill ~ ~ ~ ~50 ~10 ~50 air`); - await bot.chat(`/fill ~ ~ ~ ~-50 ~10 ~50 air`); - await bot.chat(`/fill ~ ~ ~ ~-50 ~10 ~-50 air`); - await bot.chat(`/fill ~ ~ ~ ~50 ~10 ~-50 air`); + // Clear and prepare the base area + await bot.chat(`/fill ~ ~-1 ~ ~50 ~-3 ~50 grass_block`); + await bot.chat(`/fill ~ ~-1 ~ ~-50 ~-3 ~50 grass_block`); + await bot.chat(`/fill ~ ~-1 ~ ~-50 ~-3 ~-50 grass_block`); + await bot.chat(`/fill ~ ~-1 ~ ~50 ~-3 ~-50 grass_block`); + await bot.chat(`/fill ~ ~ ~ ~50 ~10 ~50 air`); + await bot.chat(`/fill ~ ~ ~ ~-50 ~10 ~50 air`); + await bot.chat(`/fill ~ ~ ~ ~-50 ~10 ~-50 air`); + await bot.chat(`/fill ~ ~ ~ ~50 ~10 ~-50 air`); - const position = getPosition(bot); - const botX = Math.floor(position.x); - const botZ = Math.floor(position.z); + const position = getPosition(bot); + const botX = Math.floor(position.x); + const botZ = Math.floor(position.z); - // Region management system - const isOverlapping = (newXMin, newXMax, newZMin, newZMax, occupiedRegions) => { - for (const region of occupiedRegions) { - if (newXMin < region.xMax && newXMax > region.xMin && - newZMin < region.zMax && newZMax > region.zMin) { - return true; - } + // Region management system + const isOverlapping = (newXMin, newXMax, newZMin, newZMax, occupiedRegions) => { + for (const region of occupiedRegions) { + if (newXMin < region.xMax && newXMax > region.xMin && + newZMin < region.zMax && newZMax > region.zMin) { + return true; } - return false; - }; + } + return false; + }; - const findValidPosition = (width, depth, occupiedRegions) => { - const maxXStart = position.x + 25 - width; // Constrain to 50x50 area - const minXStart = position.x - 25; - const maxZStart = position.z + 25 - depth; - const minZStart = position.z - 25; + const findValidPosition = (width, depth, occupiedRegions) => { + const maxXStart = position.x + 25 - width; // Constrain to 50x50 area + const minXStart = position.x - 25; + const maxZStart = position.z + 25 - depth; + const minZStart = position.z - 25; + + let attempts = 0; + while (attempts < 10000) { + const xStart = Math.floor(minXStart + Math.random() * (maxXStart - minXStart + 1)); + const zStart = Math.floor(minZStart + Math.random() * (maxZStart - minZStart + 1)); + const xMin = xStart; + const xMax = xStart + width - 1; + const zMin = zStart; + const zMax = zStart + depth - 1; - let attempts = 0; - while (attempts < 1000) { - const xStart = Math.floor(minXStart + Math.random() * (maxXStart - minXStart + 1)); - const zStart = Math.floor(minZStart + Math.random() * (maxZStart - minZStart + 1)); - const xMin = xStart; - const xMax = xStart + width - 1; - const zMin = zStart; - const zMax = zStart + depth - 1; - - if (!isOverlapping(xMin, xMax, zMin, zMax, occupiedRegions)) { - return { xStart, zStart }; - } - attempts++; + if (!isOverlapping(xMin, xMax, zMin, zMax, occupiedRegions)) { + return { xStart, zStart }; } - throw new Error('Failed to find non-overlapping position after 1000 attempts'); + attempts++; + } + throw new Error('Failed to find non-overlapping position after 1000 attempts'); + }; + + // Define all regions with their sizes + const regionsToPlace = [ + { type: 'wheat', width: 6, depth: 6 }, + { type: 'beetroots', width: 4, depth: 5 }, + { type: 'mushrooms', width: 4, depth: 5 }, + { type: 'potatoes', width: 4, depth: 5 }, + { type: 'carrots', width: 4, depth: 5 }, + { type: 'sugar_cane', width: 3, depth: 3 }, + { type: 'sugar_cane', width: 3, depth: 3 }, + { type: 'pumpkins', width: 10, depth: 1 }, + { type: 'house', width: 11, depth: 11 } + ]; + + // Expand the regions of each type to make sure they don't overlap + + for (let i = 0; i < regionsToPlace.length; i++) { + const region = regionsToPlace[i]; + const { width, depth } = region; + regionsToPlace[i].width = width + 4; + regionsToPlace[i].depth = depth + 4; + } + + const occupiedRegions = [{ + xMin : botX - 1, + xMax : botX + 1, + zMin : botZ - 1, + zMax : botZ + 1 + }]; + const regionPositions = {}; + + // Calculate positions for all regions + for (const region of regionsToPlace) { + const { xStart, zStart } = findValidPosition(region.width, region.depth, occupiedRegions); + + occupiedRegions.push({ + xMin: xStart, + xMax: xStart + region.width - 1, + zMin: zStart, + zMax: zStart + region.depth - 1 + }); + + if (region.type === 'sugar_cane') { + if (!regionPositions.sugar_cane) regionPositions.sugar_cane = []; + regionPositions.sugar_cane.push({ xStart, zStart }); + } else { + regionPositions[region.type] = { xStart, zStart }; + } + } + + // Execute all planting + // await plantWheat(regionPositions.wheat.xStart, regionPositions.wheat.zStart); + await this.plantCrops(regionPositions.wheat.xStart, regionPositions.wheat.zStart, 'wheat[age=7]', true); + await this.plantCrops(regionPositions.beetroots.xStart, regionPositions.beetroots.zStart, 'beetroots[age=3]', true); + await this.plantMushrooms(regionPositions.mushrooms.xStart, regionPositions.mushrooms.zStart); + await new Promise(resolve => setTimeout(resolve, 300)); + await this.plantCrops(regionPositions.potatoes.xStart, regionPositions.potatoes.zStart, 'potatoes[age=7]', true); + await this.plantCrops(regionPositions.carrots.xStart, regionPositions.carrots.zStart, 'carrots[age=7]', true); + await this.plantCrops(regionPositions.pumpkins.xStart, regionPositions.pumpkins.zStart, 'pumpkin', false); + await this.plantSugarCane(regionPositions.sugar_cane); + await new Promise(resolve => setTimeout(resolve, 300)); + // await plantPumpkins(regionPositions.pumpkins.xStart, regionPositions.pumpkins.zStart); + // await new Promise(resolve => setTimeout(resolve, 300)); + + + await this.buildHouse(regionPositions.house.xStart, regionPositions.house.zStart); + + + // Add a chest with cooking items near the bot + const addChestWithItems = async () => { + // Find a valid position near the bot (within 10 blocks) + const findChestPosition = () => { + const maxAttempts = 100; + for (let attempt = 0; attempt < maxAttempts; attempt++) { + const x = botX + Math.floor(Math.random() * 10 - 5); // Within ±5 blocks X + const z = botZ + Math.floor(Math.random() * 10 - 5); // Within ±5 blocks Z + const y = position.y; + + // Check if the position is not overlapping with existing structures + if (!isOverlapping(x, x, z, z, occupiedRegions)) { + return { x, y, z }; + } + } + throw new Error('Failed to find valid chest position'); }; - // Define all regions with their sizes - const regionsToPlace = [ - { type: 'wheat', width: 6, depth: 6 }, - { type: 'beetroots', width: 4, depth: 5 }, - { type: 'mushrooms', width: 4, depth: 5 }, - { type: 'potatoes', width: 4, depth: 5 }, - { type: 'carrots', width: 4, depth: 5 }, - { type: 'sugar_cane', width: 3, depth: 3 }, - { type: 'sugar_cane', width: 3, depth: 3 }, - { type: 'pumpkins', width: 10, depth: 1 }, - { type: 'house', width: 11, depth: 11 } + const { x, y, z } = findChestPosition(); + + // Place the chest + await bot.chat(`/setblock ${x} ${y} ${z} chest`); + + const cookingItems = [ + ['minecraft:milk_bucket', 1], // Non-stackable + ['minecraft:egg', 16], // Stacks to 16 + ['minecraft:dandelion', 64], // Stacks to 64 + ['minecraft:sugar', 64], + ['minecraft:cocoa_beans', 64], + ['minecraft:apple', 64], + ['minecraft:milk_bucket', 1], + ['minecraft:milk_bucket', 1], + ['minecraft:salmon', 64], + ['minecraft:cod', 64], + ['minecraft:kelp', 64], + ['minecraft:dried_kelp', 64], + ['minecraft:sweet_berries', 64], + ['minecraft:honey_bottle', 1], // Non-stackable + ['minecraft:glow_berries', 64], + ['minecraft:bowl', 64], + ['minecraft:milk_bucket', 1], + ['minecraft:milk_bucket', 1], + ['minecraft:milk_bucket', 1], + ['minecraft:milk_bucket', 1], + ['minecraft:cooked_salmon', 64], + ['minecraft:cooked_cod', 64], + ['minecraft:gold_ingot', 64], + ['minecraft:oak_planks', 64], + ['minecraft:iron_ingot', 64], + ['minecraft:milk_bucket', 1], + ['minecraft:milk_bucket', 1], ]; - // Expand the regions of each type to make sure they don't overlap - - for (let i = 0; i < regionsToPlace.length; i++) { - const region = regionsToPlace[i]; - const { width, depth } = region; - regionsToPlace[i].width = width + 4; - regionsToPlace[i].depth = depth + 4; + // Fill the chest with random cooking items + for (let slot = 0; slot < cookingItems.length; slot++) { // Chest has 27 slots + const randomItem = cookingItems[slot]; + await bot.chat(`/item replace block ${x} ${y} ${z} container.${slot} with ${randomItem[0]} ${randomItem[1]}`); } + // Mark the chest area as occupied + occupiedRegions.push({ + xMin: x, + xMax: x, + zMin: z, + zMax: z + }); + }; + await addChestWithItems(); + await new Promise(resolve => setTimeout(resolve, 300)); - const occupiedRegions = [{ - xMin : botX - 1, - xMax : botX + 1, - zMin : botZ - 1, - zMax : botZ + 1 - }]; - const regionPositions = {}; + const animals = ['chicken', 'cow', 'llama', 'mooshroom', 'pig', 'rabbit', 'sheep']; - // Calculate positions for all regions - for (const region of regionsToPlace) { - const { xStart, zStart } = findValidPosition(region.width, region.depth, occupiedRegions); - - occupiedRegions.push({ - xMin: xStart, - xMax: xStart + region.width - 1, - zMin: zStart, - zMax: zStart + region.depth - 1 - }); + // Animal management + await this.killEntities(["item"]); + await this.killEntities(animals); + await this.killEntities(["item"]); - if (region.type === 'sugar_cane') { - if (!regionPositions.sugar_cane) regionPositions.sugar_cane = []; - regionPositions.sugar_cane.push({ xStart, zStart }); - } else { - regionPositions[region.type] = { xStart, zStart }; + await new Promise(resolve => setTimeout(resolve, 300)); + + // Summon new animals + + await this.summonAnimals(animals, 8); + } + + async plantCrops (xStart, zStart, crop_and_age, till=true) { + for (let i = 0; i < 6; i++) { + for (let j = 0; j < 6; j++) { + const x = xStart + i; + const z = zStart + j; + if (till) { + await bot.chat(`/setblock ${x} ${position.y - 1} ${z} farmland`); } + await bot.chat(`/setblock ${x} ${position.y} ${z} ${crop_and_age}`); } + } + await new Promise(resolve => setTimeout(resolve, 300)); + } - // Planting functions with dynamic positions - const plantWheat = async (xStart, zStart) => { - for (let i = 0; i < 6; i++) { - for (let j = 0; j < 6; j++) { - const x = xStart + i; - const z = zStart + j; - await bot.chat(`/setblock ${x} ${position.y - 1} ${z} farmland`); - await bot.chat(`/setblock ${x} ${position.y} ${z} wheat[age=7]`); - } - } - - }; + async plantSugarCane (patches) { + for (const patch of patches) { + const xCenter = patch.xStart + 1; + const zCenter = patch.zStart + 1; + await bot.chat(`/setblock ${xCenter} ${position.y - 1} ${zCenter} water`); + const offsets = [[1, 0], [-1, 0], [0, 1], [0, -1]]; + for (const [dx, dz] of offsets) { + await bot.chat(`/setblock ${xCenter + dx} ${position.y} ${zCenter + dz} sugar_cane[age=15]`); + } + } + }; - const plantBeetroots = async (xStart, zStart) => { - for (let i = 0; i < 4; i++) { - for (let j = 0; j < 5; j++) { - const x = xStart + i; - const z = zStart + j; - await bot.chat(`/setblock ${x} ${position.y - 1} ${z} farmland`); - await bot.chat(`/setblock ${x} ${position.y} ${z} beetroots[age=3]`); - } - } - }; - - const plantMushrooms = async (xStart, zStart) => { - for (let i = 0; i < 4; i++) { - for (let j = 0; j < 5; j++) { - const x = xStart + i; - const z = zStart + j; - await bot.chat(`/setblock ${x} ${position.y - 1} ${z} mycelium`); - const mushroomType = (i + j) % 2 === 0 ? 'red_mushroom' : 'brown_mushroom'; - await bot.chat(`/setblock ${x} ${position.y} ${z} ${mushroomType}`); - } - } - }; - - const plantPotatoes = async (xStart, zStart) => { - for (let i = 0; i < 4; i++) { - for (let j = 0; j < 5; j++) { - const x = xStart + i; - const z = zStart + j; - await bot.chat(`/setblock ${x} ${position.y - 1} ${z} farmland`); - await bot.chat(`/setblock ${x} ${position.y} ${z} potatoes[age=7]`); - } - } - }; - - const plantCarrots = async (xStart, zStart) => { - for (let i = 0; i < 4; i++) { - for (let j = 0; j < 5; j++) { - const x = xStart + i; - const z = zStart + j; - await bot.chat(`/setblock ${x} ${position.y - 1} ${z} farmland`); - await bot.chat(`/setblock ${x} ${position.y} ${z} carrots[age=7]`); - } - } - }; - - const plantSugarCane = async (patches) => { - for (const patch of patches) { - const xCenter = patch.xStart + 1; - const zCenter = patch.zStart + 1; - await bot.chat(`/setblock ${xCenter} ${position.y - 1} ${zCenter} water`); - const offsets = [[1, 0], [-1, 0], [0, 1], [0, -1]]; - for (const [dx, dz] of offsets) { - await bot.chat(`/setblock ${xCenter + dx} ${position.y} ${zCenter + dz} sugar_cane[age=15]`); - } - } - }; - - const plantPumpkins = async (xStart, zStart) => { - for (let i = 0; i < 10; i++) { - const x = xStart + i; - const z = zStart; - await bot.chat(`/setblock ${x} ${position.y} ${z} pumpkin`); - } - }; - - // Execute all planting - await plantWheat(regionPositions.wheat.xStart, regionPositions.wheat.zStart); - await new Promise(resolve => setTimeout(resolve, 300)); - await plantBeetroots(regionPositions.beetroots.xStart, regionPositions.beetroots.zStart); - await new Promise(resolve => setTimeout(resolve, 300)); - await plantMushrooms(regionPositions.mushrooms.xStart, regionPositions.mushrooms.zStart); - await new Promise(resolve => setTimeout(resolve, 300)); - await plantPotatoes(regionPositions.potatoes.xStart, regionPositions.potatoes.zStart); - await new Promise(resolve => setTimeout(resolve, 300)); - await plantCarrots(regionPositions.carrots.xStart, regionPositions.carrots.zStart); - await new Promise(resolve => setTimeout(resolve, 300)); - await plantSugarCane(regionPositions.sugar_cane); - await new Promise(resolve => setTimeout(resolve, 300)); - await plantPumpkins(regionPositions.pumpkins.xStart, regionPositions.pumpkins.zStart); - await new Promise(resolve => setTimeout(resolve, 300)); - - // House construction - const buildHouse = async (xStart, zStart) => { - const startX = xStart; - const startY = position.y; - const startZ = zStart; - const width = 10; - const depth = 10; - const height = 5; - - // Foundation and walls - for (let x = startX; x <= startX + depth; x++) { - for (let y = startY; y <= startY + height; y++) { - for (let z = startZ; z <= startZ + width; z++) { - if (y === startY) { - if (!(x === startX + depth - 1 && z === startZ + Math.floor(width / 2))) { - await bot.chat(`/setblock ${x} ${y} ${z} stone_bricks`); - } - continue; - } - - if (x === startX || x === startX + depth || - z === startZ || z === startZ + width || - y === startY + height) { - - const isWindow = ( - (x === startX || x === startX + depth) && - (z === startZ + 3 || z === startZ + width - 3) && - (y === startY + 2 || y === startY + 3) - ) || ( - (z === startZ || z === startZ + width) && - (x === startX + 3 || x === startX + depth - 3) && - (y === startY + 2 || y === startY + 3) - ); - - const isDoor = x === startX + depth && - z === startZ + Math.floor(width / 2) && - (y === startY + 1 || y === startY + 2); - - if (!isWindow && !isDoor) { - await bot.chat(`/setblock ${x} ${y} ${z} stone_bricks`); - } - } - } - } - } - - // Entrance features - const doorZ = startZ + Math.floor(width / 2); - await bot.chat(`/setblock ${startX + depth - 1} ${startY} ${doorZ} stone_brick_stairs[facing=west]`); - await bot.chat(`/setblock ${startX + depth} ${startY} ${doorZ} air`); - // await bot.chat(`/setblock ${startX + depth - 1} ${startY} ${doorZ - 1} stone_bricks`); - // await bot.chat(`/setblock ${startX + depth - 1} ${startY} ${doorZ + 1} stone_bricks`); - // await bot.chat(`/setblock ${startX + depth} ${startY} ${doorZ} oak_door[half=lower,hinge=left,facing=west,powered=false]`); - // await bot.chat(`/setblock ${startX + depth} ${startY + 1} ${doorZ} oak_door[half=upper,hinge=left,facing=west,powered=false]`); - - // Roof construction - for (let i = 0; i < 3; i++) { - for (let x = startX + i; x <= startX + depth - i; x++) { - for (let z = startZ + i; z <= startZ + width - i; z++) { - if (x === startX + i || x === startX + depth - i || - z === startZ + i || z === startZ + width - i) { - await bot.chat(`/setblock ${x} ${startY + height + i} ${z} cobblestone`); - } - } - } - } - - // Interior items - await bot.chat(`/setblock ${startX + 4} ${startY + 1} ${startZ + 3} crafting_table`); - await bot.chat(`/setblock ${startX + 4} ${startY + 1} ${startZ + 5} furnace`); - // Add fuel to the furnace - await bot.chat(`/data merge block ${startX + 4} ${startY + 1} ${startZ + 5} {Items:[{Slot:1b,id:"minecraft:coal",Count:64b}]}`) - await bot.chat(`/setblock ${startX + 4} ${startY + 1} ${startZ + 7} smoker`); - // Add fuel to the smoker - await bot.chat(`/data merge block ${startX + 4} ${startY + 1} ${startZ + 7} {Items:[{Slot:1b,id:"minecraft:coal",Count:64b}]}`) - await bot.chat(`/setblock ${startX + depth - 3} ${startY + 1} ${startZ + 2} bed`); - }; - - await buildHouse(regionPositions.house.xStart, regionPositions.house.zStart); - await new Promise(resolve => setTimeout(resolve, 300)); - - // Add a chest with cooking items near the bot - const addChestWithItems = async () => { - // Find a valid position near the bot (within 10 blocks) - const findChestPosition = () => { - const maxAttempts = 100; - for (let attempt = 0; attempt < maxAttempts; attempt++) { - const x = botX + Math.floor(Math.random() * 10 - 5); // Within ±5 blocks X - const z = botZ + Math.floor(Math.random() * 10 - 5); // Within ±5 blocks Z - const y = position.y; - - // Check if the position is not overlapping with existing structures - if (!isOverlapping(x, x, z, z, occupiedRegions)) { - return { x, y, z }; - } - } - throw new Error('Failed to find valid chest position'); - }; - - const { x, y, z } = findChestPosition(); - - // Place the chest - await bot.chat(`/setblock ${x} ${y} ${z} chest`); - - const cookingItems = [ - ['minecraft:milk_bucket', 1], // Non-stackable - ['minecraft:egg', 16], // Stacks to 16 - ['minecraft:dandelion', 64], // Stacks to 64 - ['minecraft:sugar', 64], - ['minecraft:cocoa_beans', 64], - ['minecraft:apple', 64], - ['minecraft:milk_bucket', 1], - ['minecraft:milk_bucket', 1], - ['minecraft:salmon', 64], - ['minecraft:cod', 64], - ['minecraft:kelp', 64], - ['minecraft:dried_kelp', 64], - ['minecraft:sweet_berries', 64], - ['minecraft:honey_bottle', 1], // Non-stackable - ['minecraft:glow_berries', 64], - ['minecraft:bowl', 64], - ['minecraft:milk_bucket', 1], - ['minecraft:milk_bucket', 1], - ['minecraft:milk_bucket', 1], - ['minecraft:milk_bucket', 1], - ['minecraft:cooked_salmon', 64], - ['minecraft:cooked_cod', 64], - ['minecraft:gold_ingot', 64], - ['minecraft:oak_planks', 64], - ['minecraft:iron_ingot', 64], - ['minecraft:milk_bucket', 1], - ['minecraft:milk_bucket', 1], - ]; - - // Fill the chest with random cooking items - for (let slot = 0; slot < cookingItems.length; slot++) { // Chest has 27 slots - const randomItem = cookingItems[slot]; - await bot.chat(`/item replace block ${x} ${y} ${z} container.${slot} with ${randomItem[0]} ${randomItem[1]}`); - } - - // Mark the chest area as occupied - occupiedRegions.push({ - xMin: x, - xMax: x, - zMin: z, - zMax: z - }); - }; - - await addChestWithItems(); - await new Promise(resolve => setTimeout(resolve, 300)); - - // Animal management - await bot.chat('/kill @e[type=item,distance=..200]'); - await bot.chat('/kill @e[type=chicken,distance=..200]'); - await bot.chat('/kill @e[type=cow,distance=..200]'); - await bot.chat('/kill @e[type=llama,distance=..200]'); - await bot.chat('/kill @e[type=mooshroom,distance=..200]'); - await bot.chat('/kill @e[type=pig,distance=..200]'); - await bot.chat('/kill @e[type=rabbit,distance=..200]'); - await bot.chat('/kill @e[type=sheep,distance=..200]'); - - await bot.chat(`/kill @e[type=item,distance=..200]`); - - await new Promise(resolve => setTimeout(resolve, 300)); - - // Summon new animals - const summonAnimals = async () => { - const animals = ['chicken', 'cow', 'llama', 'mooshroom', 'pig', 'rabbit', 'sheep']; - for (const animal of animals) { - for (let i = 0; i < 8; i++) { - const x = position.x - 25 + Math.random() * 50; - const z = position.z - 25 + Math.random() * 50; - await bot.chat(`/summon ${animal} ${Math.floor(x)} ${position.y} ${Math.floor(z)}`); - } - } - }; - await summonAnimals(); + async plantMushrooms(xStart, zStart) { + for (let i = 0; i < 4; i++) { + for (let j = 0; j < 5; j++) { + const x = xStart + i; + const z = zStart + j; + await bot.chat(`/setblock ${x} ${position.y - 1} ${z} mycelium`); + const mushroomType = (i + j) % 2 === 0 ? 'red_mushroom' : 'brown_mushroom'; + await bot.chat(`/setblock ${x} ${position.y} ${z} ${mushroomType}`); + } } } + + async summonAnimals (animals, amount) { + for (const animal of animals) { + for (let i = 0; i < amount; i++) { + const x = position.x - 25 + Math.random() * 50; + const z = position.z - 25 + Math.random() * 50; + await bot.chat(`/summon ${animal} ${Math.floor(x)} ${position.y} ${Math.floor(z)}`); + } + } + } + + async killEntities(entities) { + for (const entity of entities) { + await bot.chat(`/kill @e[type=${animal},distance=..200]`); + } + } + + async addChestWithItems () { + // Find a valid position near the bot (within 10 blocks) + const findChestPosition = () => { + const maxAttempts = 100; + for (let attempt = 0; attempt < maxAttempts; attempt++) { + const x = botX + Math.floor(Math.random() * 10 - 5); // Within ±5 blocks X + const z = botZ + Math.floor(Math.random() * 10 - 5); // Within ±5 blocks Z + const y = position.y; + + // Check if the position is not overlapping with existing structures + if (!isOverlapping(x, x, z, z, occupiedRegions)) { + return { x, y, z }; + } + } + throw new Error('Failed to find valid chest position'); + }; + + const { x, y, z } = findChestPosition(); + + // Place the chest + await bot.chat(`/setblock ${x} ${y} ${z} chest`); + + const cookingItems = [ + ['minecraft:milk_bucket', 1], // Non-stackable + ['minecraft:egg', 16], // Stacks to 16 + ['minecraft:dandelion', 64], // Stacks to 64 + ['minecraft:sugar', 64], + ['minecraft:cocoa_beans', 64], + ['minecraft:apple', 64], + ['minecraft:milk_bucket', 1], + ['minecraft:milk_bucket', 1], + ['minecraft:salmon', 64], + ['minecraft:cod', 64], + ['minecraft:kelp', 64], + ['minecraft:dried_kelp', 64], + ['minecraft:sweet_berries', 64], + ['minecraft:honey_bottle', 1], // Non-stackable + ['minecraft:glow_berries', 64], + ['minecraft:bowl', 64], + ['minecraft:milk_bucket', 1], + ['minecraft:milk_bucket', 1], + ['minecraft:milk_bucket', 1], + ['minecraft:milk_bucket', 1], + ['minecraft:cooked_salmon', 64], + ['minecraft:cooked_cod', 64], + ['minecraft:gold_ingot', 64], + ['minecraft:oak_planks', 64], + ['minecraft:iron_ingot', 64], + ['minecraft:milk_bucket', 1], + ['minecraft:milk_bucket', 1], + ]; + + // Fill the chest with random cooking items + for (let slot = 0; slot < cookingItems.length; slot++) { // Chest has 27 slots + const randomItem = cookingItems[slot]; + await bot.chat(`/item replace block ${x} ${y} ${z} container.${slot} with ${randomItem[0]} ${randomItem[1]}`); + } + + // Mark the chest area as occupied + occupiedRegions.push({ + xMin: x, + xMax: x, + zMin: z, + zMax: z + }); + } + + async buildHouse (xStart, zStart) { + const startX = xStart; + const startY = position.y; + const startZ = zStart; + const width = 10; + const depth = 10; + const height = 5; + + // Foundation and walls + for (let x = startX; x <= startX + depth; x++) { + for (let y = startY; y <= startY + height; y++) { + for (let z = startZ; z <= startZ + width; z++) { + if (y === startY) { + if (!(x === startX + depth - 1 && z === startZ + Math.floor(width / 2))) { + await bot.chat(`/setblock ${x} ${y} ${z} stone_bricks`); + } + continue; + } + + if (x === startX || x === startX + depth || + z === startZ || z === startZ + width || + y === startY + height) { + + const isWindow = ( + (x === startX || x === startX + depth) && + (z === startZ + 3 || z === startZ + width - 3) && + (y === startY + 2 || y === startY + 3) + ) || ( + (z === startZ || z === startZ + width) && + (x === startX + 3 || x === startX + depth - 3) && + (y === startY + 2 || y === startY + 3) + ); + + const isDoor = x === startX + depth && + z === startZ + Math.floor(width / 2) && + (y === startY + 1 || y === startY + 2); + + if (!isWindow && !isDoor) { + await bot.chat(`/setblock ${x} ${y} ${z} stone_bricks`); + } + } + } + } + } + + // Entrance features + const doorZ = startZ + Math.floor(width / 2); + await bot.chat(`/setblock ${startX + depth - 1} ${startY} ${doorZ} stone_brick_stairs[facing=west]`); + await bot.chat(`/setblock ${startX + depth} ${startY} ${doorZ} air`); + // await bot.chat(`/setblock ${startX + depth - 1} ${startY} ${doorZ - 1} stone_bricks`); + // await bot.chat(`/setblock ${startX + depth - 1} ${startY} ${doorZ + 1} stone_bricks`); + // await bot.chat(`/setblock ${startX + depth} ${startY} ${doorZ} oak_door[half=lower,hinge=left,facing=west,powered=false]`); + // await bot.chat(`/setblock ${startX + depth} ${startY + 1} ${doorZ} oak_door[half=upper,hinge=left,facing=west,powered=false]`); + + // Roof construction + for (let i = 0; i < 3; i++) { + for (let x = startX + i; x <= startX + depth - i; x++) { + for (let z = startZ + i; z <= startZ + width - i; z++) { + if (x === startX + i || x === startX + depth - i || + z === startZ + i || z === startZ + width - i) { + await bot.chat(`/setblock ${x} ${startY + height + i} ${z} cobblestone`); + } + } + } + } + + // Interior items + await bot.chat(`/setblock ${startX + 4} ${startY + 1} ${startZ + 3} crafting_table`); + await bot.chat(`/setblock ${startX + 4} ${startY + 1} ${startZ + 5} furnace`); + // Add fuel to the furnace + await bot.chat(`/data merge block ${startX + 4} ${startY + 1} ${startZ + 5} {Items:[{Slot:1b,id:"minecraft:coal",Count:64b}]}`) + await bot.chat(`/setblock ${startX + 4} ${startY + 1} ${startZ + 7} smoker`); + // Add fuel to the smoker + await bot.chat(`/data merge block ${startX + 4} ${startY + 1} ${startZ + 7} {Items:[{Slot:1b,id:"minecraft:coal",Count:64b}]}`) + await bot.chat(`/setblock ${startX + depth - 3} ${startY + 1} ${startZ + 2} bed`); + await new Promise(resolve => setTimeout(resolve, 300)); + } } \ No newline at end of file diff --git a/src/agent/tasks/tasks.js b/src/agent/tasks/tasks.js index 2c76f2f..3c7c9ad 100644 --- a/src/agent/tasks/tasks.js +++ b/src/agent/tasks/tasks.js @@ -417,7 +417,7 @@ export class Task { return; if (this.task_type === 'cooking') { - this.initiator = new CookingTaskInitiator(this.data, this.agent); + this.initiator = new CookingTaskInitiator(this.data, this.agent.bot); } else { this.initiator = null; } @@ -482,7 +482,7 @@ export class Task { await new Promise((resolve) => setTimeout(resolve, 500)); } - if (this.initiator) { + if (this.initiator && this.agent.count_id === 0) { await this.initiator.init(); } diff --git a/tasks/human_evaluation.js b/tasks/human_evaluation.js index 68fe6ef..1647d46 100644 --- a/tasks/human_evaluation.js +++ b/tasks/human_evaluation.js @@ -1,5 +1,7 @@ import mineflayer from 'mineflayer'; import yargs from 'yargs'; +import { resetConstructionWorld } from '../src/agent/tasks/construction_tasks.js'; +import { cookingTaskInitalization } from '../src/agent/tasks/cooking_tasks.js'; import { worldToBlueprint, blueprintToTask } from '../../src/agent/tasks/construction_tasks.js'; import fs from 'fs'; import { start } from 'repl'; @@ -43,6 +45,8 @@ const selectedTaskId = taskData.task_id; // give the required inventory items to the usernames specified in the usernames list bot.on('spawn', async () => { console.log("Bot spawned. Starting task..."); + + // initiate the world according to the construction or cooking world const usernames = args.usernames; const task = taskData[selectedTaskId]; const inventory = task.initial_inventory; From e88185602bb68982817e4fa1bab2b50355dd0f85 Mon Sep 17 00:00:00 2001 From: Isadora White Date: Fri, 2 May 2025 12:01:10 -0700 Subject: [PATCH 011/101] fix human evaluations for construction --- .../blueprint_visualizer.py | 76 + .../church_three_agents.pdf | Bin 0 -> 56886 bytes .../custom/church_one_agent.json | 2348 +++++++++++++++++ .../human_ai_tasks/1_agent_1_human.json | 435 +++ .../human_ai_tasks/2_agent_1_human.json | 435 +++ .../human_ai_tasks/3_agent_1_human.json | 435 +++ .../human_ai_tasks/4_agent_1_human.json | 435 +++ tasks/cooking_tasks/human_tasks/1_human.json | 44 + tasks/cooking_tasks/human_tasks/2_humans.json | 48 + tasks/cooking_tasks/human_tasks/3_humans.json | 48 + tasks/cooking_tasks/human_tasks/4_humans.json | 40 + tasks/cooking_tasks/human_tasks/5_humans.json | 49 + tasks/human_evaluation.js | 68 +- 13 files changed, 4447 insertions(+), 14 deletions(-) create mode 100644 tasks/construction_tasks/blueprint_visualizer.py create mode 100644 tasks/construction_tasks/church_three_agents.pdf create mode 100644 tasks/construction_tasks/custom/church_one_agent.json create mode 100644 tasks/cooking_tasks/human_ai_tasks/1_agent_1_human.json create mode 100644 tasks/cooking_tasks/human_ai_tasks/2_agent_1_human.json create mode 100644 tasks/cooking_tasks/human_ai_tasks/3_agent_1_human.json create mode 100644 tasks/cooking_tasks/human_ai_tasks/4_agent_1_human.json create mode 100644 tasks/cooking_tasks/human_tasks/1_human.json create mode 100644 tasks/cooking_tasks/human_tasks/2_humans.json create mode 100644 tasks/cooking_tasks/human_tasks/3_humans.json create mode 100644 tasks/cooking_tasks/human_tasks/4_humans.json create mode 100644 tasks/cooking_tasks/human_tasks/5_humans.json diff --git a/tasks/construction_tasks/blueprint_visualizer.py b/tasks/construction_tasks/blueprint_visualizer.py new file mode 100644 index 0000000..f19866d --- /dev/null +++ b/tasks/construction_tasks/blueprint_visualizer.py @@ -0,0 +1,76 @@ +import json +import matplotlib.pyplot as plt +import numpy as np + +def display_3d_blocks(data): + """Displays a 3D array of blocks with different types in a single figure with subplots for each level, + including block coordinates. Dynamically adjusts the height of the figure. + + Args: + data: A dictionary containing the block data, structured like the JSON example. + """ + + block_types = { + "air": "white", + "oak_planks": "brown", + "stone_bricks": "gray", + "oak_door": "brown", + "oak_stairs": "brown", + "quartz_block": "white", + "glass_pane": "lightblue", + "torch": "orange" + } + + # Extract data from the JSON + levels = data["levels"] + num_levels = len(levels) + + # Create a figure and subplots grid + fig, axes = plt.subplots(num_levels, 1, figsize=(10, 5 * num_levels)) # One column, dynamic height + axes[0].legend(handles=[plt.Rectangle((0, 0), 1, 1, color=color) for color in block_types.values()], + labels=block_types.keys(), loc='upper right') + starting_coords = levels[0]["coordinates"] + + # Iterate over each level and corresponding subplot + for i, level in enumerate(levels): + ax = axes[i] + ax.set_title(f"Level {level['level']}") + placement = level["placement"] + + # Convert placement data to NumPy array + block_array = np.array([ + [block_types.get(block, 'gray') for block in row] for row in placement + ]) + + # Iterate over each block in the level + for x in range(block_array.shape[1]): + for y in range(block_array.shape[0]): + block_type = block_array[y, x] + + # Plot the block as a rectangle + rect = plt.Rectangle((x, y), 1, 1, color=block_type) + ax.add_patch(rect) + + # Add coordinate text to the center of the block + real_x = x + starting_coords[0] + real_y = level['level'] + starting_coords[1] + real_z = y + starting_coords[2] + ax.text(x + 0.5, y + 0.5, f"({real_x},{real_y},{real_z})", ha='center', va='center', fontsize=8) + + # Set axis limits and labels + ax.set_xlim([0, block_array.shape[1]]) + ax.set_ylim([0, block_array.shape[0]]) + ax.set_xlabel("X") + ax.set_ylabel("Y") + + + plt.tight_layout() # Adjust spacing between subplots + # plt.show() + plt.savefig("construction_tasks/church_three_agents.pdf", bbox_inches='tight') + +# Example usage: +with open("construction_tasks/custom/church_three_agents.json", "r") as f: + data = json.load(f) + data = data["church_three_agents"]["blueprint"] + +display_3d_blocks(data) \ No newline at end of file diff --git a/tasks/construction_tasks/church_three_agents.pdf b/tasks/construction_tasks/church_three_agents.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c9ae7e6f944b4f8808e1cff834645bfc78d113f8 GIT binary patch literal 56886 zcmeFZbzBwQyZ28ctsqD!V1NoDAt`MjDk&f+wGohz?%srAp`eI_lp>vqu<4LeKtVR$ zA>ATuYQwW;Hgz98-{1E<&pEI2&+m2rF|%jZnpv}ExP4!r^|>w%l}mCw{AUHpInuh> zQwzxX+4p;MG#TV{UBdz%GLOdD+F`ikgFggE6}x?tqGcgM+c16}u4hlbl!0)WFEh z%7k5b>#Uu%p_;J+yEeG(B{?t@V;2W@-m8{i2p6`t7q_-o*>(2}hyTw9fW{4t-p&|| z4mW(>8^-q5j&_FNd7$xw`zsn7nHgNLb^&+f1OJKe3!FVCEF#1%bWV)_tcai}*wqDd z0Ui)s#hzUZH%wV8D{JtJAL_DqQlQh@v#4NfW#VAU&cAhMIWr6J-0Zw^7GN?i85>#~ z8AHRjcd#=yuq1bh>@L>LJX7=H#Il!HmFo$7{_wtAE2lD?$o9E0rTDza$~HBf(NUc$ z>6PSJ`sjmQWLdNos8`N^a7Err_h zNi@ahsW@|#Fu%Sg3743?Xx$ifZUv3(PFTL#= zQCp4CZ<1EuTnP;gl`i#In+{Wke(BdREEEm?dqQMRTu zY5CJkkA&V3p5H)S1GXl0<@luCMD3LS4y>!b$ugbe1#L z3+f_)Caj>9qT%9i=*jEd+a>At=K43ZeVX@Fywb7!XFa0dobL(Jo1|}^OZWMb_nwa~ zsQ=q0UAiy4ABN!e9=%1{0WL+wm`LG$@;2EE+p7kgeC4n48a^=`8+!R!LB=re0k?mFqy1(7JUejiEp48_G46z*kQc=SFGG`K3edU5gxGgOU}#`C0-%KtSqZDlyAbeH zP|w^GF43UpnYZZJK?ljXOSm>~Y4^4-_)psGZEtiH>g%p`ArXHFJo?Uc_O{6)xU)5~ zYiH0j>1!J^rwe({e{Y2zcIyRYl17^vZ@m<4T8RemfUoDk!|KvV{HWb}LAlVw;$8}^ z!__$n=(eB1ZMSa)y`V8SXvU3nZiJC31aXwpff)y%A<3hK#WJvu`(k1zeZY+4z7l+H z_S`#9ZZU;(v%7{T#$T7S!$iM$lD$}_w)L(Q=Jvj~|Lk3*lSZ54-W9_4EE#wdBkJp8 zf=STu|N5@Ltbw;;zddU^9}F0N_)WQ`y!#FJul3hHN(;LHev!-Tz5cC86%bZ-)FbErrK^%vVV zbCsV+ad)gGrAxa?HPK=j(awKPfHBeYj(Uv+THTX-*pI9={lQ|ouxg9s4XL15OEndY zX_LC-;p2X`o%xp*ZG;tDuBu9f#bPh2pERb^z*2%9cYdm30~F~B$>m4}yRXL;kOwC$ zIe}X=U#}>RioNbb!&z1lK3dZ#D5;~@dYWv_%oFpe`p^**y;b~Pt2l~LKeCzld3Z05 zwqB{CxQFP_HMy$f&}#R>XJ;b=ukrC>@vKol9xRj-<)Ce>Mamz%RJEPh>C$|CsJKV& z(Dy4GkD@>qva_!!tMhj{tMER1p9S8!#Vw%rnzOy5t^wvm4{XU7Pn@ zj;yvJR~L*!8<4B|yqlOwO>A4{X2Ya3c4>HXJu!51$!6Ipv*)3w&Wui(WkfzeOA;3v zc=XA?K9!d2`DRp&-bXg-nTueXkVa35oDn1FLs7TVX&R2$6Pxcn;ck?I`_7K!)Xa{51m?%wI+dj3e&#Nwh*|JyT7{V%+8 z2b>%|#$Rr%JTy8L6W387c);e9K%nDQZjsSg%D9Y`bJZdypByfsP$E1{E=q0sqcX@# zk@JhFw)Aw~?(_F4T?z2XY1dg{CeV#>gec`on_WK3LQJn z`sQ2qn6cJiv5#Gw&MixqtlkyHPQ1z4Y{}aU%zS*%r2S~PZ6EJylFFClOrOKS6KRQ_ zuE-I)_O~QX;RR;q;ofFxK0Pl*r(5XwG-RHeDXA593gFvQSwys<+XeBjQ%%`f@ur+a zr2BNg%x_Sn%hD)Q^0Z5SYet|Xlx3LmCEbm{JcVoJ3QCEGj&Grs`K8_WuHGd4H;MR6 zxi<-gl?m}a%EFu6t<4SSmw?ez5{qaOJPSYECLZ1x!M}{!8K~MNsPNja!J986RP8!c zqEyK&MY)Hmj%5`b3$neZfpFBo<6|*GI2z;Gus9$b9r0|qA0Qkbup8!{DxcuO?-!OY zpSXtKf785t!WqvGOo=km@AInU>Q-aCxy8lU?$ygZ)UeD1fwL32KL zb8yg&uh1<>so7GOWf);M-0z*P;rCU;kFtZEB$%6oDOZ+)Qkfqxs^ck{zcA z;@pGThgwt0#(FvM>PeUwd%B3cyJ89B++*NbcCbEZRL{V{*dtEt-NjBE=bj1<=O7$r z>GAIRF$T^rE>YU1E!$K76ObkXR6zePmeMYg)#_U76r(|crhja6Z?CcZp#f-_$j+aNcJ;|9( zl#^|jl$7bd25nTr7Jaka-C}Jfi48EnWd>TwKF^Hf-x1yiHa?%z58dxU6F$&Bxvwyh zlssE+zmqb}ev~YBv~Y8aWczk zZCInYt^v8Y6561z*K#fa;Cw-e{ru2m*HCz0%;w~**3#S|yMLCE<2O`|Z6F zev6(-6k!-m#PH5eQ_fz{S2r#7pQEvUTNikEwy3+;sr;O)ju0QR9iuFb)sQaGS$Uk* zb?eH;VqKwfV2juLsZ6(b3BOBUqo;{j1F|BrT)!INmD^NQ4zmpeV`h=y-;0et{f*z& zo2%K;74d9KIekhC4zEt$FKOFMekh^T(_YFl%acGNzKCK}YST_L2otf8s*c%Q=-ZrL zklt)4-S|C@J+=Ab`>T!SXLZ8{u0r-=X`I$tc8oH7-Fy#LuGE^;ZmwdGn>Fb<3v17Y zHoOSz)xYWYv8hUsh~1WUUpZ78j9EZ(#@{&E|7MYiTs+}BUki3sNt8XHf=T&0HQ_#g z7Lr%U`+;N98-3E)Md{5_PwZ4A!!($so_Pgu8e}mMy{e7RxKJ6v0aCIs*uYY zQcG6d$@*^+J>B#v#L}uu&WKU6Gg>hsHx5VpDr50+3#q5x%k(uW#rC(ckw(XhN$MRn_ND zM~N+TncTuB9jc!EhGhFnc{cLdwfBAUshF-rReZ7`B+WPHo|=_-fyA|}Tl*5zX%jyo zdV6D-xYqN296oX1uG-~%ms++5l0132LXPmvee})8W;3fB8#-$9HP23F?^n|1Xj(PV zn*ANysYOZJ9zBCdVL?@_ z#@c&2<{RwK$vT@Z<=k1SOl5fbtDMM8bI>jAp|uDCisNJ=QPQfGZ(I*Mip#Aae3yi5 zvF*~$FPe|AMv*CGS)ER*$__k{YZX9QeT(K`dm+~F$dwkVrf_c}>(qChvJ3JP!hztD z_rgD~79o?4C!fC}48lhqE%ixLwks{PH>ASYi(8JnU$}6QymG$6rV;z$F8|%ZZ!^kz z)#J^Jb#`vZABt6G_KRg1jR{91^R6|XJyXK{32>t-SrfISnx-kl|A1hrk&DW+-rqoQ&%9{syuZ><25{E3@Q?FStOT_)TM(f`AC3^Vn}19@!=!8i=EP zU+0=|w*ePeTW1Wuk%aL*mgoC9A$MFDmbC#U?Hq1)1|>AIO`wPz;VYs!|1BDRvsq_H zA4f<+v79XUBIx_3I^a1Q4`=P1>JYq7r>X6DC;Li7Sy_BQAIRiA6bqWm}1&bHLm^IZ-uD_Dm8o;F9y2v zHX9v%mGdOKcld?1Kh(2^$l8u|*(yo#qNr^M!t(1-FSXFEea7j7pIlx0*S2~J^4jW# znr)_pzw=;!+qZr~@#a3oLbDs;ejYbEEMr0zL z_YbsX;*JWFfTIWC_nEyumMRYiGbX~Un=16USjU;V^!3HY_%c$udgnN{6!3iomy0eo z&2e+V(T;4IfrGpgc~g|2RCGhoF2y%_A_KDXWIEE{cVje;L>p~(e~ z(+EMNInb+wn*pV`;vV>O-i=cqg?f3zq21BGg1gbkMvubs`6bKQ8HcsOr4@?45yndo z(W=F_oG(c9F{-+^I4v~lvo(v(hJT!T5a^3p760{^6#Fsoc_<_0Wba~~M4Kw(?CC~K zo_dienP*@6+D$Qv1xezi!;e9C(@AO@^@Z^|7bM<4sp@NF9@V{2@@1kl6S)2eo^|V}~beS1OavEg2a8^kFcYlb7kT zDLh}|H153&La^vKgs%K0vD=SpnlSfhW%k5iN2B_zl?5|m*evM- zA$4SdSK4!Ry#mu$?6ul~(Ukn$*Y>D?P5NkQd28PUZ*$Qhuej2H`A%6KR#Z!&U%mUp zdT!kf8~KQjt(M8It1TjRdfm6BD!!|so^3pj(EQT${TGv+Vw_})Ws<8OkHwi71I(vO z+P67lKV`1tyE88}Yu;3rG0%3dL`o;-r%{MIg}woW zyF7J8Q+#%*DlQs>!?1tGW&#%Jd&01P#%4xewt_Mcjr|#$^)%~iKPNe$rF#Ic`x?EL zE2LtypY>j1-FCvwJQ;hRUnFM zMmV;>5rg9}VDjIH#ovfXloey5u#lF7(3d38+U0i80hU*Y`B&_5!eeEF<7Ga#Qwg3X z5-@#`C1e0WrMVx$nP>u|=Gs;LqE+er+9}BS6zMqO=8eG?FS+!z^{UkMfOZwkQ%ww- z&uL8prMEw=P!*0S@wnN%DY$LSd3ZprvG(u4KDXPj1FDJHC9oAOr3egk1~!MG$)a zd?M>_+35SV#g{PmCOM}jxqy)$twIK^Q9H@eFrA}cvOvt2f8ItW_ep{RbSIfl1N;(H1QTt0)6zED6di8-0EhD}%830f@E^ zg2S`{Gg07hknfLT4QQVE3NYjXcb`JB891!s_oG-F9Jb>tKvCdj%hJdx)4YB=yA_*( zD2#(qfsx@hnea%ek?HpFYlzX3q5CX~VG@ zo@LT$;0^>NT0HHe@6cFY|$hL3tX!|XGXW%>0_BhNJ*hJHl1TVVX_pM7&VXM!OH z{&14%O|R5zVtK~Rwd(BX$JA;90Snn*mwnnL1CJx`EiJcYuIuZU3TZEZB^s-(wUrTm zvtM4$N_UnG9*PI=uf0_@`jfB@`!#j2!9L4C>+`5A$Bl4{Ay1*C-e<2m z6iB-sUBC2jjWMM0YT2?tw7zS8CJBJ?auPu2sh2)}wat@u)mV3>7NNYpERj_Cx-(@u zgBj3yg=f(ITBf07jj7k;8$UJXN5$It&I~NX(k3h9Zj>;quNypM(Sl+IjpF$}iHM@n z+zz72Hh&HK0NYOEYR4KHY3{GkT1*(i^R8BfCEL{&3?$-88mSE3Yf`7;fkfOdmmNO= z5myV)bnKDa>LzA%8b^);5x42g<(vRv#i?#arbi15r&1ixnN7S7061=W`JJ1J6O+z)6xmB@+W{nLGb#*WD|qR4vT&P@IujVp0oxsv6oJL$IK5QS{e|M1Mmv; zTo4kXRcZpQq%8o<@F`786=B(7q&A1|2ch`>8X7P~FzfvLrwalLS7lA*eMC89xe>aT z>MP&q`fO;OccS1@Qp7xt##QH2s>#Y$W~B+?xFzm+U|>Jo&hfcW^nMReO_T( zkGlPy{=ZIF#f(jm;ug53Oypze>`qLVTyAbHX>Ujpb(|+H88=4bJ`CxWLOqD@i8xI& z=krj-3Je!+rHW3=M~{2*;(|0&-rr>+B^L1e9e)!&9>t4Wt|`)W@7LDHarlyB!|&cu z-16J|WRLzg`kWMR)A+w@H<-9#>TpYRoo-Td)4Xr|Z3ek~GLbLz&c8RwbvG>5emfD) zucY0O6y1@KeA@t8CBY9UrM&|2BJHP~rzNx|ki>7>srx|xF)rrm6x`WuD!#A(I2-V$ zkLaxY=gdkRh)+}O?Aor+aoa*nzJD}<#f#%Pyfl&&Dkp?5tU5gXYR@uB^Xra@E(K^E zVw`tHyXP$}xYa_PXGpXc53M zw7Q~7_S6WlF&EAn|38@wri$#PqJueQ|Fq#iA*Xz8eO9@*H5-$UF{l* zR=cr=FFn^iNh5(-<`|`*S$%Qv2roZlYw={LYepQj?n zIIs7PFEN{4QFHiA8aP1D4AwxjT2DtkvL8MZIdi(5YG_UF<0XTh8mnk!4I=+&Pn3sl zp>0nacYPT3w8M%e^&;ueqfW<=+W1lm?c+?S1y(BSlyKS1$%OeyOzRb>`;;bO^a8EOTF3I+#I$wOiW^CGJn4hFDpKksrHjIOF5Iu-w*I# z3-G+aaOzYXudUX|LTDw-GS^jmc8paE*|-`e^ieC{sB*K&jQka=vn_e(R5}R-DiU0K z5+}$`S>T5sRW@767EzQjApJtPRMgR~mCw`;n&X4!#f>^24z&a1-Zb>rSz9>!2y|}W z;DN?4{-ybzqWj$781P6C&tUeZW>pJ<|LO7CdNW+ z_+Enk%OfgiHN+-1_f*;7X&C_5n^mcs0Iso5HL*-NZ=ux?n&!@0{i522M^uibE{@Vv zhNuSnNn)RlRFBH^G;BwzXBp7>J5s$WEt57oQjwME>fRk{c$F57-W_PXGD}sT4mJGB z^k$z9G=8Opif@M+K_!6b4m3d-SoP>oBLpq|I$Hdun=L0hPmu<5lQQMrpyJe|qW;3b zAEv|qC5!4dU;b^t;qeH&c);PO%71c|<98h+3g#vPO-VU5NdbpbDr8Us4yO;(p%+Em zyNs~A44Rsj{WL3+Xc+CVC>G``5Fx`u-5{33oRzJ%cmYUT5t?Lx)X?F5au_)YuRC;vDp%@Bdu0!s7d=o^rU7Ca%Fv3L$YsWI`iSA_#x>MJ=TVz;w3(v zlE)4b_+s&D`PwywC)tl?=$FWoo;Ky^Zx5`UBpnSpOu&150Td2W@$~ zHr6F3$EPpqhQ~c&nf;(1yv`zZ!T2MjRVSP z%i|8TGr_hQ2J5y%(C_NXFp2y=SRS_!42NzYMbnel9dnOsOCC?HjM%`qATyGehpK~N z1zy9l9ir*uA3Lm*MbsVHNUSq{`H$E>W5kK1Jc{bv!bM$D%j>GGljSalHV51n`UGy? zU?k<#dPCRz=GJJ)Og>O@vqw16#y^^++thjHF|xU3s33Ulahop5Fz`{dR}@mh z%9=^W2EML8PIybLac08lasiS>b$mD@#l$>(8u%^Tr=NzEp64;7mQsun$rc zWfd{DJp^wdeP2eitl&}5V^kqQd6c~)3Qv5(4(+Lfl7WGDYYdQwgYtZVb{4Dy;>G|R zDJSx9L;UAy$I&@3M98obCSC(Q0l5deEY(i$-P1|qQW@Ipg70Mx(>2m(ojnFtAu?n< zD{ebdEL+~QDxjHSz%i=hC^BsH#6IqUAr-Q_Qvajh6*WRv_@33_8LQI z4WM{&8Ga2{IKonqGNHI&$$Y1~n&#$1S0&#pS}E#~SkBF|nM!!I1L1t3;C0YK?aYN{ zhB5GM^r(PuW6qHoeqFMrS~i+t*eA1ft7o0WuVMItVX>YKLwcF~I4!%*wVy&5*V9Ri#-pkl9#Fry z@Ow)NvxX^Qg=wjTu5;}n0nTEo)8UsFblWb2{A`u_66|)G~d>(J9hjpc{&_sww}-F9`o#5vt)2=?E-ASyvzHY(N)qr{ro0*;%vX>f&Z zoV9pn)cw6rr*xw*Ui{f1Va1RTrXqLbSZwT@F9Z*N)1cFM(E_ELCmb)k9;I0vp_(gO zO8s*D2zI3zDB2B*ZOvLEZ+o@A3T9cJ{=nE|5$QJih>^pevRRx}2LD;fmw{Kcb}6FA ze3|oL+xi@r#okbuHgSgtVcDy_`7jnpHzp z0-OHGWTt(r^s(>Dt6h^dRlMI&(nf1wi_fWNnAGBL&z*>Zf{^Vz$xxS1(Xw4Yl+BDP+B zegnYkx7z+aFG)3~rtSUCOpQ9pJRjB83(;QdMo@I+8@Kc4s}Fyd0>ZbI6_XQFLCzh+ z7#1T%jb~;`sA6LR@--2i3`Gm~xIYa|(EP%1lCIsFDfnWK| zHs>2gax|^?`?S#Gm!+%wv}oX$0iQ}s2tFjVwzT*JXmb;#aua!X#1f^Z0%r_6aVj^l zw{|jdYAP{P_GQYOnv{4bS*n|wRDcAjZ)#FQ8tYAEnrc^Z{R}fTzbZAqfZNH$PZNoO zaJ`4E4=3etWw~$xjav{gF99tpPFb zVe3jDFz>Q;nT6^ewgwdbuh<#@GowNVBLHTeFdZHM%zM}xXx#gKzta0sY9|v0rxKDH zJ>A3BK;u5fmwzniD0sGCf{5tR1+V<{HWE1uCve>S&1nSU5^@05r-0h~H>VL$hWQzL z-T(tq>|dNlk(kx!hr;}f68xev+<$Qz0sj#(VvY#-kCOg$8X*ZSPOp}8uLA$kpH3r5 zpJ(VsH_2G%x+6B++$GN3tb8nc*jj3+^|jaRYbk`VI&$`=bieQ(ww8gShhFF_Qt|E8 z08z}rf63M|2HQ{#dx|R45AI=Wa>nUQt>$gYuR>^aO5uFb>l$m$L&OQ z^aA!=u-L|B>Fcgu%^TBk)^lSV_cwq2`ZbEld}Nf@*`U!0pxW+z(qLT^54OuW2aj~9 z)%{G)iB11Nm2jAO)n0y>o=&~(eSgao!a}DVbHbrO`~ly3)(<1v3u37*$8u(2jJ6UC zhxP9hg<7yDq}xS+V&Id;;JRrIpkUc$+c+`#eZv9s=oMtl3~U-Pg-s*;9NK#D@2w8U zqV6XS%;;3i4awO9nfg{0S}f1HI^Q3R05XxV(7Bh!GfYCRl84VoaVj;At5wrGtj9&v zHQ4-ZI~yf34jhNMDJ`DtUe(lNO&*3}LbA>bqD3uE#TIdXV7^t9S6?tft1BJ=x^k!P zCCAIaj6AIZ%pXw~)e8;LmBRinfWk)lZj~`OVMZD7wMtx|xr)WRl=)ZydkPXs3t47& zu9O4TzGbg<-2kngPB84prV|^zmZ#^_7(`&J0KhTgQP^XVLV_I9q6r4|$X%{2?_MD+ zAjWB-et?B9}cyL;1;a^Sz^6iCBL*z>{#sI0?eC3K5 zpB`V>3{Ym}<8T0&Gn|Q6(Q55HNuokMHI5YbAxW~lTdV|TVT3QUg98cylxHBJM^zLO z!xj&fT^6Q1Uj&iu%W_d?7+oRv#BM`AzvnXy7O;Gb7=Z3M0fRfFMsJM)vUe~#xIjZZNoYIsx6@3xCjh-i zzRv^fhoo+sT}k=_xQqrOOh-IC?Hi6iW5q-vtYGy0$dL|4NNb7 zV6f1e;`{!$(|o%xGJk>8fdYzv%%2jO?{fOiT7io8{Zx3ZKx)pB4kl;tLA>CNg!s3H z$njTAvE7}I`)hAkCHG0s#p7DYviOmfINgCoY=uMLzR~0QiKdHm&EgYS_c@sbycO9M0PD$!}-(y$IMf#JwEMK$|I!wmV&xg_v=c zcakI97pQj_%KQO)fh12PLz*hwP}>FHk?rI&s8`0nekOP9g2GN0`9j?2UCFS7ET zMBwiCg_citeg3;vlCT|YKDX=h$NWW;{?53I!~Z>+G;pVM!u}Dy@7q5AeofxwZAJT+ ztJ0Pxjf(n~DV`T2P3zX%*L~P8X)f&f#J7T3=fs#?NRjsQu4uB1KQipTZa4mb6#M%A zlS52<9Uz)Ye0tIM7Y;qzHsF6fNY8sCtl^3mE0>8uaUw9RCAqx#{84HAQY5#@fP-?m z6=UC`-h#! zqu;=4w1@#tjkXxw?7$dqZrIlg36V(5QPIZYTV8)rl^dVp0POa6rm}-&WSKl4SDeN+ zpl{e-3OH{VqjibZ^aV*E(I=|5)S<3q7A5*E2mZkW4xf$%dP>BHys=mDS8ZEo8hUfC zlh0XXrMJoD#-hGg6e0G2ZFO6po^*+)ZREYrGX1|TsyCvWw#heb-Shf68|R!8MB6LO7WAnohc_{vxaZ^E6AY~6oJY-e+E{WMN0F_8H6Ro5z1zI z%JlAi-Ru-=QN~}y!rg~kMF1Z=nJ_JN3uw%E*!%HJIlVSevp=U{0e++;T3V1lcQcP0L2i@XBtQLmL^OenP+Cjf{VKi}yD) zo;Ofsp$#wtK%4Ytu<@qsc!&Qc6@QeWpmfWb4`gSqtO71z^nkQzAUp4I<^$RJ6~ZwD z7(E~@8sOa?XFjm&CzVg602G9@XdtuxfSvhDglvCvfAq^({_v?n`v8dk)BOP;da=}H zG3Ed;D*WO801!QMD03#!U~1c$4@~$uyUu)?Jf6i}XFl-T?{Vhi<>l;g<^#L_9%nxA z@I%i0tf&HqJ3_VPKWkO`Oz0+HKzP9)P z6F*@vHz6?b?{Ve>6F)PbD>Gk%Jt|V^@4U=}x=bpEkpgq~H(rM4d90TkVD#U38DO*| zBk)rAm%RBaFN-uXP%%nS0gC<$FZapZoAjES*ub+m^(QX_icVfEPhYf@l+JJZ3ouI! zUn$XR*rm3L#i*xj`n-WAy?XA9y_R*7R>=u%YbV+5bxJ)xSg4&}Y7;F( zEc5d6BE2@B$or>ab>bBdpq4H@0aCIUQ(s9cu_z;|*D#r5Ma1KNtr4UtC-8r5-&oQ} z4|qRF!$Ok<3DYAd-q!V;zCTd&Y=r&jtL!HyZ*%{jtAXnCkzI%K)QAAHH)vWQET>!Rcs>B^^k7eu6CWTC+6OMuWnOn z0OW=qS4aB``XC)T>jxf0;1EzR?)7!2bY_*h3XTXbq|o@`c)7JvA`8dMv_{YRh4JblBezZR9&!BTqX}bs>@kmfSw_uvTVOjuSUgGFwtFcKq}dAog%biM{|_wF)*nIJ_B zI9y=wg2Q35-G+~#2Y|F_#!;Lt8gh37KS=?6n-K2|Z$})jyD2-h@F2EFKwf#Y9H(7F zX@GZeighGqb@HyjjKldYnGzDT|8ZJ&xA&dK0o>`z{GHz0dN;6Z!$aVwvvwk0ebWSm z4Ci{TI8i{z$Pb3Fjm3ANi{M-}5X0kKH9OoJ7P}jlIPSc>BxsW0g#lU0^CjBQ!T=Of zY`JA(B9kX$Xl$IZf&2^Khh`Drzajx;*h14vS(XzY^+8;TAOBBVGF^PvYDg zg^{E__%r#_0916T7{)mFR~a(ZQ}8vJ2BC<(4K3lhiY#f%l^^ zA|f@hz^$w{o7J7R=Huy~0P& zlMhJ}uhx=P*9A9XM(I*;*{WNxtliOYaof59=vhA8;n??(Y@32agh;?F^QU7E9N7w8 zr8EvOx-CWZ3N3n1dSR7jMFV?s^}XI)#FmS`bJC5s8=w8$DqlUluJ{XeAaL@5qM9*2 zAy!H`AvWR*?ZfePrk|4IKh~6mHD4Y2rDFXVkH(_(iA0mml%e#}taOcznql}uH@_3; zvfTK}JFG7&8*t_gC)(4oKMskdC7w+#M&fXph_&_@6)Tx3OGfAuw9%C3Kb7Tl_2{4zc~*rF(U~Q; zUJvG)kWMvc_H?clNEUR+)##`8w+PDqTz&9mG)m#-jQo3 zPF_b79dweY%SxsX=iZ{_x~%KJVxJUSTLnG9eitx`K&RVHzG1O2D9k2wy1G!HxkJl| z>M!V708`&fF&E>#$%QG-|IDx?!syT8sDl%i_gXLheI41AImkd8!t1@TZ7;;Gv9aTo z2Da!uwER!!2Czl%q2+%%H$bZ59$JR|1i-l=YTd)9WNDt|Vr~-)*m}@RRt~r(s?>Y~ zI%5f+CK58`+#qI9CZ?`rpwg0{`jSLNp5;Owq{=;soS%?B4qOI<8k;_yH`bnNt}*3& z{B6F|4bgM z*pXPZ$sAzSxC-YA|LK*6{4v1T0hyxz=9LD5J*6DxE}Ss@ue{R#e;%vfLNd$9Y5eJtY{|a>pW4w|2 zV-_2dq_iwRs39E0GBGx~S?_tdVD4aHO5 zs$GNdP2W?yhKDfP3|G6xn@E38?V4O>muOt=8gJWzJ+*5r#O4&XYS(xrli!rFC_k7j zAfPGZ>z|JtHvcaLQ!aqI zEKg1w85?DKH@A7T)XG#u}C9UQnc3{)RyyG#tU zzg<42(M-j5yJXB9sP(hA{oXd9hR$wPoUIZwphAxJ(=zf$>9_(cr#|Rlta>oc${n6R zY`5FPwSl%O-aw^ic19QDf0#FIPd%IM!9hiaw#)7epuKkn2QEarT{;K45SUn3Q1&J3 zzA|C;_EbRiY_i}=G;j@@pfdXX+Wb{%0rm7jonETx0qT)^%LVN%JL7&8s!arYmoZYq zdtS2a-eN;Mdy3X*(@3=73Jk%Mwo||cjQw563tU#}KRyJv{^YHqHJuc!nsP=}2R{mY z)Rg)4@qKB;$o!1tar(rqk~>iGqwVrL(0*1Z5mfN#A%_DqyPnqn=nE~ozbbg-7XO2^ zfGK*FJNZ_l2YR4-Iu4Sct_=uj7s;R{ppYx+$`XB?k^~H2ZBClX*Ms*5)a5n-g0&WReGd~iN-9&3iX^ZS1PYfu$ zD+qoE)?#iyidCvjc#Ne4hO3D|sDzE0BR%LH7V7Uvk8@<7XxuGaV>Y#fUY!wp!Fzs> z`(sD$zHgbx)(@LQ_Vc>@MFYPJ)rWz@-(A_feAh*?YdqO?V~@mxD?&k8n98QS+n*)U%lKELmZ2#iD{)^5H{%`YdMFtNo!oI@Zk>i7l9#04K_10z_x^mB5 zZhsxdID_`KYK_{D-q$P~ryWtdu}ZmWrmS22TsvUN?dcCz3@yO>7~Pxy0q+^4VZ84t zunx)Q>r+F}JV*xGw`*#jpl(QZR<9aD(^S1k-r%ZnPRvN{EzuseES75LBbQ%%E;z{+ z13R;)BMUQn@@6LKM+6<~Z2scRK0DBMz8R@E@y57`WBcEBWfBCcn946U^12Ix?%Ljz}7aQ|XN-=E6FV8Zq|mQ#Kk%J;3(Oo)+NH8e z9{LX63Ov;wDV>&BDyJkLfcR%Y9hqlRQ_YF4l2o83O^Zx|SPv?JEbJZv1yCb_Ov@aB z{u-W=?L^Q@{>4Cn3ni>rc9T&2WN1VLXTLh(n-RyZ)RVFAQWB1SGh_CwAgV9==x;DS zaw$vkKTUk3Za3dCSO5Ej51b;*1@_{7rwCHH34r~BAT^c18;H26+=NiIlvH4Wu*%t= zma!j7$Vk#8!!iJ=?a0=HZd(-F(|c7OHz^%eKmwL zN0Ev_nF>^&VK@`bU{p!Mp(ViqsQrAF%lSF~+v$HQ-~UeDquJR)&uDGlef4_7$E}Q~ z8}z1+gS@*2y~X2J7qJa`Sd(t^|B<{$k#_SxmG7;ZG-dc5$Np5l_tvC&)&8&Y9&P$> zQv6>#Mb2F8`}PkTHZWX&DeM1QhTj>B@0W-#(rEral=n!}J<&AV(?kmLPG@^2NV`e! z$8_<*cR)3!O9h$v8w(*b|Fyt4=&LW^-bJH>R{GCDE!B zyJ+J%I#|dI?B#%Y z>A`zyhgXFbO@=ND2fce@eO0Ly#f!wJu1?2jZJd3{q$A3rkmh+KaeR7Go9Sv*oEbr$ zjW8EKXL;8wwWxo^Ro3AyK0uQ_yEWYNv4Sf9&d6Um(d2si0aQAVAcGMan^?=Pw(p(iTM(IU+ z5d{pXPF37h+|6f_I|}wR*I?bi1b_N=yR%S%nD|dXD04F;r zt0+Kiff8efTeeGL1Q~(L)xPPA^5gO<1gj}gO?G36GvfB<N#`P>eQ8Jg5Lcme0o z&#Vb>R**MVE_5>6^&{Tk;a&@x3U?ae8*b%+J5Af{9QWtxh@IY*&K0=RkL-7QyO}K$ z#K6YhopOOl+e5{=RpC%o1}Ikznw0IVwd}uC0^CKb|0hR6BPcsjBf(?}%)&ETu7yv4 zFTwlDD3n0Q2as)Jz!hiMc4FRGF2V`zyw8x{y|`tNP_MG%zhP>N1r7EW?=%R&H2{?} zq~)z)FHxn^5L>*+*2`IbIF3uvb2D2Xf-k`3(}1RHpm}TNp4Xco=PF(u{y$Z;5LkD1 zOvSsoc{^`mmLXHGw&s8BFQd)V<{|X=@?Ww^%i5SCoz{tox00Wv`=nyfU?!VoF~-_l~te&W|EzEO36H%%WlEhnmH>^wQg` zoR1$A1>MnlRZl7Xg^ZyjM8wn`r9R>^7uW5&i)mE#Uk$0a^xkhLAu@`GWpfLH16gTm z=MRk5-r^JHMFG^Mx(!e_uty>$W#5=$-MncAuJQ-dr~|9sj*>k*-Jo&Z!UDOGd&Glz zKDo=y1hX(mGBw-#<;y{Jx?4Z95^u$D<-QlGrEpDhX7VP@)#qTncYYOp`@`{K4Z}Gf zVGmMvNXGth>|3>)9qjrLcajGN=}H6b)eJUV3L>}7P731mgiFl*L;$(N_JZ1>oCMEr zj=bPJp?G;^x9p<9OfJeqe$9$?PX?m?+hWm4RO!lkopOxS<{Z{JGsY`pPE+V}pXTHK zLR`&{RbHE3iqaqY)h^TQ{?|9>;__#gSK_*R#??zNuBvx$o~(#g(v@zT4w9lrZHlqC z8B8>pX%|DMuqP{&%pT|F0I$bF4CR|{$8gB&fl>BXu#cd2ts^>^yCH@^31%kN>aqiG zNEA|F>Xk&&9lA#>Mg~JMl=++?sojK-!x{tb@$$Nc6}~N~`>|$U7X4D5hhAI;(yu38 zjX0!t;|-E)ce1Zr_RVwdDb?|x8=n6vR70}$mN}$#*A-%3_MyWicwbt^J^-=gX&K~D zeTLmK9{^sCYUv(@9J^Y&98fmgZkZ1NFL$yE?f{}O&nhqns_Zagr_4vcCB-k!Jw-lj z*g*})!PByGz;6AA&4ap`fmlm|7}Nv#)8?_^b6b1mspbmPhqsW;W8v0 zCXA=$kLrtC9uH7x@z3guTOJRtMothQ9AWHP1BXu&#kt49E*gi~gGSv9rx|;+ zVcU6}dnTOI>0r$OVhrYhnI2zYQ74UaF9e5wBYywx&t-89{vSy-1mA;NKE^7a(8{<9 zV^w8R|N7l*&pXm?|AN_`0@CiDTg)rdO#)YC+~axPVP5>fo8)j>BIFAxmJ*FAFo@1<(1~f? z_*YJ7|NrQOu5gVZa3Qd3S5pkcD9eDl9xHcxLmj3vZN1BJV)X|73(B?<3V|Dy&uCs8 ztFAfv_3QXFw-(ctDhO^_U*bV!_3E!iy+&Ch@M)_n%9yYucv>Z z7>;~to-Ntq5Q~D!*#SqsoXoT1IP#4W>}_1huO)_3vaw0nKQ;a@Q`b?q)@){H=1=4&Ux9MlXu^G{U!svYepoJzTyM zt}+x|zK~C6*L-(>rXu8rPd$)^n%#?rBiqfOiglIRp}su3nUi=!(Td&i`Alq(0bZ z&nL0*14ptTNo{kk2zF9~f^0~SUby}?pzbn49La*OVsl^dPJ>6d2B1Kc9P0eJVz zy5U^&;0mvH8z|r!0J|?+BCg1UM|3pKsIVw3RNHkFe45)Ca65V?(XLkk7w16UnO#J! z|4SK)upKs55r4J>m!Swy+rd5Xgj)r@@mar1Nc$&@54aT?F5Zx;{9B>$-8{eVyWWiM zohswIhUMKnKg4b=bMqagch}>*TP`mag+qFm9#ZGLzkn&Y_f`>d6X;J7{!<4*$MzKc zEzNIxiu~Bl81D22r9-x!cf*Ejwo#ej$C zUQ3b5lD-7j&H~plYnm?0L@SZ@r&1fr5LK-nO*f{s^(*A^X*{c(8&yUfIWG zQr=k>DbX4`czHYj&-a6$SmA{@aG>sdJe_SuB(dRw9VjT?CeLs>ZLR&=Lh=*u-cN@E zM+%&V3iPG5!u@-vcQXL#Es)Q7K77Egd^oc1TDdSb<)zo_ty}uy#pxu@kCjK6R8Tzh z+D$CO4Lz7OHHH^WM^=3$0DH}zK)sVmuzX2<$Xjak=%Zd!epWs=ifFbS~!Zd%c8 zY26S+-NUDk+%YnjUU2`f8=2kv=GA3%&mT!~mS=mqwrSKpUu3J=Lp^S2y9P+~L@Dzm zbfOTP;8{HGUPtswcvB1!e9B?yh9v%jVx+*&ut;Ml*RNHY$w|zb3oVEb@hm7Pp1#eq zgaSP83ybY&9sxr}Uks%^So z`t!95;nP1~ZvOdJ^IzU^zNInZRG~#}U`P#a?_gj^13dMoH87+F*6z_60DD8ga{i;> ztzxmT^OgVeYy4OfBTKFk=C7-LH|QhG_o`U|Z*0t8SN|^GL!9qbAMHCIkA%|({9Nw@oCA0Ad0#xlK0}lk+KI&M*=a2(oN`?Trz3N`Qh(P%m z!e}gk!o(OGVu*DPJfWrTr3K_(+ZnyS1LQ7-7%tLTp3Y%~Z` zJDWb*pVnKs>Wf}mBO=Gs3#jqk7ennqnid?Jz z5~~G*t$jGE-0x$uP%yIlv?J8NLVa{E%VBRz#y7z?k~iwNbRU#c<&M`L+y?}MW6!@* zl<=f8ZQ7;fJa5cFf%>t7tRTDST<2<^(Fh2R`f8T23x|KeGLJcV2A zO^P3PdDbpznas0nJ-a;Hqf$@iS+TdfJUbxBizy0DTV-i30dNh3=x(;yRuTbE>rP8|MZeUSAxGBbPRm|^5 z;_oM}|NjqZccHddAt(k2)&35${>xzOugA29LM&*1ZUF#pd`upxfuo;eKd{Q}=W-;t z+H9+Pk9K;6Dqc%{{&w}t$(fa~RHDz7Gz=Oa!F3kgR2Wid-+l^M!)KRQe6mj$()jK- zuIeaM(SzH_QPIzqf6)yj2g7!YPw6UDkcva-hdjs0;n;zxnBO7Z9ycIJOP+O9@u8>( zNZ&sB9pW99i%|?{}?^{hw;!~(cM!!No8(Tuf|96la&+#FveuOkFbpdb+|XngV zGP44Luzn@)mR8ukbZ%yMM`INd-;zFH6V**VLG98d@X@kiWX0Z)9i^D~z3oxG z+TD);{aZx8IRy4>z}sr3KK@HYURrhDja&bJ#%`zK%I|+N?pG0vGwXe3Uj;dsZO2Ga z|1ult4dl{Ee}+bh$u%$jMAsuMdih>^?Gk^{AImf1-|rFc;rGSx;UizkyrdnRA&TVezorb zsw0*_)E0iRuW(0y8dJtyjqln2gPod5EA?E_%VV;gM8sYD?z!{N`4;?%4^0Lc zZ?Bw;)#jsR;vT6;j;s_cvS*4vPPK|dSGd2aS9IsO|6@Pn2(wp)P(!S;=!Z8kn?`Y) z_tw0T#B&9nt zTU}L(kY4qNl^adG!<5T)Eb_#nuno^oD#bNy54c?NH_tsCGFz+_*ef}2iHWkpOszBJ z272A3yN%fItDa|QN%e`52i_|q=^0JKrQv6Fj?b?(-#6DQAet?wL$_`Y>LhQs?*0A=3IFT0yMV9A>e<2@p?k2Z^smN~H{ zxVN3Mfi~UJJze8z_(3Do!OKpfdkhrz3~J&WSh8U(z?oE8d{hs0U)RiL1X_iN;$M!T8F94mD?( z+RT|M(h`{BE14X+EFo>?5LwGQeBl&&3G7fx-` zG7tK1%oAwsD%8r&om(5PdZd_^Qz=Yuwz#WE0VkSvA6FR1wXCbcL;6xo=cu4#gcf&o zI6H+@DMf1Qd^(R*DG#LW43iFw38L_nIy#ZMhWTFYk9$EfP;V)3Z%At+GzjkP-F4TR z^dmhE{sa!65jHg!bQ?Az{j_33!8Jy+cbAO&H4BfXU4o4W>@M{~IGV5rqXwSRB zI!4>}=00HvjYy1Y`k0i0eVL0UEMlt(1a-8;58{~6R42f~TSM3(sD*`Zy!yue8rA3_ zZ=!Bfzpt442%>kk0=m3erpe!g*jgwdZZ97feb}0}_gpwKeE%Vj)w##f6ZqpsHMOPd zs?Sr{-oeLiEm>MDx|NMo2fcX>Ge5yTTG#7FhZFF^#c}aBO^EW{cpC!?82P4z@UJcR zEyFfv5&Pl&^^Bta7WR@SHa$Fo3RX)!Pp-{SD`&u z4jy$2t(PW2vPw=tikz&O~J79@=%#z;=pp8PS*1~*rO zvUM(sP_Xu;uP4Z7mQnSU_i|Clo4$>Q>1mhjhz53r&CReF&GcDN?=6F?dTIEUY>U?1 zW8~;=cbs`n&O}ixd?l7gKtxX?mlh$Plg;>JRF*xyVQ~#WX3|e7NTw*80B=a8>Q&=I zt_HLPSqdsucn$f6Bx7In{@A()g4Y6H+4 zc&Zy+wr8s(r4I74G%D#i46hZa%axmX(((D$x>ngG!fS0U`()g?*l;fP<@B0CUp$h=KDgkZW3 zzqAnTUR(-T*6m+Vv%8IH;d82`zj@~8gWuShu zx@Tb}V|5LqNglg-b6>Y%vu&52-`HT3JOpLIF2efhmw&^B;-_->jox-6YQh)CJqsz|X6H7dyoDd6tuORRjCk z{DDiGT@pDMQpZ&sH8U9@X~7H7aM{ouBwYF*G^6)hTkekjWX)VkEl|!`^dS3V+;h*9 z;9rJdmjuw^!M}%Q1t` zXMsSsHE&LhJm;lC%p!L6Y48?Ou$xf&a3s!hUMtgrcY3n^@R;7jxN=Bm@JF_n!+l+y z=h%vI=wRFogBoL_p4$eCuDZ~Lfv9x?*Ih;+N7)S*yxhdt@-%eZL~v+>iGI32bv(;^ zco}ZmblC2s;M_XCKxtO}kzvmUhj?j|wv~07&kdLAmkP`9jd!euWyGak=GZQ?GmmBG zg{q}|Xr2%AZDh(1g{Esp(tgRKG?qgj!cQ1nye7L*DxSC zo<=Rcop$e}&=hp(A-9@!^>I4ovWK#6!>O(Tl_#rIHjXYmYa2(L`&i~9(&b<+fMs7X zP2#dO_vu7P5ynE~ougL$S!eKA6?LJPAp~}%))EAM$7~4GzI`7-z~>S1nP?*3f-p0b zLQv?+Ls@J#UEV`jih9yyNyMXw?3)#=g4Wvvg#hzYZRk89f)h+8rDTc_U%c6|?ufkd z_NMxC5%H@|Q`@qpM_xCVoAw{5a`oq3WY?cJQ^CFPraU_r3UX)@M*t=5P$=&TGNpSe z*@u$0HFSTuVAN5h;rB3sc{cs|yPlUVb3QRD86A4vJO%J<4jaI;(U zB4HB8rVjipir+04f*Y$P19+ zGyC~r`ymSPH1`u}YIH(t$LhR@LgtP5` zVcCm1n*mrq*11V&2U=x{N?{h?zN#j}zKB-A9#9w~wy&zYgwW@E(?i;HXr0Vyg%zGs zCdN@VGf&n`PC#S;iuMM?*5PzA=M+|mr%jBbZPxiwJ2`pkhH^@HNN;4wy~vE(*^D4j z_M7=-H&X}BaAw0ekH~Y=Wbx53CtL{b)un6@3$}C*(I}|pH$w4Wwh^T@P@v_NkEYB@ zq}J}|=oWE9Cq3b7qgctII~J4zwNE)68v0pz2Kz$sC{Lrww7{YRkD z)DgG~6ma${K#~JgW(3X{IQb@!;wz=RPN!dx z0;UCl;oR|++zwr5Xxq$bWgVm-c9M{hnnyVMPCWCAe8RkO^{J4m6jii>W!+k#{kDSa z_~tiPzYy95HD3?sn$Ujx{<$)knl-lNW4TNE;}p{-D(KDa7CBWodsT`lno7X|-}13a z2D+GHiltK62Z`o`)Bs-e!wv#8Nvc#jby$Z@2gU|b;HHh{qpblH`eTA3H}Mj6-NXci zOUPd!w(Bm5Wq*=wVB1fm{mHU_C0k(yfLi0|1Qa+)KTtsu!?v5nb(Z&cPOX%!?p>@l z^_i^3xO zS3jf=Fr^z^6G3qb3%s5{KQ$pkqDZ*^u-(oCP1D`d=0?tAG*hh$_l9CE%$ESjWg|iE zke}hoUnsNoZYFMd_xv}B7DDJyDRX#ITm%TAUil+LG5&t=e8X01kVb)!irXMUZ1^pB6*CS>zY*~kI~m1{L{g_8VboTD|+A< zT}##Xx;KYBMxXe)VouI8c(dM48l$T@Ap#x8s?TP88^fF1%x}Peq3+knyZ{XI;3(@x z_gW7CT7XnSTt{{X;oqaIr8_X5ih=alQMShA1`fS+tX{i=@bBWk)IImrq6_3*L6zyU zmu>;!I_32^G<6*eGg+kFTKdMjILq6DZ(H*)}VYY!U8($QKOaU=? zNyIQ&^9)7;Ydb;@2#Kgf1i`)R+aV0|KAo)b9y{2Y@6)BnCCeoIt_q!XC~{W@{r( zkusM6miv2g(eD|G1fGVBRRJ}E<$x*LUk2IT$Id-27%B&#Zu`a*2y7tjZzujdeAm4_ zH1$ge1XU#owNe2>Wh5U01`lAbq~|)8kyr@SUh)ML4wM5Qxke_`UdOGRHIl~wE%IKJi~g<0O8e!EC%>|-8v+*z=G-TaYH?J{mqnQ_W)-G=U+beEC=UqlNBVF0rSW% z1KK5j7tV|UPb9$^|I#lwQvpN-T?Q~!_wT%4aEx4MR{muQ_a;=_%H6*>?*HRXVXcm= z{|%qN5&RuM&0v?WN&1cIzY*ME7t4R6`p7PpXX|B^qexTY-)hYU90HvF-rvy^nA;Is z^_L{xZoo_(8;`PR#Tl*LCNO`E!Wgb!M_B;hgP5{T%|RsMtG#7wtt*Sm@K+Z) z8Xq+$y)eWXZRsSPiKZc8Yd{YfTWga3JGRog{&#F$aoNRI`L<%!)0EpnF`o=qVR;kC zDhyvr<`jOa6D^dOPN?_Nx?@qh?OJhAzAvT3eMtzhOmHhsiQ>w~qMIS~Ui*}K;KRo9 zbOvAfHYf$~o;=sid2Y#lEok#R<`fjU_Pj}hE`SbVQ)AnDxuHO1quyJKDIzGCkn0`W z#eqLx-z1+o#o?vJl#=#%F~GGeh{JJu6PXPRL67sIZ0Rcwu5O~Qf!(c;20NM2H5o{L zEvd*xlvI>RE;3=#PdPz+7zQ_T`gB#favVOfr^7b zbe2(GlJN3mc(?9R~g>3>#=Wp71{p!-C3ez-NPjZ6HX?7?^lIqyb+9*g_Eq z(lUbjY-kO^%CG2fx0!PTph|BiNzW^_kE)Q1%Gp7T%1)AsSC$)6$OU1JhZE;Zt531_ zrKrwTr(HpJCS&-dZf<{r`iF?|tNT87?n*`3cP=_xHqI5!xtqx+7vO#j3LsB4UCJE~ zN|3_;cwt`3gT9oD3F0dv{4f!Ur^jB(1(dueu!R{iaTaRn0tF+>@x$DJAJB^_0O4k) zkQQbz{BF6j0*Q+}OgXl)k~-c<`mt`L0#cCDa1CUI$~3Zo^b@~KPLX~zU{ZS}Bw3a1 zR7gLtpFiSY>Pf<$&{luM(qwMy6l!khL)D^6C{8jidCM6=yrTy5Oi3yE9e*uRe@eWM zNK&tMU7m7AJ9ql|FWe*yTut@VNX9M4XG$t)%p!@i4Mpl0LxL+y$(8S$lGXSP3w6I! zXB=lZn%}ZM7ks70uZ|H`8mUIS*~`yoVY$WQ|B&-N^<-xhv9t=Y`Tl0v-5gB~#_PeW z>nzB*ra11*hHYNscqV={tJ|W5`54SJ`_dQ9*wLMUiM)xq(D;#k8)P>^A0P&TcD-|)`rLRR|WWiX-!gk%1m!6&X7BUT>G%mNmSlWX@GY) z&O1lbhLNjVz|Zd^e0xO(yLv13Gp9tx$vtu_mu}0Jm*8Gm8Ma7?X&H^Q$lpM6zU)4h z4YN%=VanKcL5LIkA)NCVbz?S5R^m51#(qjy{Ra~$r^2w?UzBb)eD{$5q8U~bA8X~V zKIAlJV%c%4pe*f9G5my7NqIq8x^B^Bk)=x4k%-W&es#zx%>=H; z@B#Tww@6Av(Qd&A)guqwGb!3b-1%1GiEE5)#-}(HK8ACOQ8#4^WF-#Tf%oit+^c)1 zFzi-sso4|Y=v5eft&skBFK{ungsGmVMpi-DJ9^UHc@yNwcWO7|MB?BXMh;5rpZB~Sq;$J!7HC4< z$C_b@=GhFASr!e`qxn`D-nB#ytE#eM}ibst4qSj z>TkttlHKK_^_D97mkUx~0Nh&-bVSfV%76%eGm!B~1CoJgCOu98M_|7( zFk8L_*pD(Uh+hS8KhPDZl)NC3ZM+p{-T*pi9A1n-Nr~-xbvNi?pfx%!fK~iz;!m&s z-ARrEHZJa}3mpYy^S(+_TE}iDDPjCj@$LlRy2#ZSL(sS2V=iS>CcDTj%A?drhM%Q zGE=@`M-U%VRRcT)6!$JAE!z9yzu98&m0QOsC10NvU9=xl4)Eyq^}Oxd9oR2IMc*#~ zX1Y~gvdO5eDhcT#%cW$6$ z=#6^iIQ~U(Q<0yV;?xfF@sWjkqAq}X#o{yG$J6gKUDRGPOu&dzsp@!E zPDT(qW+dP8{gbLh*G8Ex&^AWe2?$EzvAv7>gsNlO> zs*muuEWpX33pjSh2wZac{rJJfV)`8?Vg$F*TmY(bif88wnBR*pOX)to8I6~`W%CXv zt1jd^%7wFNZq~;-mir#x48f-i0LPD3FLiERWL74wC7~biOr<2R#=d|PW|S=6ogyXT z!9?{HXotG$6v$WIu2pR8%D>2Z8mGkOncCQ8>VsIp&o0>&ijS%4JIhJjdxos180FO?k$6}Ike6rJc)M@~gSW>lb2jVoe z3Jrwc9Ju=GXotTR{NPp~b?pz8q0IgC@B|p8{?ph%V zO-8G9Qpt~Px4WuZhE$D!_5-FUm#3&6ED0$_cLV$I^k-SWSz084Ubv6<1 zcw&a#e0AA|b5APHupb{8FGZYvQGJDd#KH_y;y-(3E-!bTBLPmBRkAQtwa>0bIN@sE>dZ;^HEJZaMhuDA+X4M&EXC5F1u2g&8_^Ek)n<(h^fqFHLqHc(ic1f8!yu zGQ#C$UUTTyVbDW15ia;V#_sfeQl z2+D)!MrDspMD__t{iR{MH;2O3OiQ2RjSgr1(MrO(6jK=Ot!GN$c~L)hnGde>pux$U=E@g~4;&iUg8Vo`dak{f6944GbJ7uFN%ZG!;3e9%=XR2_gT2JlTnQ! zzbt|b8z+p08%eMc%_feq24Ewi!;#rQ;R660G?T9xBTjxJ!G=LtZw^R)z|dH~Vh+N_ zbdsFaU1*|1nxIp zZ)8f@t#0nqN&txl_;KHI7Z}3q_IXy{3c)j34~F;R0oehJnEM3Wk;IohR(I7CLB7;c z2JUzVB#X?Kz#Yk~XCl66&ragY!v@&Gc91V$gAD*!kJ8m3q5fA{X44@;6 zmd>qm%{1drsAJ!9Q`~h<7L)SXO{7yh(`d1|T*v1q5p;yWQ#v^|BZ3NsyTK;KH4_BSjC9xa$V<_T1gOdNT&^ zL!#u@yL$T?zD_bjkkZ00y(RSktsp};s1&jpUK*i0$A+=t9%yVYgyT6NyOyjXkD zqVOT|244h8=M$c{$ZVoquw#CQY`+r*=$t!gpz3BmZR0+YfDTZ5KvVHA=`i2O9^r1a zWi~_tx@f)ZYG*Pf8btJZ!hQ+3GeWKuXdJqdOo<~^cltfTGz%Y;=ZKoA&&7M}PEC}5 znc?t9qv1}nzk})_`#aglpuclQ;K=^oNA?-O-)8{zko~=v~Y$w;`X z^WQybqtI-KgP~pY@s19|0?Efgw;?+vh_1VCBL-GYp6Knm&4m-3*h2C|Z`TXIg1rjt z?kQ2CyBhoLX~sV_)<8&*(jWTvW*Wt8DP<-!mxZX#%?W!mJ-0f3!#w1A;rN^BwW&*I zS);VSpqhjvfyd%Pe1xt1{V4yPWqmgv9BO*`?$I&;@qqKjBLKwHcLNYl`^(G(dV1L% zD49+JDqHrO$90NpVF+@!T2q!q`v&kk=3)5dCcRcLw_31Eu)2JkZx8b2nh`d|?BNL7 zB2RQ_#qr?x0M5r#of29Y*d=G)rCDp?vBxn@KY*>qfGo^hUsKbdAU(3UiT9hHx+!oK zH|mUArTqhktmbMWx4n%j-s?cwbNx)p_qUFG4>%^_e5$gV1wVdBwWRa@WK#7_fikm1 zlm)g)qYJ;pI^eg0Za@)*Qtos_{7Wc6F%xTF#H;?Pb% zok5yVH)^mJ-G;bAmDLr6Q&J69PawXcHAqA3#MMHVBDN&0YP6g1e&)48ZN%4SIn(U@ z5I$9gx4N*IQ@)49$cZ{2fjb+yO<3~-USPyr>cn2u-2@XosbB(pfpKQb{2e_yB^eXT zy9Or0fkZB5$O`z(5o`Y@FlH0s;F!J6+Q0o!*NX_RMCV^w70TTLn1wi2W>G+o6UxPN z@U0QYwgF(FfFmh@r@NH=FiPO*F2#L5iig1aony8&zTaHLC_E%7cx9)Fs8s|N@Rp?S zqH|X$*0U4m?9j7SKD9$jdISydTR$dw4&b~k)anjj{N0^JrK(fx0ch1~fb$m0r#1l2 z^T$@?YR5uhXq6Ix)v)cWCxzJ`qg9#!q}ys=t*}bZMXU4!NQY}*RkdXA0H0_BOx3pJ*onHU8x*ZWGy*3`ZTTfMZ;(5Vg|JqMsDm8A<6@MbDgd<9eB_0QpZk-%H8PU6%Ol2m(nSc6(yA)gvg zkFJ0rXi|}l3aNlLqZ`pIt@S3l_aCp zMyf_WZYFzJ*ctWD1+=I)X#~FexVjU0F)x_L5sA3|#(fAcIJHJl602-t%jn}eMX+;Z z;LM^$k;fyGG4(dub895sq(;O<-%u$haJJoYoqpXbSMZeiXJGd+H(MKf%42N|-y zxiaW6ZW446nD0+@p3H~?KCGZ~dqOT>ibKkLGAeJcpSO4U-FGU&j2ywMI9mh|^BVy! zzf8J(V6pXykcD|t-{;$wH;=)0Dg;-z)+ZY7=BOM3PB)W5e=PSWU9Lg8{QNi}TP4dB zCy6~Z@x4y1aQ@-R{)3FYY1aCl4LP@;h0S(JAFmi3k!#U(uZdqbySqB*Fs5(W!JCKl zy;B4~Dphhj59zP_;j(~oMvmcdwY&*(e|+J{ahN6F2~&o)3tPP&`4>3fQ#HQEy}vPV zmNAYJUpJVCyidCJ{^vt@Q<1Le;ed!z`MV`AI-P1}#fqEj+-l-wE#28~*xXdMY~#&G zhM)K#C7@`xZixB>46^%^3b(UhR_rIPF?1}@X2Yx^#C7N%IpVJ?6aeE55VIq^PaHVI z7#r;RHLyX~>1o(Zjr6+;2>i+ zg*EBIXJIpe(zj~{#pGM++(zSjE$*@pIi%^sJ7)8c;dhEIA5|>j17y<$WRuERHyr*X zPnPXC%!&_`?E+Pwe8C0I463HrphRZ@iSTv1*8**)F%#~Z9S(ph$x7!ALCJLidK6cf2@k=#;wW9q$>IX0GC=_COb^ozQp&3S zE>`@d?oCaStmPf{M4L2aOP$%gGC*AT(Jsl~*S{vihUr$8d$hMdNrEeYH z{4$chrR+dCIE~|3_i+1&Gfaui)81^C%S*ro$01P=A-(%s; z4&c0gzJ<~5wF93#P8kkgwsV73-!TPlp9b81-RvuPFYajC?5azHqM#M}0vkLpf=&Q$ zo6XxccO+RHkN|xG2!&p(EkyGn9qwWmnA#G;Kt_fhLg8?87D)c5_z7pOQD0NcGk-IPsn8+3|Z3TuPE zYk3$3v{N4F8q>fm2y_pyYmiM0bdAHzMnfb+az}$s2X=@x#$5~XAB)@X7N(Kzievu1 z^wQ2W;{Ux3z_u$a&56F=^`xJU4|IC6X$??HXPj-B; z(~}(^?DW61vT@1rX|NuK=DzO-H?Qh@dGGOM74E$`qpc@IO4|nrA7u2-MMWO3t)%mm z4<15y@)E}KS%-b$_5w)%1H;p`cX^Q5(GCeXj{W|Zka00MruL=Q=*An=bgerx65Ew_ zVzl2{32}=~aVH}Ec+L7?&w$6Ud|+ObD=vX%6t%FqP`f+`Tbk~~T~I@K;5-qheWSa~ z1ej&pu*WNP)ywhaIHZTOc*^NyzC@Zyi$#`ZnIV-@1BWS|z zfkQ+|+!Vp+fbT%lQ1wS2<&zpBk!P~8SMT~H4&WEitN0S9rm54e9q14EA@OrN;{@(K zB?O}L*9BtR0ujBWMmSaUrK!>k!gkFdW-CB1@6%`Ofuapx<3$(xTt9Wq+tqP6 z#EI}&%sGbztjh>j->*ZIAQQQ~AGf8#ejFV&Fo;3UTO&gXT4J|S7jB_p>8^LT;?Xe{$rID`-r+JiB0a`20~542;?F#x)bi- zMl{gk5lDh_vkrvc98#3ie;0>I#-rO(w>*JBl6l>BxjkM1YQ2Mk287VwsrD@fUVxkN z1X}PSe`nE{z#PdNfMr4l(wAeBQGBvDH&9UD5Zat7Ujqac^ekF6z5c@-vR9#V_9F8O z|JAnKPoXG<&c%!E+ySdhtOKbN3Y{x~I`ILkI;;bs3ksbZ4KGy1 za{!#1%FA6v_q<&;?B9%xU&7CBS6yK*wlEt4&Rfr#+g6aa-tL8}W|uxL54el|3`Fu4 zxUiKZ%DanhbMASx%!NhyHPF5Uf_Ef6Hu$RpV2qJmWTTVuSxx5Sa75D3;7U1U!MqvcxbZ6L4`%-6219-ztO%6kHoqop7qDGkF}qInr}k zySll;sdX;st+j8^?Zi0v)_mzsyN;3HhB$z8cvW9Qz_QF_vYG2#@Eo%Ga6dYdw`lW+ zNyR>Pi4@Z~g%8>0{@Cw=;+P*MLxMfQx_LKPE6Z^XM6@$e$bKi+n!y%k zvYr2_KdByvyH8=ni|8;+ju2G<>U;dF6S3P*fKKCGEAO*&T#aesfOBv z*j8HyM;5z@Kx58E4chZONjD*{YhSop`nVuvkY6FK9DCdTAg1nEj1nM{rWaESU7^ZirH{20b$*l6q|`sZ^rR;|3N~fze}i~^v@DPp|aPcE_c!F zv%A;$-?U^&X*U7q;fp^SA84FGJ9$|;o+UN=-Mip|aHSYq$m>X*_EFh0w6`2s3~3E{ zA?hg3(Z7o&^UI=tu^v=P;h*JFeWnegl4d%MRST2YTeJNwdG+;?viK3i(BVTf5Ba}w zYTbHXrel0n@QG}6C}L&_Uhs0|q*JGz-Kfc{xbTUXsV)wy#aDjc+RmC8A8wcpwNoyc zzM{lMC$IZHB}@DbO2Uh!Uo82?#y<6mu2jJuISG0NH^X$>qq5fTafq+JJC9^WZ|Rsh z>1X*0shFR+K0Qr$E?m?)j%#ZC6#dM_ItP;nv7TB~rxsU=KKs%y4vpMu{y_IGzT@Ok zyZkvfeF+%XeG$RtmA6Y1=>xYlJ2&%>A6h#B2%r`N@88o_jw zm^O>Sx1qOsm>iXFU05NLem9{%=wABoE+Hc;`_H=9daCO}BeEwHoBT?0>HQBw)y~)Y z#yX4D%*^c?CbNwTqav=dklW%y;rS)zflt-$&+%!_Qqsu57*M%TkuG zj6U>zEpRwB*3QpI|H3}05Wnmehc-(2uIO@muErPIf?AIaW#jWtUXWV~#C|WX!ph%` zTIJdd^F$Mmv-tN@sv#iS1T)${DDT%F)L$G|1}gK<%9Fct0rp9XsT{|#Qv>N+tT^0| zdVho1um5@f9*slA$U|1v2Ph?_HtEml%7$G zFtvJzsYzYu9@41J%q*54*g}*&OVE3=B+}B&E|B1raNt0`UDJ?>jj-M5Rh@?FjUra| z_t;TE(U=IvoA;i=`?AMj$&a~+9Q-DIBkX$Z^;*kgnaOFzr-zdxFdIYS9!dc$bBywlA{rDP7%#en}S;9(}#rl=sEkYSS=<^gj!U3xCwqd!se>^;*R*AsQ_GyrPC-mqn4b89zU2O(FWG-FdZ=DL`S^?o)0|S6F18~8!Stsl; z=v=B7M=$FH6hjYo?F%}`Bps7Cekdn3H>f&7a~bx1E~HL4>$JXbhY#xmxA_eDr|ilC zNl^8h3f7Nnw4`a1X52DV>BN+9bqt}de75rj=MRU!7kxYneS9?em~V;~r}#p%{EfrU zRDTGM>FbBLyh(}qtbXTn41==W7iw{~(oq|BUB%Y&3;K_EVq|6oGdx87vsIeYm8WfV zJF*WXeCxh6l(5MUFR>W3(Ti#N$Qsin7j;d zXNyH~PjR!w*&}$+HpDGD!hI9bKWI???;3L{koLc>8*bq zRe^K9eOmwBv5Ii%Mk)W#Pf91W&DidSwUn6W-cZT#lel4$;QgRHBJz-0@o?OtNU@ol zM1i8fxfMp4m&eY$ZGZnIZBz4k7~K=Sr8LGmeNFJ|P5ckYVev)K;=giyJ>TI%Mp=FIS)x z+2Ix>6x#>aDVhstUcW?e8!~BkuW;G(N@GIz)KWQ1?%9G*pJdctMjrKfC7#dwqT(#H z_U7Jwec1YDDqg%x#a`LW+oDBAqKO}^&O|4#HK*ZGShWf-PEm(Wzao+8e`QpeKai))zv&gaS1vrH0)~Joj%^JQ^XQ7q(+Q`i zi2a{g!j!1#^PWXNk2hjul@1jWSKWLn;;Mk>3wZUd+}P(?%Qs^Dl<3tfoBD4htTfFY z@O7r`TT)HC&1PIsxvV6fp5R(VClrRHhNe+i`(KbLeLEQ|!mh{U&d*}*;xY2_>@vn3R13^4%qEuo@A$4n1Rsy-qj!5{ z@acWqXyIg^hr;O-E2D4ym$w}Z;w;0yXs;W2S%j&@zf15~e5UC$rh8JfO_1TW%*hkS zKl*-}g#~S^x9Tt9Td_fQkBouX%87`!AF4Gf`? zdu9AAr&tz4X&8&W&kE7RikWj5(OtA2z8s}dIp%VrWtfH)ei$*>buH<6x2NON3)hbh zzh?6$ve=6~dF%bf`X!dp8h1eD4^sXCouRV-Vzkf#`tBL&Jww%3;X&ue;-0J)y$2EX zMxst{`zXDolUM8244cpSrH2k2?2ozRFM2vVV@KBIplHVC1$r8f*r=x4+S!rwPv7oO z8C)JOSOeArahR+xetFaW>Pq|PW~Ju6X~`UAAAEaQzAgEfo-f11w2Sb!5-$gd+oD_; z4xPHus!1Y{GkdD4mId-Qlf8(hnP+fO z{-^`wdRfGUy7Uzvn8z!p^y@QQz|un&DVLfDhi(W|eHno~_cxo?ihPJau5ra!W2d>- zqjp5PWT%{oauC3TesqwJ#JGal$p@B(B!`ufimgwEfY$Pk{k_RWJG^6); z=0I4?ZR&Hf(%(K`m{AGdu-9@q`=}>EQCZ}f$ycS|?_W~|O~y?X3clYtP*7@!UKAQj zk~H0zsjQY_4so~w5ZuLU5phG%_wz3tJ!^M36|uT^gPD^p2j zQMR^c<5?O9{FFa5MHd%C@owfq^CB2_;;~~>u$vST?-w<;^o5ptqP|_3eUTP*?D%cL zTZ4w7X8SGvs4E$>Vh81D}QM0ACO({U$hk}4+Um%QU%wfWaO_% z$;(n&v4`zHEs?qhnC{ZBw^9^pymvvSes;A4e!y8S4L6I-AMXAK=2iF?$P1Mz0T3=< zmV)gbrx?Se9W809UG*-!R8xZMJkzJo6opKIMTe4tAJ_-R3*Xt>Ak2BDAR(ORj6f2_ z)7H_8RFFeMoGpKl=MPA!2>lmhYMT;Upwu3kuH>sb2SS@gv3L0+yod%;UuXrhd{RXe zL&|D%#w8LgJ^PXEG?wep84<}Zu9nt2+JVgjRBD}eGDqdH&ej7?`Ze7~!Xf4C!99b);nTtQiw~h_Fgeur);lxuFgdm# z)b4=>ug4u?^!-a49An*<9pqh)Gv=@h*s=J;r1PZiRpuC3c=f|2W3glFG<@A+z1j+; zlo%e=@>yU{`|Q=>E%}qL%F0>@ubYOm`vZ>8U%%;Stldgq^0M4cgMRp`(qNXVx)6i% z#vj`HC!~`37w#x`rTk8V6w|yM4VRQ~z@heW;qy;R5Q!%T-<|KS5V~$I^Tt%dz2%tk z&6PK&-5+N7CEI1}u&h5Bj~DzVQg*fPxi2^8^KkEr0tGL`v2aHDD#!~qSH@-Ro~7e~ zS8C3r!j`eDWyWk8y!&_dPrt}|Ze&Ht91)iDjpMrk>ZlPiYt!RkDIL9wwDI&+7OjUz zOKSXh#J@c?Nt$ypW+1}+DS2;(Db5#0oEi15q0%`>unBbPRJ$=hJF6w{aZhokD=;E3 zvHc*$sjG@vYRH?oTji5e2}ceqD)r^PlCEObo7C1HF)VHBOg%NS301N8e0-VZ#pOL~ zC`#e`sG75(Y9BjmB&donlzUoV+)A=JT173-u<`b)z~?2a`8EURft{x5&vsXwp2V(y znPK@noXTz`=xmdA<3lk{fwj<|NMXU_Yx4(F{E395|Hb4^^>S$>wKP+!Ss1TTjnBe6 zd(H^$4C31PtqsvHoLc(Fk<1u#O7z2_6?)|P((KgM2`I$RIkX1?P_WpH1x;D&J5Ys>y(VV5RW zZl>A<_6Sj?i@LPLT$iX6^9Vk*`sLI6pFU%mlp`A9S6rF%u0|bx3UjXdZl3gxg=!!F zvlkTy%!~>o*!DTfozm^BF*y-fUSdw*D>_idq_GkH>Fx{t$7$8K;cq%6Ck|g7_=Af6 zfI9!?ze?*-IT#^4(T6~h{nJfHpj-W&y`Ca>KeMEe8Z$Uy(a>`wP`%N@Xa zxN-(LshVm2azVNXl@EBt>Cg1f;vBTUr>(@?c>dWIdqBy#rEKE#eZ5%66W*> z9V}1ukd1k>-6vxYQiYd2S=D^QFelh^=vCD5p?Lk5dM75h<5H%5{T@S98%83BzcjUS zJv#gG#M>{oVij4X*sp$xy_@wkD2AQ(wEa0lS;jZbpM5mt>LQiW5-RKAmQ<~Up|9WM z=vT1XQcP2t4JwbzUJQN=sY4%mw7yOIe#czl?|PH{6M4w}i>R;aB_)=6DW)MjLx6Cg zyHW8-wCMB`0wQNRRe*Y5s#o)ebZZ(G>7WZu{NZs$LOZgN8sZ@@4)|y`NQuMcF9h8` zWpKez?M9N0$VVFU^P7G9Rrqvmf|Hvb2q2?drl~OcHwxURDHir#KWJ9SWL=O0EET>< zE!W_~F}W^f9scZG%608I3L5s!uUm*k7{e%6i)xI(;I+r$szc^M7X5o{ss2R zMYS>m%{z^G5zI*4)%ii?(!PrqfOwgp)+M}^ERkkW6UP?JVG%uetqm1v!p5bX%xtE?f&!M+1=^Fhu zmdBQ*Ir}O~ulaK@M?6=L3%V1Tm6Qgr!o}<&8znx2EV%z01%*$2taAB%3rf&!dm_+%dzu5#^34A^~u*c`Tli2ztbgGb1@4O`%-1WPP&$j+<|@i<&^uwN}(OD zV@J9T&K7Zc$e+Ju>g44kh_Z zD$Ax!opL&y^VCJ?)Ma0ERQL~a$DHUcckO3~1c&6N_J04@%V#e}E_iR{q5eW`K`j>Y zTz(tOkHg`Gz)pm04=??ewR)Y!?1CHOfVxv=d zU$iCH!P){h7BkT{utUQEK}R?ssB}B&SMb}^tFQL&Uv(M|_Z+@=nnccd=te|dpLqI) z>)nELwbKW@c0D@!K~`h#Wl`zto`sH;o`=U(epKwq>JaSU6OltW4ZKm=R6k;G;)EUP z;WovNeM=SxwOc&*&(6*T95k)Yuk5>MN@Trg@K0)al1+wcNXEkalI=A^59aS`@`=p3 zRI_1XK~?|BQ|hfsFO~-FoEh|HXU>)hf$KLv{qpGOre)go-oE456=@B;jD)<7L+YFh zTrZz@9C4()eTgjh<|p-Y&N?r5%M9;YxYs%U<#dNl`TY+*?0uVjaET0w-u26ojyE1h zOBX$R^pHM$c12_GhMDIQpJiY9)aF{;`@TId{w#4?pEhpKQF~jtK)XV_eU_kf)+-00 zopy!ft6Yz6lDHvzQrBc?tF{*wh|9{IqkezYJ@m;J%PlCvLLSX@E=b6EBMQWv>|%=^L6V3hQ3+^YQ~_mt5}c^!RO2(C}q0(^hTiv(8hhC{DY} zvpsffQ%J#@Bdfk9v;H_9@8mo?Z~DOG^`jP_A5PqRc&h(}f?MA`$Xj)KVZIf+i-p-( z$oM#r&ivy`b6O-+K*sm<9qUV!rnvk3Hf){Vp0V9`+tE5nBicAJDm3NN@};3g4VpK{ zH{G%4*M2HpdcI4=H};L9W#jjjgt^>&o>2i6)ts~uJ2fDw_bh}qy`U|^v zY;m>pMvsP>hkbJVD-O&!@9NNN(oON8Si4a`Vg#{T}%3b+w2-}m_2H6F`Imqj6XM62k!qL`wpV@yZ?)jO60iBc6-`1i; zZ||z4!Csn}`ph-%Tl+oK79t7!QP>X^Cw{3)8lc(zfY%kcPv- zX;np`RW!x>grqwhv%NCON!0DzpBrY_I1Ju#u470SaeBVG$8a@sJg5%to@If$g`|+* zhF4siBCZJN^WY|qY%FW{kjF+habj5bj!9&$TSP>=-a}-Mr@3rd*3U~4qTXrcH>Pa& zoId+UEq7n+Zrg6tTKne~ShA45@p=F3=X^3p+NHr32Fzew+=9WKN3TeKu&}`G_^NkJ zgYTAJn-jIJeX+Kp)_32Js>;D5zv!{mr8c~8RMDY}*K@nA%FR4uTXTPMb=Td3URn!0 zS;$=|b{phG2Mg`sjIQCe(|fGnO6S=#ukNv|+EyqY&TJ z9ItJs?p0r&%dN{k?x{{Yd7^|kxL%tfTe0{D`IeJbx!zU*)z|h02lR5Tx=|1^?8v#Kj;;~VLpej}FYWE*bfboYJnHL(--8 zF*_z~EUZ1RJla&)Dg58>t#*tH%{G@0h@!>+g?^SO1$8ME8bpj1tEKwZjZB1!Cj;9qlV zCX2w#O;af)YQ)C*qKHL|QNXPCnUEkxMBHbIaZ&~1!Vz4mRHa0OQUP<*e5zy-nmCmd z+A?Lb3jUX;KwAxL6KZJ+U=UJfC_*6z1iVrvApr~$frv@K%6*UCn1tWL>QWg2-1k-x|U^}mk8fdrWg_R59ryMQA=JPwZ~gdBt~AQ1)bn*;Y4aiM`v{2ce^zy(XD z=J0X<|5jLr=N#yZ3m(HzXt;C3Cb0knTqrP*P=NTbk>i2A(?Fb$3r!(PNVA|I9?e5E z4THb}VdAfss*$=E}en zu$*vRL=(u9$GGu#c|ZO37MEUX~Y=NQ@W+@Ecn9n9B^3(>%Rc8Em&(20~p==7xph^1qgj4p6b6URbM zLrj#%;LHYAAQlxQQ31+i2(-+6^idzYeG75`{5}BZZ^IzbN{m-(;^omOh2tggqC8NX zMw6%>K@bVekGzzsST_~{30F+A1bzo#jFlK8L(yW%JfNZ<0eUjS%aw{iEZ$*(BPf!h zNgC2U5*9z-ljIL2$)RpWa+$A^%2?nS`7DTF`VRys8Vp^AnqfHC!yly3!)Un13Z`WO zqrf?s!LSLN^y5H~G=*^?(=vnMmD>szzVJYmCNP|qw1#mx6kd}i{V39OJm`lFw^cuy z!-L>x3d0e@1V#z*T5pZZE(^rL { + await new Promise(resolve => setTimeout(resolve, 5000)); console.log("Bot spawned. Starting task..."); + // initiate the world according to the construction or cooking world const usernames = args.usernames; - const task = taskData[selectedTaskId]; - const inventory = task.initial_inventory; + bot.chat(`/tp andy ${usernames[0]}`); + await new Promise(resolve => setTimeout(resolve, 5000)); + console.log(taskData); + console.log(task_id); + const task = taskData[task_id]; + console.log(task); // give the items to the users for (let i = 0; i < usernames.length; i++) { const user = usernames[i]; - const userInventory = inventory[i]; + bot.chat(`/clear ${user}`); + let userInventory = null; + if (task.initial_inventory) { + userInventory = task.initial_inventory[i]; + } if (userInventory) { for (const item in userInventory) { @@ -64,28 +81,51 @@ bot.on('spawn', async () => { } else { console.log(`No inventory found for user: ${user}`); } + let validator = null; if (task.type === "techtree" ) { bot.chat(`/tell ${user} You have the goal to ${task.goal}`); } if (task.type === "construction") { + console.log(task.blueprint); + const blueprint = new Blueprint(task.blueprint); + console.log(blueprint); + const result = blueprint.autoDelete(); + const commands = result.commands; + for (const command of commands) { + bot.chat(command); + } + bot.chat(`/tp @a ${task.blueprint.levels[0].coordinates[0]} ${task.blueprint.levels[0].coordinates[1]} ${task.blueprint.levels[0].coordinates[2]}`); bot.chat(`/tell ${user} You have the goal to ${task.goal}`); //todo: some sort of blueprint visualizer } if (task.type === "cooking") { + if (i === 0) { + const cooking_initiator = new CookingTaskInitiator(task, bot); + cooking_initiator.init(); + console.log("Cooking task initiated"); + } + await new Promise(resolve => setTimeout(resolve, 20000)); const user_goal = task.goal[i]; - bot.chat(`/tell ${user} You have the goal to ${user_goal}`); + bot.chat(`You have the goal to ${user_goal}`); } - } const timeout = task.timeout; - // wait timeout seconds and then crash the task - setTimeout(() => { - bot.chat(`/tell ${usernames} Time is up!`); - bot.quit(); - }, timeout * 1000); + console.log(`Timeout set to ${timeout} seconds`); + await new Promise(resolve => setTimeout(resolve, timeout * 1000)); + if (task.type === "construction") { + const blueprint = new Blueprint(task.blueprint); + const check = blueprint.explainBlueprintDifference(bot); + console.log(check); + const agent = new Agent(bot); + const validator = new ConstructionTaskValidator(task, agent); + const result = validator.validate(); + console.log(result); + bot.chat(`Score is ${result.score}`); + } + bot.chat(`Time is up!`); }); // give required information to the users in some way // do some automatic timer sort of thing to give the users time to do the task From 83a2d0f22fe5a5e3023fd5bc50e241c77aac7f2f Mon Sep 17 00:00:00 2001 From: Ayush Maniar Date: Fri, 2 May 2025 13:07:56 -0700 Subject: [PATCH 012/101] Added file for cooking task generation --- tasks/cooking_tasks/hells_kitchen_tasks.py | 495 +++++++++++++++++++++ 1 file changed, 495 insertions(+) create mode 100644 tasks/cooking_tasks/hells_kitchen_tasks.py diff --git a/tasks/cooking_tasks/hells_kitchen_tasks.py b/tasks/cooking_tasks/hells_kitchen_tasks.py new file mode 100644 index 0000000..c4a6247 --- /dev/null +++ b/tasks/cooking_tasks/hells_kitchen_tasks.py @@ -0,0 +1,495 @@ +import random +import json +from typing import Dict, List, Any, Tuple, Set +from collections import Counter, defaultdict + +# Define your COOKING_ITEMS dictionary here +# This is where you should put your complete COOKING_ITEMS dictionary +COOKING_ITEMS = { +# Cooked Meats +"cooked_mutton": { + "recipe": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "description": "Cooked mutton meat", + "complexity": "easy" +}, +"cooked_beef": { + "recipe": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ], + "description": "Cooked beef meat", + "complexity": "easy" +}, +"cooked_porkchop": { + "recipe": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ], + "description": "Cooked porkchop", + "complexity": "easy" +}, +"cooked_chicken": { + "recipe": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "description": "Cooked chicken meat", + "complexity": "easy" +}, +"cooked_rabbit": { + "recipe": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "description": "Cooked rabbit meat", + "complexity": "easy" +}, + +# Soups and Stews +"beetroot_soup": { + "recipe": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "description": "A hearty beetroot soup", + "complexity": "medium" +}, +"mushroom_stew": { + "recipe": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "description": "A warm mushroom stew", + "complexity": "medium" +}, +"rabbit_stew": { + "recipe": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "description": "A hearty rabbit stew", + "complexity": "hard" +}, +"suspicious_stew": { + "recipe": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "description": "A mysterious stew with special effects", + "complexity": "medium" +}, + +# Baked Goods +"baked_potato": { + "recipe": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "description": "A simple baked potato", + "complexity": "easy" +}, +"bread": { + "recipe": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "description": "Fresh bread", + "complexity": "medium" +}, +"cake": { + "recipe": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets (already filled with milk).", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "description": "A delicious cake", + "complexity": "hard" +}, +"cookie": { + "recipe": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "description": "Sweet cookies", + "complexity": "medium" +}, +"pumpkin_pie": { + "recipe": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "description": "Delicious pumpkin pie", + "complexity": "hard" +}, + +# Sweet Foods +"golden_apple": { + "recipe": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "description": "A magical golden apple", + "complexity": "hard" +}, + +# Special Foods +"golden_carrot": { + "recipe": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "description": "A magical golden carrot", + "complexity": "hard" +}, + +} + +def generate_task_id(task: Dict[str, Any]) -> str: + """ + Generate a standardized task ID based on target items and blocked access. + + Format: multiagent_cooking_{quantities}_{blocked_info} + Examples: + - multiagent_cooking_1_cooked_rabbit + - multiagent_cooking_1_cooked_rabbit_blocked_access_0 + - multiagent_cooking_1_cake_1_cookie_blocked_access_0_1 + + Args: + task: Task dictionary with target and blocked_access_to_recipe information + + Returns: + Standardized task ID string + """ + # Generate the quantities part (e.g., "1_cake_1_cookie") + quantities = [] + for item, count in sorted(task["target"].items()): + quantities.append(f"{count}_{item}") + + quantities_str = "_".join(quantities) + + # Generate the blocked access part if any (e.g., "blocked_access_0_1") + blocked_str = "" + if task["blocked_access_to_recipe"]: + # Sort to ensure consistent ordering + sorted_blocked = sorted(task["blocked_access_to_recipe"]) + blocked_str = f"_blocked_access_{'_'.join(sorted_blocked)}" + + # Combine everything + return f"multiagent_cooking_{quantities_str}{blocked_str}" + +def generate_hells_kitchen_task_id(task: Dict[str, Any]) -> str: + """ + Generate a standardized task ID for Hell's Kitchen tasks. + + Format: multiagent_cooking_{quantities}_hells_kitchen + Examples: + - multiagent_cooking_cooked_mutton_cooked_beef_hells_kitchen + + Args: + task: Task dictionary with target information + + Returns: + Standardized task ID string + """ + # Generate the quantities part (e.g., "cooked_mutton_cooked_beef") + quantities = "_".join(task["target"]) + + # Combine everything with hells_kitchen suffix + return f"multiagent_cooking_{quantities}_hells_kitchen" + +def generate_hells_kitchen_task() -> Dict[str, Any]: + """Generate a single Hell's Kitchen task where agents have recipes for each other's items.""" + # Select two different items + selected_items = random.sample(list(COOKING_ITEMS.keys()), 2) + + # Assign one item to each agent + agent0_target = selected_items[0] + agent1_target = selected_items[1] + + # Combined target for the overall task as a list + combined_target = [agent0_target, agent1_target] + + # Get recipes for both items + recipes = {} + for item in selected_items: + recipes[item] = COOKING_ITEMS[item]["recipe"] + + # Create different goal strings for each agent + goals = {} + + # Agent 0 has the recipe for Agent 1's target item + recipe_for_agent1 = "\n".join(recipes[selected_items[1]]) + goals["0"] = ( + f"You need to make {selected_items[0]}, but you don't have the recipe for it, your partner has it!\n\n" + f"Your partner needs to make {selected_items[1]}. You have their recipe:\n" + f"Recipe for {selected_items[1]}:\n{recipe_for_agent1}\n\n" + f"You must communicate effectively to exchange recipe information and complete both dishes." + f" Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + ) + + # Agent 1 has the recipe for Agent 0's target item + recipe_for_agent0 = "\n".join(recipes[selected_items[0]]) + goals["1"] = ( + f"You need to make {selected_items[1]}, but you don't have the recipe for it, your partner has it!\n\n" + f"Your partner needs to make {selected_items[0]}. You have their recipe:\n" + f"Recipe for {selected_items[0]}:\n{recipe_for_agent0}\n\n" + f"You must communicate effectively to exchange recipe information and complete both dishes." + f" Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + ) + + # Create a Hell's Kitchen themed conversation starter + conversation = ( + f"We need to make {selected_items[0]} and {selected_items[1]} together. You are supposed to make {selected_items[1]} and I am supposed to make {selected_items[0]}, " + f"but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!" + ) + + task_data = { + "conversation": conversation, + "agent_count": 2, + "target": combined_target, + "type": "cooking", + "timeout": 300, + "recipes": recipes, + "blocked_access_to_recipe": [], # No blocked access - it's just switched + "goal": goals, + "task_type": "cooking" # Mark as Hell's Kitchen task + } + + # Generate a Hell's Kitchen task ID + task_id = generate_hells_kitchen_task_id(task_data) + + return {task_id: task_data} + +def calculate_hells_kitchen_task_difficulty_metrics(task: Dict) -> Dict[str, Any]: + """Calculate detailed difficulty metrics for a Hell's Kitchen task.""" + # Get all recipes + recipes = task["recipes"] + + # Calculate recipe step metrics + total_steps = sum(len(steps) for steps in recipes.values()) + max_steps_per_recipe = max(len(steps) for steps in recipes.values()) if recipes else 0 + + # Get number of target items + num_unique_items = len(task["target"]) + + # Calculate overall difficulty score + difficulty_score = 0 + + # Add score based on total steps + if total_steps <= 4: + step_difficulty = 1 # Easy + elif total_steps <= 8: + step_difficulty = 2 # Medium + else: + step_difficulty = 3 # Hard + + difficulty_score += step_difficulty + + # Add score based on number of items + item_difficulty = num_unique_items + difficulty_score += item_difficulty + + # Hell's Kitchen tasks are inherently more difficult due to communication requirements + # Add a communication difficulty factor + difficulty_score += 1 + + # Determine final difficulty category + if difficulty_score <= 3: + difficulty_category = "easy" + elif difficulty_score <= 5: + difficulty_category = "medium" + else: + difficulty_category = "hard" + + # Compile all metrics into a dictionary + difficulty_metrics = { + "total_recipe_steps": total_steps, + "max_steps_per_recipe": max_steps_per_recipe, + "unique_target_items": num_unique_items, + "overall_difficulty_score": difficulty_score, + "difficulty_category": difficulty_category + } + + return difficulty_metrics + +def generate_maximum_hells_kitchen_tasks( + num_train_tasks: int, + num_test_tasks: int +) -> Tuple[Dict[str, Dict], Dict[str, Dict]]: + """ + Generate as many Hell's Kitchen tasks as specified, without balancing difficulty. + + Args: + num_train_tasks: Exact number of training tasks to generate + num_test_tasks: Exact number of test tasks to generate + + Returns: + Tuple of (train_tasks, test_tasks) + """ + # Get all available cooking items + all_items = list(COOKING_ITEMS.keys()) + + # Fixed test items as specified in your original code + hk_test_items = {"cooked_mutton", "baked_potato", "cake", "golden_carrot", "mushroom_stew", "bread"} + hk_train_items = set(all_items) - hk_test_items + + # Set fixed seed for consistent results + random.seed(42) + + # Generate tasks for training set + train_tasks = {} + while len(train_tasks) < num_train_tasks: + task = generate_hells_kitchen_task() + task_id, task_data = list(task.items())[0] + + # Check if task uses valid items for train set + task_items = set(task_data["target"]) + if task_items.issubset(hk_train_items): + # Still calculate metrics for information but don't filter by them + task_data["difficulty_metrics"] = calculate_hells_kitchen_task_difficulty_metrics(task_data) + task_data["difficulty"] = task_data["difficulty_metrics"]["difficulty_category"] + train_tasks[task_id] = task_data + + # Generate tasks for test set + test_tasks = {} + while len(test_tasks) < num_test_tasks: + task = generate_hells_kitchen_task() + task_id, task_data = list(task.items())[0] + + # Check if task uses valid items for test set + task_items = set(task_data["target"]) + if task_items.issubset(hk_test_items): + # Still calculate metrics for information but don't filter by them + task_data["difficulty_metrics"] = calculate_hells_kitchen_task_difficulty_metrics(task_data) + task_data["difficulty"] = task_data["difficulty_metrics"]["difficulty_category"] + test_tasks[task_id] = task_data + + return train_tasks, test_tasks + + + +def analyze_task_split(train_tasks, test_tasks): + """Analyze and print statistics about the train/test split with detailed difficulty metrics.""" + # Count total tasks + train_count = len(train_tasks) + test_count = len(test_tasks) + + # Count difficulty distribution by category + train_difficulty = Counter(task["difficulty"] for task in train_tasks.values()) + test_difficulty = Counter(task["difficulty"] for task in test_tasks.values()) + + # Analyze quantitative difficulty metrics + train_metrics = { + "total_recipe_steps": [], + "unique_target_items": [], + "overall_difficulty_score": [] + } + + test_metrics = { + "total_recipe_steps": [], + "unique_target_items": [], + "overall_difficulty_score": [] + } + + # Collect metrics from tasks + for task in train_tasks.values(): + for metric in train_metrics: + if metric in task["difficulty_metrics"]: + train_metrics[metric].append(task["difficulty_metrics"][metric]) + + for task in test_tasks.values(): + for metric in test_metrics: + if metric in task["difficulty_metrics"]: + test_metrics[metric].append(task["difficulty_metrics"][metric]) + + # Calculate statistics for each metric + train_stats = {} + test_stats = {} + + for metric in train_metrics: + values = train_metrics[metric] + if values: + train_stats[metric] = { + "min": min(values), + "max": max(values), + "mean": sum(values) / len(values), + "median": sorted(values)[len(values)//2] + } + + for metric in test_metrics: + values = test_metrics[metric] + if values: + test_stats[metric] = { + "min": min(values), + "max": max(values), + "mean": sum(values) / len(values), + "median": sorted(values)[len(values)//2] + } + + # Get items in each set + train_items = set() + test_items = set() + + for task in train_tasks.values(): + train_items.update(task["target"]) + + for task in test_tasks.values(): + test_items.update(task["target"]) + + # Check for item overlap + item_overlap = train_items.intersection(test_items) + + # Compile the results + result = { + "train_count": train_count, + "test_count": test_count, + "train_difficulty_categories": dict(train_difficulty), + "test_difficulty_categories": dict(test_difficulty), + "train_difficulty_metrics": train_stats, + "test_difficulty_metrics": test_stats, + "train_items": list(train_items), + "test_items": list(test_items), + "item_overlap": list(item_overlap), + "is_valid_items_split": len(item_overlap) == 0 + } + + return result + +# Example usage +if __name__ == "__main__": + hk_train_tasks, hk_test_tasks = generate_maximum_hells_kitchen_tasks( + num_train_tasks=90, + num_test_tasks=30 + ) + + # Save Hell's Kitchen tasks to separate files + with open("hells_kitchen_train_tasks.json", "w") as f: + json.dump(hk_train_tasks, f, indent=2) + + with open("hells_kitchen_test_tasks.json", "w") as f: + json.dump(hk_test_tasks, f, indent=2) + + # Print counts + print(f"Generated {len(hk_train_tasks)} training tasks") + print(f"Generated {len(hk_test_tasks)} test tasks") + + # You can still analyze the distribution if interested + hk_analysis = analyze_task_split(hk_train_tasks, hk_test_tasks) + print("\nHell's Kitchen Tasks Analysis:") + print(json.dumps(hk_analysis, indent=2)) \ No newline at end of file From e4eb595a8bbd766292f7495d456d33abdd5a266e Mon Sep 17 00:00:00 2001 From: Ayush Maniar Date: Fri, 2 May 2025 13:09:19 -0700 Subject: [PATCH 013/101] Added code for cooking tasks generation (with dictionary for cooking_items) --- tasks/cooking_tasks/hells_kitchen_tasks.py | 495 +++++++++++++++++++++ 1 file changed, 495 insertions(+) create mode 100644 tasks/cooking_tasks/hells_kitchen_tasks.py diff --git a/tasks/cooking_tasks/hells_kitchen_tasks.py b/tasks/cooking_tasks/hells_kitchen_tasks.py new file mode 100644 index 0000000..c4a6247 --- /dev/null +++ b/tasks/cooking_tasks/hells_kitchen_tasks.py @@ -0,0 +1,495 @@ +import random +import json +from typing import Dict, List, Any, Tuple, Set +from collections import Counter, defaultdict + +# Define your COOKING_ITEMS dictionary here +# This is where you should put your complete COOKING_ITEMS dictionary +COOKING_ITEMS = { +# Cooked Meats +"cooked_mutton": { + "recipe": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Go to furnace and use it to cook the mutton." + ], + "description": "Cooked mutton meat", + "complexity": "easy" +}, +"cooked_beef": { + "recipe": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ], + "description": "Cooked beef meat", + "complexity": "easy" +}, +"cooked_porkchop": { + "recipe": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Go to furnace and use it to cook the porkchop." + ], + "description": "Cooked porkchop", + "complexity": "easy" +}, +"cooked_chicken": { + "recipe": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Go to furnace and use it to cook the raw chicken." + ], + "description": "Cooked chicken meat", + "complexity": "easy" +}, +"cooked_rabbit": { + "recipe": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "description": "Cooked rabbit meat", + "complexity": "easy" +}, + +# Soups and Stews +"beetroot_soup": { + "recipe": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "description": "A hearty beetroot soup", + "complexity": "medium" +}, +"mushroom_stew": { + "recipe": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "description": "A warm mushroom stew", + "complexity": "medium" +}, +"rabbit_stew": { + "recipe": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "description": "A hearty rabbit stew", + "complexity": "hard" +}, +"suspicious_stew": { + "recipe": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: Go to the chest and grab a bowl and 1 dandelion", + "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "description": "A mysterious stew with special effects", + "complexity": "medium" +}, + +# Baked Goods +"baked_potato": { + "recipe": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "description": "A simple baked potato", + "complexity": "easy" +}, +"bread": { + "recipe": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "description": "Fresh bread", + "complexity": "medium" +}, +"cake": { + "recipe": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets (already filled with milk).", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "description": "A delicious cake", + "complexity": "hard" +}, +"cookie": { + "recipe": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "description": "Sweet cookies", + "complexity": "medium" +}, +"pumpkin_pie": { + "recipe": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Go to the chest and grab 1 egg.", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "description": "Delicious pumpkin pie", + "complexity": "hard" +}, + +# Sweet Foods +"golden_apple": { + "recipe": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "description": "A magical golden apple", + "complexity": "hard" +}, + +# Special Foods +"golden_carrot": { + "recipe": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "description": "A magical golden carrot", + "complexity": "hard" +}, + +} + +def generate_task_id(task: Dict[str, Any]) -> str: + """ + Generate a standardized task ID based on target items and blocked access. + + Format: multiagent_cooking_{quantities}_{blocked_info} + Examples: + - multiagent_cooking_1_cooked_rabbit + - multiagent_cooking_1_cooked_rabbit_blocked_access_0 + - multiagent_cooking_1_cake_1_cookie_blocked_access_0_1 + + Args: + task: Task dictionary with target and blocked_access_to_recipe information + + Returns: + Standardized task ID string + """ + # Generate the quantities part (e.g., "1_cake_1_cookie") + quantities = [] + for item, count in sorted(task["target"].items()): + quantities.append(f"{count}_{item}") + + quantities_str = "_".join(quantities) + + # Generate the blocked access part if any (e.g., "blocked_access_0_1") + blocked_str = "" + if task["blocked_access_to_recipe"]: + # Sort to ensure consistent ordering + sorted_blocked = sorted(task["blocked_access_to_recipe"]) + blocked_str = f"_blocked_access_{'_'.join(sorted_blocked)}" + + # Combine everything + return f"multiagent_cooking_{quantities_str}{blocked_str}" + +def generate_hells_kitchen_task_id(task: Dict[str, Any]) -> str: + """ + Generate a standardized task ID for Hell's Kitchen tasks. + + Format: multiagent_cooking_{quantities}_hells_kitchen + Examples: + - multiagent_cooking_cooked_mutton_cooked_beef_hells_kitchen + + Args: + task: Task dictionary with target information + + Returns: + Standardized task ID string + """ + # Generate the quantities part (e.g., "cooked_mutton_cooked_beef") + quantities = "_".join(task["target"]) + + # Combine everything with hells_kitchen suffix + return f"multiagent_cooking_{quantities}_hells_kitchen" + +def generate_hells_kitchen_task() -> Dict[str, Any]: + """Generate a single Hell's Kitchen task where agents have recipes for each other's items.""" + # Select two different items + selected_items = random.sample(list(COOKING_ITEMS.keys()), 2) + + # Assign one item to each agent + agent0_target = selected_items[0] + agent1_target = selected_items[1] + + # Combined target for the overall task as a list + combined_target = [agent0_target, agent1_target] + + # Get recipes for both items + recipes = {} + for item in selected_items: + recipes[item] = COOKING_ITEMS[item]["recipe"] + + # Create different goal strings for each agent + goals = {} + + # Agent 0 has the recipe for Agent 1's target item + recipe_for_agent1 = "\n".join(recipes[selected_items[1]]) + goals["0"] = ( + f"You need to make {selected_items[0]}, but you don't have the recipe for it, your partner has it!\n\n" + f"Your partner needs to make {selected_items[1]}. You have their recipe:\n" + f"Recipe for {selected_items[1]}:\n{recipe_for_agent1}\n\n" + f"You must communicate effectively to exchange recipe information and complete both dishes." + f" Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + ) + + # Agent 1 has the recipe for Agent 0's target item + recipe_for_agent0 = "\n".join(recipes[selected_items[0]]) + goals["1"] = ( + f"You need to make {selected_items[1]}, but you don't have the recipe for it, your partner has it!\n\n" + f"Your partner needs to make {selected_items[0]}. You have their recipe:\n" + f"Recipe for {selected_items[0]}:\n{recipe_for_agent0}\n\n" + f"You must communicate effectively to exchange recipe information and complete both dishes." + f" Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + ) + + # Create a Hell's Kitchen themed conversation starter + conversation = ( + f"We need to make {selected_items[0]} and {selected_items[1]} together. You are supposed to make {selected_items[1]} and I am supposed to make {selected_items[0]}, " + f"but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!" + ) + + task_data = { + "conversation": conversation, + "agent_count": 2, + "target": combined_target, + "type": "cooking", + "timeout": 300, + "recipes": recipes, + "blocked_access_to_recipe": [], # No blocked access - it's just switched + "goal": goals, + "task_type": "cooking" # Mark as Hell's Kitchen task + } + + # Generate a Hell's Kitchen task ID + task_id = generate_hells_kitchen_task_id(task_data) + + return {task_id: task_data} + +def calculate_hells_kitchen_task_difficulty_metrics(task: Dict) -> Dict[str, Any]: + """Calculate detailed difficulty metrics for a Hell's Kitchen task.""" + # Get all recipes + recipes = task["recipes"] + + # Calculate recipe step metrics + total_steps = sum(len(steps) for steps in recipes.values()) + max_steps_per_recipe = max(len(steps) for steps in recipes.values()) if recipes else 0 + + # Get number of target items + num_unique_items = len(task["target"]) + + # Calculate overall difficulty score + difficulty_score = 0 + + # Add score based on total steps + if total_steps <= 4: + step_difficulty = 1 # Easy + elif total_steps <= 8: + step_difficulty = 2 # Medium + else: + step_difficulty = 3 # Hard + + difficulty_score += step_difficulty + + # Add score based on number of items + item_difficulty = num_unique_items + difficulty_score += item_difficulty + + # Hell's Kitchen tasks are inherently more difficult due to communication requirements + # Add a communication difficulty factor + difficulty_score += 1 + + # Determine final difficulty category + if difficulty_score <= 3: + difficulty_category = "easy" + elif difficulty_score <= 5: + difficulty_category = "medium" + else: + difficulty_category = "hard" + + # Compile all metrics into a dictionary + difficulty_metrics = { + "total_recipe_steps": total_steps, + "max_steps_per_recipe": max_steps_per_recipe, + "unique_target_items": num_unique_items, + "overall_difficulty_score": difficulty_score, + "difficulty_category": difficulty_category + } + + return difficulty_metrics + +def generate_maximum_hells_kitchen_tasks( + num_train_tasks: int, + num_test_tasks: int +) -> Tuple[Dict[str, Dict], Dict[str, Dict]]: + """ + Generate as many Hell's Kitchen tasks as specified, without balancing difficulty. + + Args: + num_train_tasks: Exact number of training tasks to generate + num_test_tasks: Exact number of test tasks to generate + + Returns: + Tuple of (train_tasks, test_tasks) + """ + # Get all available cooking items + all_items = list(COOKING_ITEMS.keys()) + + # Fixed test items as specified in your original code + hk_test_items = {"cooked_mutton", "baked_potato", "cake", "golden_carrot", "mushroom_stew", "bread"} + hk_train_items = set(all_items) - hk_test_items + + # Set fixed seed for consistent results + random.seed(42) + + # Generate tasks for training set + train_tasks = {} + while len(train_tasks) < num_train_tasks: + task = generate_hells_kitchen_task() + task_id, task_data = list(task.items())[0] + + # Check if task uses valid items for train set + task_items = set(task_data["target"]) + if task_items.issubset(hk_train_items): + # Still calculate metrics for information but don't filter by them + task_data["difficulty_metrics"] = calculate_hells_kitchen_task_difficulty_metrics(task_data) + task_data["difficulty"] = task_data["difficulty_metrics"]["difficulty_category"] + train_tasks[task_id] = task_data + + # Generate tasks for test set + test_tasks = {} + while len(test_tasks) < num_test_tasks: + task = generate_hells_kitchen_task() + task_id, task_data = list(task.items())[0] + + # Check if task uses valid items for test set + task_items = set(task_data["target"]) + if task_items.issubset(hk_test_items): + # Still calculate metrics for information but don't filter by them + task_data["difficulty_metrics"] = calculate_hells_kitchen_task_difficulty_metrics(task_data) + task_data["difficulty"] = task_data["difficulty_metrics"]["difficulty_category"] + test_tasks[task_id] = task_data + + return train_tasks, test_tasks + + + +def analyze_task_split(train_tasks, test_tasks): + """Analyze and print statistics about the train/test split with detailed difficulty metrics.""" + # Count total tasks + train_count = len(train_tasks) + test_count = len(test_tasks) + + # Count difficulty distribution by category + train_difficulty = Counter(task["difficulty"] for task in train_tasks.values()) + test_difficulty = Counter(task["difficulty"] for task in test_tasks.values()) + + # Analyze quantitative difficulty metrics + train_metrics = { + "total_recipe_steps": [], + "unique_target_items": [], + "overall_difficulty_score": [] + } + + test_metrics = { + "total_recipe_steps": [], + "unique_target_items": [], + "overall_difficulty_score": [] + } + + # Collect metrics from tasks + for task in train_tasks.values(): + for metric in train_metrics: + if metric in task["difficulty_metrics"]: + train_metrics[metric].append(task["difficulty_metrics"][metric]) + + for task in test_tasks.values(): + for metric in test_metrics: + if metric in task["difficulty_metrics"]: + test_metrics[metric].append(task["difficulty_metrics"][metric]) + + # Calculate statistics for each metric + train_stats = {} + test_stats = {} + + for metric in train_metrics: + values = train_metrics[metric] + if values: + train_stats[metric] = { + "min": min(values), + "max": max(values), + "mean": sum(values) / len(values), + "median": sorted(values)[len(values)//2] + } + + for metric in test_metrics: + values = test_metrics[metric] + if values: + test_stats[metric] = { + "min": min(values), + "max": max(values), + "mean": sum(values) / len(values), + "median": sorted(values)[len(values)//2] + } + + # Get items in each set + train_items = set() + test_items = set() + + for task in train_tasks.values(): + train_items.update(task["target"]) + + for task in test_tasks.values(): + test_items.update(task["target"]) + + # Check for item overlap + item_overlap = train_items.intersection(test_items) + + # Compile the results + result = { + "train_count": train_count, + "test_count": test_count, + "train_difficulty_categories": dict(train_difficulty), + "test_difficulty_categories": dict(test_difficulty), + "train_difficulty_metrics": train_stats, + "test_difficulty_metrics": test_stats, + "train_items": list(train_items), + "test_items": list(test_items), + "item_overlap": list(item_overlap), + "is_valid_items_split": len(item_overlap) == 0 + } + + return result + +# Example usage +if __name__ == "__main__": + hk_train_tasks, hk_test_tasks = generate_maximum_hells_kitchen_tasks( + num_train_tasks=90, + num_test_tasks=30 + ) + + # Save Hell's Kitchen tasks to separate files + with open("hells_kitchen_train_tasks.json", "w") as f: + json.dump(hk_train_tasks, f, indent=2) + + with open("hells_kitchen_test_tasks.json", "w") as f: + json.dump(hk_test_tasks, f, indent=2) + + # Print counts + print(f"Generated {len(hk_train_tasks)} training tasks") + print(f"Generated {len(hk_test_tasks)} test tasks") + + # You can still analyze the distribution if interested + hk_analysis = analyze_task_split(hk_train_tasks, hk_test_tasks) + print("\nHell's Kitchen Tasks Analysis:") + print(json.dumps(hk_analysis, indent=2)) \ No newline at end of file From fa316e350cd53a3d23c4e7a833d5c85d667eb1ae Mon Sep 17 00:00:00 2001 From: Isadora White Date: Sat, 3 May 2025 15:00:48 -0700 Subject: [PATCH 014/101] fixing human human experiments --- src/agent/tasks/cooking_tasks.js | 116 +- src/agent/tasks/tasks.js | 8 + .../blueprint_visualizer.py | 16 +- .../church_three_agents.pdf | Bin 56886 -> 57057 bytes .../custom/church_one_agent.json | 2 +- .../custom/church_three_agents.json | 1 + .../custom/church_two_agents.json | 2353 +++++++++++++++++ tasks/construction_tasks/custom/pyramid.json | 1 + .../human_ai_tasks/3_agent_1_human.json | 838 +++--- .../human_ai_tasks/3_agent_1_human.json | 1060 ++++++++ tasks/evaluation_script.py | 2 +- tasks/human_evaluation.js | 19 +- 12 files changed, 3907 insertions(+), 509 deletions(-) create mode 100644 tasks/construction_tasks/custom/church_two_agents.json create mode 100644 tasks/crafting_tasks/human_ai_tasks/3_agent_1_human.json diff --git a/src/agent/tasks/cooking_tasks.js b/src/agent/tasks/cooking_tasks.js index 5667c79..c954b9c 100644 --- a/src/agent/tasks/cooking_tasks.js +++ b/src/agent/tasks/cooking_tasks.js @@ -22,6 +22,7 @@ export class CookingTaskInitiator { await bot.chat(`/fill ~ ~ ~ ~-50 ~10 ~50 air`); await bot.chat(`/fill ~ ~ ~ ~-50 ~10 ~-50 air`); await bot.chat(`/fill ~ ~ ~ ~50 ~10 ~-50 air`); + console.log("Base area cleared and prepared."); const position = getPosition(bot); const botX = Math.floor(position.x); @@ -121,12 +122,14 @@ export class CookingTaskInitiator { await this.plantCrops(regionPositions.pumpkins.xStart, regionPositions.pumpkins.zStart, 'pumpkin', false); await this.plantSugarCane(regionPositions.sugar_cane); await new Promise(resolve => setTimeout(resolve, 300)); + console.log("planted crops!"); // await plantPumpkins(regionPositions.pumpkins.xStart, regionPositions.pumpkins.zStart); // await new Promise(resolve => setTimeout(resolve, 300)); await this.buildHouse(regionPositions.house.xStart, regionPositions.house.zStart); + console.log("House built!"); // Add a chest with cooking items near the bot const addChestWithItems = async () => { @@ -206,135 +209,76 @@ export class CookingTaskInitiator { await this.killEntities(animals); await this.killEntities(["item"]); + console.log("killed entities!"); + await new Promise(resolve => setTimeout(resolve, 300)); // Summon new animals await this.summonAnimals(animals, 8); + console.log("summoned animals!"); } async plantCrops (xStart, zStart, crop_and_age, till=true) { + const position = getPosition(this.bot); for (let i = 0; i < 6; i++) { for (let j = 0; j < 6; j++) { const x = xStart + i; const z = zStart + j; if (till) { - await bot.chat(`/setblock ${x} ${position.y - 1} ${z} farmland`); + await this.bot.chat(`/setblock ${x} ${position.y - 1} ${z} farmland`); } - await bot.chat(`/setblock ${x} ${position.y} ${z} ${crop_and_age}`); + await this.bot.chat(`/setblock ${x} ${position.y} ${z} ${crop_and_age}`); } } await new Promise(resolve => setTimeout(resolve, 300)); } async plantSugarCane (patches) { + const position = getPosition(this.bot); for (const patch of patches) { const xCenter = patch.xStart + 1; const zCenter = patch.zStart + 1; - await bot.chat(`/setblock ${xCenter} ${position.y - 1} ${zCenter} water`); + await this.bot.chat(`/setblock ${xCenter} ${position.y - 1} ${zCenter} water`); const offsets = [[1, 0], [-1, 0], [0, 1], [0, -1]]; for (const [dx, dz] of offsets) { - await bot.chat(`/setblock ${xCenter + dx} ${position.y} ${zCenter + dz} sugar_cane[age=15]`); + await this.bot.chat(`/setblock ${xCenter + dx} ${position.y} ${zCenter + dz} sugar_cane[age=15]`); } } }; async plantMushrooms(xStart, zStart) { + const position = getPosition(this.bot); for (let i = 0; i < 4; i++) { for (let j = 0; j < 5; j++) { const x = xStart + i; const z = zStart + j; - await bot.chat(`/setblock ${x} ${position.y - 1} ${z} mycelium`); + await this.bot.chat(`/setblock ${x} ${position.y - 1} ${z} mycelium`); const mushroomType = (i + j) % 2 === 0 ? 'red_mushroom' : 'brown_mushroom'; - await bot.chat(`/setblock ${x} ${position.y} ${z} ${mushroomType}`); + await this.bot.chat(`/setblock ${x} ${position.y} ${z} ${mushroomType}`); } } } async summonAnimals (animals, amount) { + const position = getPosition(this.bot); for (const animal of animals) { for (let i = 0; i < amount; i++) { const x = position.x - 25 + Math.random() * 50; const z = position.z - 25 + Math.random() * 50; - await bot.chat(`/summon ${animal} ${Math.floor(x)} ${position.y} ${Math.floor(z)}`); + await this.bot.chat(`/summon ${animal} ${Math.floor(x)} ${position.y} ${Math.floor(z)}`); } } } async killEntities(entities) { for (const entity of entities) { - await bot.chat(`/kill @e[type=${animal},distance=..200]`); + await this.bot.chat(`/kill @e[type=${entity},distance=..200]`); } } - async addChestWithItems () { - // Find a valid position near the bot (within 10 blocks) - const findChestPosition = () => { - const maxAttempts = 100; - for (let attempt = 0; attempt < maxAttempts; attempt++) { - const x = botX + Math.floor(Math.random() * 10 - 5); // Within ±5 blocks X - const z = botZ + Math.floor(Math.random() * 10 - 5); // Within ±5 blocks Z - const y = position.y; - - // Check if the position is not overlapping with existing structures - if (!isOverlapping(x, x, z, z, occupiedRegions)) { - return { x, y, z }; - } - } - throw new Error('Failed to find valid chest position'); - }; - - const { x, y, z } = findChestPosition(); - - // Place the chest - await bot.chat(`/setblock ${x} ${y} ${z} chest`); - - const cookingItems = [ - ['minecraft:milk_bucket', 1], // Non-stackable - ['minecraft:egg', 16], // Stacks to 16 - ['minecraft:dandelion', 64], // Stacks to 64 - ['minecraft:sugar', 64], - ['minecraft:cocoa_beans', 64], - ['minecraft:apple', 64], - ['minecraft:milk_bucket', 1], - ['minecraft:milk_bucket', 1], - ['minecraft:salmon', 64], - ['minecraft:cod', 64], - ['minecraft:kelp', 64], - ['minecraft:dried_kelp', 64], - ['minecraft:sweet_berries', 64], - ['minecraft:honey_bottle', 1], // Non-stackable - ['minecraft:glow_berries', 64], - ['minecraft:bowl', 64], - ['minecraft:milk_bucket', 1], - ['minecraft:milk_bucket', 1], - ['minecraft:milk_bucket', 1], - ['minecraft:milk_bucket', 1], - ['minecraft:cooked_salmon', 64], - ['minecraft:cooked_cod', 64], - ['minecraft:gold_ingot', 64], - ['minecraft:oak_planks', 64], - ['minecraft:iron_ingot', 64], - ['minecraft:milk_bucket', 1], - ['minecraft:milk_bucket', 1], - ]; - - // Fill the chest with random cooking items - for (let slot = 0; slot < cookingItems.length; slot++) { // Chest has 27 slots - const randomItem = cookingItems[slot]; - await bot.chat(`/item replace block ${x} ${y} ${z} container.${slot} with ${randomItem[0]} ${randomItem[1]}`); - } - - // Mark the chest area as occupied - occupiedRegions.push({ - xMin: x, - xMax: x, - zMin: z, - zMax: z - }); - } - async buildHouse (xStart, zStart) { + const position = getPosition(this.bot); const startX = xStart; const startY = position.y; const startZ = zStart; @@ -348,7 +292,7 @@ export class CookingTaskInitiator { for (let z = startZ; z <= startZ + width; z++) { if (y === startY) { if (!(x === startX + depth - 1 && z === startZ + Math.floor(width / 2))) { - await bot.chat(`/setblock ${x} ${y} ${z} stone_bricks`); + await this.bot.chat(`/setblock ${x} ${y} ${z} stone_bricks`); } continue; } @@ -372,7 +316,7 @@ export class CookingTaskInitiator { (y === startY + 1 || y === startY + 2); if (!isWindow && !isDoor) { - await bot.chat(`/setblock ${x} ${y} ${z} stone_bricks`); + await this.bot.chat(`/setblock ${x} ${y} ${z} stone_bricks`); } } } @@ -381,8 +325,8 @@ export class CookingTaskInitiator { // Entrance features const doorZ = startZ + Math.floor(width / 2); - await bot.chat(`/setblock ${startX + depth - 1} ${startY} ${doorZ} stone_brick_stairs[facing=west]`); - await bot.chat(`/setblock ${startX + depth} ${startY} ${doorZ} air`); + await this.bot.chat(`/setblock ${startX + depth - 1} ${startY} ${doorZ} stone_brick_stairs[facing=west]`); + await this.bot.chat(`/setblock ${startX + depth} ${startY} ${doorZ} air`); // await bot.chat(`/setblock ${startX + depth - 1} ${startY} ${doorZ - 1} stone_bricks`); // await bot.chat(`/setblock ${startX + depth - 1} ${startY} ${doorZ + 1} stone_bricks`); // await bot.chat(`/setblock ${startX + depth} ${startY} ${doorZ} oak_door[half=lower,hinge=left,facing=west,powered=false]`); @@ -394,21 +338,21 @@ export class CookingTaskInitiator { for (let z = startZ + i; z <= startZ + width - i; z++) { if (x === startX + i || x === startX + depth - i || z === startZ + i || z === startZ + width - i) { - await bot.chat(`/setblock ${x} ${startY + height + i} ${z} cobblestone`); + await this.bot.chat(`/setblock ${x} ${startY + height + i} ${z} cobblestone`); } } } } // Interior items - await bot.chat(`/setblock ${startX + 4} ${startY + 1} ${startZ + 3} crafting_table`); - await bot.chat(`/setblock ${startX + 4} ${startY + 1} ${startZ + 5} furnace`); + await this.bot.chat(`/setblock ${startX + 4} ${startY + 1} ${startZ + 3} crafting_table`); + await this.bot.chat(`/setblock ${startX + 4} ${startY + 1} ${startZ + 5} furnace`); // Add fuel to the furnace - await bot.chat(`/data merge block ${startX + 4} ${startY + 1} ${startZ + 5} {Items:[{Slot:1b,id:"minecraft:coal",Count:64b}]}`) - await bot.chat(`/setblock ${startX + 4} ${startY + 1} ${startZ + 7} smoker`); + await this.bot.chat(`/data merge block ${startX + 4} ${startY + 1} ${startZ + 5} {Items:[{Slot:1b,id:"minecraft:coal",Count:64b}]}`) + await this.bot.chat(`/setblock ${startX + 4} ${startY + 1} ${startZ + 7} smoker`); // Add fuel to the smoker - await bot.chat(`/data merge block ${startX + 4} ${startY + 1} ${startZ + 7} {Items:[{Slot:1b,id:"minecraft:coal",Count:64b}]}`) - await bot.chat(`/setblock ${startX + depth - 3} ${startY + 1} ${startZ + 2} bed`); + await this.bot.chat(`/data merge block ${startX + 4} ${startY + 1} ${startZ + 7} {Items:[{Slot:1b,id:"minecraft:coal",Count:64b}]}`) + await this.bot.chat(`/setblock ${startX + depth - 3} ${startY + 1} ${startZ + 2} bed`); await new Promise(resolve => setTimeout(resolve, 300)); } } \ No newline at end of file diff --git a/src/agent/tasks/tasks.js b/src/agent/tasks/tasks.js index 3c7c9ad..b62af70 100644 --- a/src/agent/tasks/tasks.js +++ b/src/agent/tasks/tasks.js @@ -454,6 +454,14 @@ export class Task { throw new Error(`Number of human players ${this.human_count} does not match the number of usernames provided. ${this.data.usernames.length}`); return; } + + // Clear inventory for all usernames + for (let username of this.data.usernames) { + await this.agent.bot.chat(`/clear ${username}`); + console.log(`Cleared ${username}'s inventory.`); + } + + const starting_idx = this.data.agent_count; for (let i = 0; i < this.data.human_count; i++) { const username = this.data.usernames[i]; diff --git a/tasks/construction_tasks/blueprint_visualizer.py b/tasks/construction_tasks/blueprint_visualizer.py index f19866d..f2dbf25 100644 --- a/tasks/construction_tasks/blueprint_visualizer.py +++ b/tasks/construction_tasks/blueprint_visualizer.py @@ -11,14 +11,14 @@ def display_3d_blocks(data): """ block_types = { - "air": "white", - "oak_planks": "brown", - "stone_bricks": "gray", - "oak_door": "brown", - "oak_stairs": "brown", - "quartz_block": "white", - "glass_pane": "lightblue", - "torch": "orange" + "air": "#FFFFFF", # White + "oak_planks": "#8B4513", # Saddle Brown + "stone_bricks": "#808080", # Gray + "oak_door": "#A0522D", # Sienna + "oak_stairs": "#D2691E", # Chocolate + "quartz_block": "#FFFFF0", # Ivory + "glass_pane": "#00CED1", # Dark Turquoise + "torch": "#FF8C00" # Dark Orange } # Extract data from the JSON diff --git a/tasks/construction_tasks/church_three_agents.pdf b/tasks/construction_tasks/church_three_agents.pdf index c9ae7e6f944b4f8808e1cff834645bfc78d113f8..9d435147b5e79ebad105422064773853f9ea5bcb 100644 GIT binary patch delta 37423 zcmcG$c|4Tg|2}S)y@)J@$`Z0<&%Tt(o;3-hWQ#%eCATG&DAiPiP_pmIz9&m1l(hz9 zNw#d+jTygliK@7MS9T^^6$U+y{gIrnnTnCEp}&+B7r*U{;A`WM_FDb=vb&}R`=-B<>c@;=Z<=J=wTg%{hStUJ zdO|o8=1k4l9!}YF`$xG2FKx8c1#fN*memF0Fu~iu^za1+s@3!b+mG;TxNF;+;#1J} zib8d80{EztjMuR)wf&h6d0T#gg5GZz>0&!wmxORjI-BY%$&kPQ#?nW*I_LIGH9NfxegLYDhwQBM2jyQu zy135SnHh{q9X`2Wdv)_uL93vVY# zSsDwy(L)`L>4ImQk{!YjpiQ0sM-e)<%J^WTfwXc<=1u*uy9F6yp9ZY_v({Pk47i^z z_!~yvm~KX$w`PZ+moy(5nN^tL*l!!lb@+})j7&UBQWAcFN*P`1&cofZ$1MZ)vc}@{+&^WY$g@-KZGSTa-D`mb@@*NA;b` zZV8n!ae?%!&ht~(xvC(K`1xK(;r5H$4j0KEdYrQr;B83Q7Q9GFIF@KIBk3q+d=2i# zDWQLW#NZ9{k+DZ_brE5rq)ASqr<(aAo`q0YQ7d&gw}RJls+YH-Qu-WlCt8PADwL*j zuis17eH^j-?a5f|WEM_cI}&)|Z3gLR(20dpIY%VLgxV+soF}gjNA{k!yJQqcqgzjV zM>OuTnbr^5v)0X1-76oj2SA=@o4y7NXPIfOmf!545LgcwenvdLsa?q5z>*i;W=r#& ziZx><)Zrq>*D+=l7U70oa)T1d*Dd@(0ut)66b5f3C2#Y4aiR)zIic5le(6sho;?1d zE5xIg8$MPR8Ku7T8>r(3{NfIHiP z9%L**$_uANj!F_nx|~~30(~!NWT-by1q??L`)Kg@@9OXMyAN50Ix0|ygQ4{i+;O$= zrapP|2I_{+0SN@jPmvNom0IzI?JXpDw5r$^#s~ z?*S(7Y$t!iQf~B5Tbg95=q^+z@%Kc(<6)yY=_C;qQDu8ulknY53i)m3o#uC>rhrz9zc{O#Wx5 zoj#rLfSqITXy6!3&xuGS3$h$==7Ai&#$rqVFW(-sAuy z-nFJ~awG`&utw9rtBBR|W);wzodvhZjJ*}8s2)qkqZ@Ktsw3tFlT$!>b*?e-wol!u)W>M<)fs`@xBRONPF{N9>Rm>8wXgJEmVxmgM;+8~LBpVHsZuI?k?8Ed2m z&@`3%*AZd> zZ1@Ph+Q!rc4+>Tb;o3VfLjo6?=ibx=KZ>>4?)oUV-LjytT(G@7@lh;!ds)>6U(i>u zX;Y2IfHrjOHZIv3kNy}zjax6eAInbf)P}qMge&>2pFwD?PQhr?xk)T?ur?Y@d(SqDKF7D*>05c5p7lB;G`LFD*ig?d zvQgrd1t#MvH#4gFmj?IrA&=qES@VZ2kb-Ylf6SC%*S1XWg&!}5q}rtmU4@F+Z&&EB zo>w`d6eQZIkrKw`LLbmfl@cAMnSU-k_S4ZS%#cG7BFfqL`kXmmkc4bt_7hgr=^$$Wt` zbhEC2xxu$i15afM&0y;N#kcO^C7Z8Nd-%URvcl-78dxTVJ}ps}r}$~CyiWCmK>*b@ z*4&0E!zQ?9weH~BHlFTC6Nk@P`+>D672*BYr?2t0yi%BPvKdOQIOvlZYL$+RzbJs< zyoM;_(+^ys&}DsaCBCaWzf`yW5_!Up6-8-Ty?P_^szh|uG|h!;yk&NCo?R3!tcAwO zmz*8rLyQ@I#tC1~NeYS2*2aI%GyX`?R{i?ctHh;JIcHR(0zZ^NN`g)yO#pu^vj~5_ z5P3otHZ5vqS}R(+9c%+Mun9|B;`*o7FJ#)iDS52Sb6z@hh;ayyNASGWE|l= zP6A1AEhAQz5s76;_6%8>3raHbhSy3Ei*I<3${uSN6;ju7?F?<|3XQ&)MHZDoMtwPo z>Ua{BT{jiw1trSX%qJ^#ek;lQxU!+e>}@sIEL>9#F8ZRyMwIymN70M90|j$kAyqe$ zEXDVa2@Z z{*El+4J_euo!l4s*_HU^Nx<_g*bS4oc7`-`g^<57BB3%M86vSneKuyHW2(RPlBfD5 zMDCh}nm0bAD1~%wT0=IG+iQMaLw+VlY7VX;2g#9Fr`C{D4sB1T=Le^$2dGFVtw_O* z878e5;4jIf6-R5iDC&#}x4_;qqrE-`O#AI?cz-5w9~%fz?^jkfEcXs83=9Z~V}Spp zxX+**lm$+%Z4M_+JJ+fh2L{{xT%A0u6mrtJ6N4M|zEFkxl|3}x0j+Gbbl6z;NTp-8 zoGWWR7jZM_v1gbhlo{g*mBwUi36;Dn!8bIUGLV*H27{xR#NLh7u~vyQsttbEmv!#8 z4?4vglZ{PGqC2=D#_*%{?Jd%uTD%a;?6P=N6C)pV!0p9Ho|8lV6*aSA4!_Es5%|LS zWc;QaZu0uL;9I1_p^d3n-(>C_+}W>~XviAsgKW$ zB6HI7RK3Tp`(LpBbcr$NJ=fENRD0>=bZzlR$EC(0JhrYbr^J&o8mmN~(YI8&EL)9J z`f?@HpX$9qU1oA^8-ib~eRu=c>;b8Up3MFM70kyR;|@QVmt3=T-~(!{5fVr<5=3lP zNT=Xj{btao2Ak@zt17F=g)Ee=LQyRX=bo{Jmaa#QBw-`BXj-A09re(bDzu4)@O9f; zs{)a&f6qx698 z#~>QNS2rwWZQws92d|GLZ}%nRXNy%%w%;$tn8@N5Jg!$q+34S|N;VzSpG7Opc45D? z+RCh6eQ!(B;NG~t#4{qbknCW=VZ8J>csj=b`fN3tQuz-3u_*QyU!5RI_{gHtV2vR8 zqOVOU`=dwIH*RrQcZRxijwNGi&eFR>B|K|ygcx!0CbM5!gzgHfq)9mhW3@$w5d(hc zjrpU`8X}6%M=r~Kxr|>;Gf{iHj?rAQlDZz;(&nV)!uHlF=bcbqa@m^0Em~EiG&RkO z#1l#FtKEv2WDQ|_;b#)MkvFE7{8?USTo9EPXu_w@W`|wQnSyDl=!#V9+yxdQ_%v-r9fXN?57% z`Mfyg#q1`4mmu|TPs+JPY*hS&te=+8sTg_}jl9OHtz4xcGLULqq%*p0EE9bK;HftS zkuxp$7x!PyEldJtn-BC$ zQa>Z#=4lr;3Ms6gkVEYgAK^!x>XwO__8kIu zMGuUpGUtAbL{>m9?l0_25@k4TMPv0?xOl)USAX8)7DVXYa8NaKvB*gS+t8XRUxF=P z9m7vGh^%}NWS|il88f6A#mBffQChDsK#CaC7VBSa&Xu z?}@0+2V@?)hUQH3l6wd^l^x4s)kb7HP&+nq0e>q+CzMIRQFZauf#TNkR}w67h)=p+ z4p+nJ1j9Xg-z#-B9Vd`bK0hYbp{{)Z;xUp{biW3-%qvm5f?4`INM?l9!s~0*NbGnJDPIy2EcjnFbX*5Es%Rz_Hi? zEaaux^~g`$PGncCJERj7{Leu`GWuhKOD@9tP(sdn*;(RuN7kGvD5g98aAG<9?Fw~! z6o35Y>t=bkckvSCCbhy{dvfgVPyT+RF=_5HtggEk*f89vOA zH$Bw1vsQA(>=~bQ{G?73c)}Y&n!4*+gu_?pJrMgxm@|x4hwrHi-sx}xv_=sYFK+yd z&FR+!%2B+ye!B=>X|=E_&-IdnFm;JT)Na((srtyr-!V~_Wb4XuF^=A6) zh$#>DxF1T{;sj0HbFIKC`1&aP1tCbidYQcXIs9ZBTCz)9;Xlv}_siVEd^6Col^r%z zaxJ_HL?Sb~(R}CIuhN9u_|24N|CuLO#e;OKp)yVNu*)_SUly6eZ3nA@pG_#xjww@a za>w31AoyY)e7%JoY-=;>la78~WR5uboYJWhG}L6&=XXx}MZSHV1eHa_i#UvU88jf- zF>;UiX=hY?mV&a6NG!YPqN53Dr~axX!OOyeDTRtRZYj;{mC5L-*?Ml$Cvd(_yPiDCy&U%p~8|C_J?7K6gmDnR*EiMNo`zgY?iGL1GjpO(ZvoIW?7o&*`r zn48ZCs0++e04n9bV8supi_irtAs9Meuo4B-1!gILx;PhBIs@u*y|D5+pe_N00Ra;2 zmU7X?37p51IPJPYZza*zI}F-|e%cStb9o^ay@u8DOyxtHj6N!biY zC7rM0#I12WcSL*Y{Cbklb2&qc&Z?S3e{&HR0B?z01P}~oi3(>xFy0}qH}N*gIyQWFZXmT3fw>6a7c>IqG?Fgi zdv){o+VyK6io0}3p4SrQBA{y~RR29&?N;9Y(D$sN^neGVGDtlYp0_7UyX_DCTyqZ0 z#=mh9Kv6U#D&=SaMfo=_0w@Z-)|x$_DF4PqKDy)A^%L0Xlh_ZYJVCuNX0dWhDIt^a zBXcK_HQ63E-6s8JxEXG~N$q%bkjZ+mjF zgrNDw0_tUC1z;opO;H>MzM=R`a4jts%usyE~yMXPJX7eJzG-;*-N&pSRR@A z;+s+CR&kY`etUd;ykp*G-+T9xWY^b1qh=jv&o`Cv3C^G=UXxId^#&d<;e+1xz1Af_ z!z4S%B>;PYjn{T-p0i_PWRR}U_FMW=*L$~t+hgR#(`T%EVuIH4!WT3y(D4We{5WxL zF4*^j?Yiw5Db(H%7EKd;OCNC+S)-~6S7>r0n2hYSrJe1}sCP6ioR zPnNf;$*KMi*c7y)#m6>oJjQxjH1YTx4~=k#z6n26aydBHp~t%Y^`IU?G$>BEDDA0z zm169Pt#UAC?+1>tEWMehQ}_Xs#pF*#6uob6XE9IlVK#{ukp>s}CValf2mk%^ch|yC zc%!<9Ih*>?T~uPZi(3n*`<+kUs-0-KSYBw>qhgqyM$qPpQX&XD^LRMTx3i~YbY;)? z^c$+g@#<-qI9%y^cR%7`sC?P4%%@GSvMlMq=|Pi5Ol~vrRpkP zqSE+dgm_wauO`zx;WRIJqyK}`5G+)}uT-w?cs5jCAVmaWb*k-Mf>kK~th^7Mu)f~f z#1ew)g=kQUaKpeBc_kf}l{}BGA$%Kn;!F}N{eygM3Fxc)(^wVZ^b_7&+!(94VU72Q z#H#=KG_>pdD@dhJY>(>*xhc(0t+TPr*HeDxYt9SB5SMotdyYs6DmFT%82A&woLvs{ zp^XVV^WN_8rL>|XEvz&Tc(gXO3xvg=|~F?^C@HAs%Jcul~6>tC3i zj5WWVubS;f_htF)AA6G%<$MNw(?7lf@^E~?`n3zNQVgW(?8$2vWXs(p*)#GC)@6

XQ%}l_RpLmP9Fll6yO!P02Oi6bSwW!aU8GRzhj~!vE*zn`-T6kjdQLNF09E34 z0=1Wo2P*1vC#us0c}C(4L~T0`T#u-2x2|1-_2(Ex!HERQ?d!Ez5A0p!-9qv1?1e9% zN%m_cxfew^v zNg^j=R_pHhO^Un33)69AuBC>M$v!;I7#P3ebn(X;M!Mjb`0xwNaUu*mkx|j#8~hUk z6;!7;hfvo(B$rNc6?)y@m#=z~0K%+{i6HD*hmA`%K_qsAu9GoceMl8U@rI!<` z3b-bVx{Xg0JlmU7OTHNV=1Lb6D?VFm9V@&qXien1Tj5F>o*{AVEoM^uO1014zT3xZ z%~y+kXI@)TK%VE~uV`SF{E3f>0PGM$FK?0Q-QJR@kO4>*5LT&)g?aj^K3*a1cF3?m5*mfZ|0Ow9zusQ+Y zoXiC)830OlBe!(ZuM+yM&V_!?56+9g^762n%lWV-N}~{e$|gJd^PErs3qTPtyyS(*vx=rkl?Ou$oZZC85>_4B8SE+V1tG zdm5ncw4iTy==&ak)p*HKBIF#U>XZWJl#Kls_r+b>2l{eK_;X5hEcwe?7BEE5>5Fkx~1j=kh>vH)uA8b$bBs=t#=c z8MM}r>dkpi!avtokvIWRED;dkuCl(=DL@r2NJZ_K#!R2YTuoZqT0i{0p7dJ^X?O-H zXeFUfA~_hs(4*?tvrYBQXcwFV!0oiE-)SgB)?{ngbc@T;_21we>Zi2kw;jF@2Se5rY*CE zmFL|8^xR6rMmNJ!^-!%!;Sjg-O=^iV44YLp)r{B5V$drUT~jML9jd{2=vQ{q{MHZi z#+Bz$^ETo!4nx*~?8_>1#tKiWysHDrm`69qqrBX|6xB74sB7;4LF;{_<=;9yzwNgz zFgv|(&3(3`qc~}(w(-fy?D9o!9hvvZ3;TpoFoHV4&tW-Kn@xF^9UAbHB*=nRmA2)I z5fWSFpAYigybhTyD!*T~PrL>?IKmxHc=$^?*TN#7?HDNm>}}4L)G7A;9$>b(vW0KK zRiux`aOv6asD#PUo(y9#Tn6B?tU&Yk_qbr+e1IoY--A1tE&5M3kK->HFSgthDBi1Y z$=|y?zexNnSj+%7WPdA6R*J7?DMTTTaY2b39oT!G)BW44xQ{D{>L_R}Z=*Q+$^Pb0 zn%*B2EB3wqX@O!u-^%r;xmF4Cug_kBTyE8)Oymc?>?%G0(sIZ4IHLf>!%KkJcjJ`F z_LVM^8w>#A_43}7kp&R1&`{+;$`79IqBv<&!MCl5#EStYBFxzpl`=2J>LH4i^_CR@ zf@VopxwrStyF_#Q14qiI@}~9Or7j_VG5yqcA?PgLE9Go0xF79{;JFC+@Xu)CX^3zhAiNp2 zJq$v7TPVCJbEED&^D7oH#1xthk_DsV6XwXPC=+hEj|!^~Zt(m#N%K~FUEU;&BhW9_ zHjIuxb#&Kk`L3*sHEIzipy;+Q2N7CZDc2Gv^E}OuX`arj{e-#TBo2qb`0k!<+awfk z?#&oY{>=BPg^EQ4K-K^JK|ViFFst^KP*#E^mNNlM9Q3@I0NV`Bp{Oon^^)TYl6svY}n0&GLTh}Js$wv%ikVua_u(J2(l-gT z{~XlkeO@Il<&)0(AwHtI=6Y_qMrwFoNw@zw2NkZl?AMoEaJkqvw#W9{c->0Y# zb1{^`6=iG}K<3+x>aa6}FfZ(UIA>>xF!MK(llbc?=!lW*P<5;wlq;Vd2p)Wa-`dx` zgrEJve(H7~vfRQ~LkZ(%h<)d^)QL%2A9$MI5>wAugGXG8v9YgNNWtWH{)Z5EHwqTw z346h^YPm0|uGZ1po^IY$lBfNP~ z%1POK=#{aI9@&)y{HNg6b^TxPpIg2Sgq+eJi_kN^dX;K^h)3brq`>R?!#G6z%2j{? zlV9Z@6aW5VsG5|!9|~smf0e45yjcWoS4_ooepKq_5_v{dD$38M8Gp}s{@}jUcMn1X zTF8&3d_Hh8(a1ud^~}3WDS#mFw<w8)UuC;qQ! zzUsHDb7)yDIYbw9I8I!}%vSU-w{*m~5( zR#foQUt5_t^cl?XXPrH}C5oIkLZjB-fkY9TX1Q55?@Y?roVRwt`5gXcjNvmvF3R{( z(d=x_#gLmIC${hsOEP=Zdpy0yCat=*DC4^N-kRlD~h|7J>4jw&lTSybD5ZqDv`GRosI%z z=}8JVFt%g`2*So5nn>p)5Lkp@V^397W_~Ns4i3TEf#)4(Ul3TDC1CA9&4lL)&<cufdg$uuQsA)Kz;lc!IF_&YmEdx2%2 z)S|t4%4&%DVAx&bt{aFl2tlBPaf*;y8G;Z$oI6Jb!)U}FN8dH}y+6-J%urN%1`$rD zGQUe1tD^YdUB1N6o{h1pOCUQoDsYt&=i1Z0EZM}%=q6#B;>z@lupd!W~6#k*55a6d#;*dxf5t7 z7my8vI1S<~h@FJ|*dU0VL{;W;=OSUo>6-pgXGNrZ@gc|tI0(5uRMT4v9SkGH zfO=%8*S^CnZoZVxQSLpWnesA&)V0XVJ1eXDD}n`%ad9d7_;Pc7Vi;J#QrCJBdpKTM zsPEf>7m(8t?)A|~IFA#(WHuIBkOT)DbDD1`rG;_ARfHQhV_Ry1F9X5gVv|MeQtJUj z7@1rN^F7HFMA<}$V8e>XUb)gab^Mgooo`S3CKcT!CYY^U?3A4!1@fTRtVatz?}V8f_`5 zzpwBNxh2C1hp6(~d@Elv1?u^-Yo3Gq`Rycoa;%0{%Farl5-p5S`nKE*p}!M5-WZNC z6t{(;{-3-~^Rw7yqHS(#n*X=0O;e@gz0!8dh7V@Aw0OgtdTr^9Mh7+_;mTfC?ymDS z7Hhb<<*wdOno!_g_Y0MIZ%}QTJdit{Y_Zm~{cVszsPeOyqo-+?Hd;G0$B*X%b%2$V zRov)8uh8>5p5w<8=Y;wh#;R&F&e{&PAYpUat)v?nzC_(XSJemS^KWtE5zq}Pf@R9H zUW1?fWa?uG7K`tNX%?9DtHImvf86~Ak#TS8#kFac*zj|sHw8FNRf77wj%F3v_32QMXbsNz?;Cgy8# zD>E59!ds^I7S>FUtk0RZVh}TKI4=45h`P@<&3?1Iw{*4_YF;NRKQ9GdGnQ4^Ue`7E z&GEjE7YA04H|9I>`~UI{EZ2DIqx|s!wsXaE(4I-I|82Sh^-ozoEc-=)ls6L=x1OWq zU3-97@XPwRra-D?dOFRqpMFnmyQ+~-5-kkPjko?ULUU+iI@Q zB!IL|RWW@a@|m!2Z3W2VD1I!=s(2l1sIPkV9%|t< zKdSZ;8z)c?WF7xgMCb|eq#H!dv$H|KEu>IbsQ{7=8ikb_Fgg8eDSO}nJYwD@BoZLY z;oU^y&b7-@#(Sl7vSE6vK|Uii=HHSv?kS~{^`ld2T7V4ySFVP!`x|gUZg$*ZVEgZ6 z4L-Er2o=w92%;W%x|v+Fd1gSHGESKi&`^drWd^kYD%LnhvJkEfkyr~Wq!~o z8mBC(HlQsNrz}I##-noNa=KM4)<=BCM92Ts^RXe8fPqj!iuS4Wr|}s zjj1}F>|r@w>pR2kE}~QCtHUF~l`UN7o5SPIMUmo5$vf8TtTyjVf{<-hoBu#EEPG6S zUYK;)?5_I!UG-*{&!`RoHt7FW68Kk7T2&wQgt1&(Uq)ia4TZs7LP2_C=mc2Y zKXd}rqOvN)qM~v2HNa0SU2%3U5H{OP%V_cTJ?aa4GV+)`A9aq;?SH#4rsW9|E*4EJ zS+4)#-bvDLuDJCZg0U>cIhfp4~scXLh_q~cw)zgi`45mG| zZ4+grnOxq%r0_O{o72mSCp<^JqfP@BTOy*a{8W!6@IMh*LuFLqZ$!py`o?pQv#)M^ z_B~tJwjG+O(hO|dEO4e~GL>_GLZ-9QF&^E$EHTqc0Joioaa-@f9-}yE?;JI7kAS(c z07?x_+IJ^Ntw^sOxhydBlXf}jCyHJ@6oLqt$RQmIB07LX2U!N512`2%AoE0aOUOI? z!AL~%d!QZMIwiG=k_*5x){MD>L!w0I$zL#a8HNx5OaX|Yc-xnb0%S6tr2Ii%{Dj;` z>pMxbRp=1P%A1aT=MjLJ=B&FffJnq(%;Du#h9DSa{vafjvy7T1k?8+N5+z+4BvIOR z*B%l+a_OO~QE<)U1pe7w^K@UO)RJg!(L&1 z%X`$d0Xv|_;8%UD0r6f_Hr(r*0P{dF=nyCXtosS_K?&(tpy;;JDZ|xiM-h%=|ITSgek?(qtK*Np&mY!dkw~ zkBa*QEB^Jc#b12OxQ(0Hi4hw~WPy^Wo1*srSTb8(GCWB)qfF@&p#>U@1a^ZZs=VJ| z2_m8;J>}s_o4PK=_A6zxv2~wb;1LJUSLGX3Ec@DC;~VqA3v8h8wEQ;XCkqnI_+EJW zUrEc8IKc#w4|M*Sa<(DVr8cLzoy1m)c(7~9SMsxp+B9p_A2}h=Mwd@8of~!7!Ap_* zJ13(K_8P}_4?(K18{gpg-#m*>lau6X?e09wkB2UZgU|oE@o!aBy+3f&7Pk@~P3L+iC{WO(`Ej+X8OrN;W8K? zl`1MCVxJbEZ;b;oOq* zi~{D2AT1&jcS#1MMJ`KJTz+5+vM|?6007f&_^#bR`t>CRDu)7OQ1%Fz?*RaeQ5X1x zTB$hVE^){sEFlxbbyLvyZvFSW0D*OeyzdI}PwFC7D6!^ZA55U&C^MtfS`#A$Fa)^s z1wan!5c?pO0-os9z*K-pj{zG#uozJZu@72OhFE4%rUn)e(5sgl8%Sfxun$&&W+Cd- zz$(zZj96YqaBL#Ezr8~&yc=eC1DVlK8PG7+Q*p2>amcHIddpU}zH85{ zgbazUMO#`f)>tlvd^KFIv0M&88?Mz@u7y}yY}QzAaula+29|A-mZ^)A1elY6ZwPsS zIXPU35MWLPz9G!Z`Jgl+jeR+v9l%EJ5CQH^XpUQ_%6&1tkDJv3iPE|D!kbd zuAO^Dj@~VKii|H>^)tmdCs5lik$O;j0deGxwDzgHOaIO9nW^Fue6qLgH6KZ4iGu|MiKhTXCNUOsQq%7VdDalI8 z{vGz7S*g~HP@fKObXV_oWUm^rD75p(cBGj)@wi_k#Ni_KS5Pm@uyB>CmIM?U?j_cj zdeMOT(!<1>(tZU{38)E*D-Fn-ze)~2>(wNTKD!VBiuvyBIDvCQCoEV9S7OhI3KhJ_ zx>N9a>M1C96eAQ$4##GLs!TTB6Cy`FDf!CfsxES5{iEu!a#sQA>La*F^#@$h`Hl|N zr)v#S2y}nAlN+Z2iV|th-uPsm7j2UGyYdpQrQCJ=)|#16OZl|ZsoucppGAj%3lKrQ zE3v}!ITfn|p-%E4Tr;V=u&YS%Zy$(I6f1aZ&fiHFjOa$l;s(>ZbcNL8OdAtRu*2T9wHLh^M?(ecmg11^HYy#A3!fV40KOMAl zC0 zPzMYf@JAzd&Fk+sB@~qYAFl&Ms3L`nlmBfUbTbXQ9P*wKdIf>p>uAnhqEZx@ZAu1o;3{QCOa6Z8B6A13>(!kvv{t6sKKUM!g570;THb9S z^;l*EJkbo6h8X9rcXJOPLJjgW&)!y^Nl2d_ImUB#p`Abbwp8S_{#{s`I~=AUlpwGw z6%BGXQD;`9Wc7MXfjJFf&Dm>8bl^Nt`|ZH-x5y|$8_ZNqoB}n;D_{KF%7`Yjw8bGL zkdjlGOP>dalqCQ&lv?%hpT=%fh}$t8`;3txB#{E>jMWSh^J=l6I~q=*Y4|HHZtaaP zy=^|bWxDV$Wu>Lhn~4r=m-S{87n>G}%Z>(mZ7V>qU*EgawCVqF5yM&abG|Qs?n_g5-%qh`?HNe@ z9423}A|;rxHJMBJ=09!)vy9*U_4dX_H+qViX)u`8@0Eh0_sl>H4$JW9nlruMFju=8 z`M0M>qNKU7(-55b>8A=(Q|Gu5srh9^aqANGM>1CcwpIm*4uW+l2Q>? zclRh+xXVsENziunw8FaFk{k$|8X=<^a zaR4a3tR2218SnZRqN34sB zi$lTNchBC+!5QW1c}(_oC*M2pRqd{DE&oXiOzjq>JbT&Dm5r*i_Us`I6N93PV7C;y&aEb*SU%elK}#zL+r zCE8ORXs2SaOzy^c`PQE}s3&;^?mf1lcLz(JKRUuERqie;{ILCImpfE%O6;!1|K(Ys z+Zy%3wH$MRITJ{x5D zKf4ld)dl1XMVH3dLemmvi|2X@%-(~n` zAe@dr++&VVGEOk5rkx*33Qpx&Ey3t7d2MKPLN%Ebon`aE#WvmzhYy7^1zxw>8WgLTx}0-+eBhViyd(*eOP#h- zuh()$$>lQvInBf5uIr3y>7lMV4^PM6Tlr4-=kfgs*H=e2mM&YVnt+z}e)Hko1=cDw z22j&sjt>)#rDA#%2lLvF>Ya_h`|EGkv~j@It>eM!ppy093hUsA)zSaVnck*_Opk8e zc(SJ!%lb>Mf75cCsy%STZ8`RYwc?$TFRDRqbBe+EW4^u$J@XG#Sl71S7iJjub$Bbj zf()8wA;wnkxJs{YX7D**aL)MROIJ}A!*5%HjRL+_>C-^&#-R>(C8lc*Ns>n7L5%&P zpJuYIAGia^+(a_HB0nH=6r+I5tqW@ApBoom3n_14Tg8E!d^dVxsRkG#8h@}bgU?8( ziE*!7Ykams+DR)BxsdX=PpM`1Kxp6Ub0`)%1xSg3q@RkRUx}f$u!OVFpOXamvfSpmBnNtJoy~oUa4{Wgqlnr)h<>v1P*qbdkpAD95 za{&ZLhQpK%6gQl_V099>;gl~ZEBm3ts?Ra788ApXr@?&f;2j8*X8);J;7v8lt{=@( z(*l$R5H|9X)4K{59NyiUwyB=($Yg*C8d&;L%H!AL25%T)#oU*)&ziKPb$Q z1WGhaSE;quR6sK=;8e%Jd-AgnDpGQkou<`VGXu@epjiYop8&*+5-?s+2wetb;t!x% z44xHsW##f&ts%bu(Xs~pKYG@J!77@})mY8}3I+2jK%piB%O*+7Ud#oS&5@S9UJfi< zCI!?M@G2=}6v=Wv30Os{<$NlziuB8b5*3(Mv4CYfF$vs^;DINVl|w!?TLON1RsnU; znHBOaU~11m#!bvf^<|XQDF^IfLfq$E_O0_f)QjXPoAJ!(nlVp?wzkH-HMiV?WiDYV z*6}O9{C>=q+#abmAXOqg`7kzbn_brlF#x{07JsRVj3r^X6Jhwv4~^Tw zk4i0O`naA%Y9^xX%cFLF*4y2Ah(GH;l0NIhKkMNh_DPG@gr9Zh0hPwVL}IbrZ7pmC z1ECf!;+CQUL1L6(xwqy8$CC$QDf*nV)5L(H#W^=aR3r1G2fh-v`2bR*1yO4BX_=g5 zpFrsy_oLoSP$L|-xd=dU!$boPkdqNaQx05kKvWCiveRnmA+TYHJ1`La%UNLA`GD?n zTW+jfMLQ*l+3eXYIKaBOI%rTWLGZf8DPLpM5EzmTtQjnFCgW|_ldGm7n!cPXNAyU* zt3bdrhPj6%BYMVkouYW0&8YtDI49*8Pnl|^mx3ZXcWv`|3R6=EOAYlwhnGh>@omD~tOxJ|#2 zCt0o`0))XIX*>%gHAG(o=%Dep!%Jd^>9oa|&oB(mq*(gGAEsmx;Ld3)uQ)XzoJIV?dd6EonM_1DFAn*q+IZ4Cvy6?r@kM{CoG)`qDuw;_jXvls zOC9VfF7&Blxmi=77N0#mAii|zOhbQDVl7<=tQOx;SOgol6v|2n#>iy)J^by-Li|Lu z=Xb&lul1)+C5kvS^j8mn;z$|j5kTg|>c|v1(U#PT{K4|MJ|?sD7rxlPwk+CG)fNJ- z=x4+$jrx1}sEWJQ=VMx1_nWX-06{ks{q(Nr)IE6T7Aq>^&Miq4izY=!YfP^!u$~N} z=IyF4O?!7)+t8C>#_A`c3b1Pn6zNKIqWrr<)ZR!gIk9>xDNEpK2TvR+kXE*=T}ZqFnj`QaBI*=^>vx9n$uD; zxoo6{oEV%<#|moRe{XRMB-34RDBIYjbV=BdzaiL|?ms9j8(OZ;CW}AG+oe&77Wo4x zj6oTsC@(PKyF!vb#a{ER6u{fJ#2eg@GewekM2NcX4gRS(^zW{ExCZi4KGk;+Fis)7 zPZN^B-ljlPv_p7b1&MMmgts?{hO`aSv_P#q)-VmSrC{%nX>CH}oOT9D(|zGRtmJV1 zx5t#cKJRgO&lB=`m(K8>uJ9{#zt~VZ9L7|IU;T8(J5b3+2Q2FsC~w=5FGeUfpj&jGtx%SS&`MdJOCDUJy4&iAW^vnkWk*<=(&5K z*$`y0jo}?<07xK+*;;GXgqQhTV*yul0%tq0up2RIt@(f#pKO?%YCt2ui(Z!SyX+of zCfqPA)Ii$LOCByrPVE>Dr?RUn&PaySIixaYywXSS#sFYj3O>Is!0dLyw6F^Q?7%z(sM~E+8_XL|DX^5T5P0Gz z0#AG;Wy=E~!%ZS&7=D_8a}Q=2oeP=qlQ>5KhxJFt?tdI4?OSw@=eQ)#_2fdwwIRiG zE$;H~$t{nuvZ{&>z9xVK0*{Pi2gLCc3<6S}$Y5T1etZN{J%@&JduHx^dv`+LRcfG# zxD6MFLv;*s8!qn-M?vB?TrwT*;zVTNoIHXg(!A2!%|sMX{k=_8df+p0bi8AE1`$no zesMG>j+Xl3XG0h*K4L7w;7iyH3@*BQ%A-jGs;)`~i+=gAq850i=nH2--TNT0wNaIc zqjZl;L27P00cb^!cYOB$1_r>piUGJ_iw3)jp+V3Yj%_F>Y+MH0t%+Nh5scTwx_j6X zNZh9^F=q4np_MPk+zjeIGYMe7xn=lQ1|6QPvo@JT`>HO!C790)2wEK`d}in;e^Xy^Fz(jF{<;NBXg-5e;U(sR<+mx3g5&J>qG# zut2AEvSb3h0;G9@K$>rOnEO|uV(g?D`h7M@3EEaTX7C30iyswhCfyVoScI2eBnZF6M%w51L)yF>`^~46*&Rd%w2Ld zPOUkF+G{6eu(Jkl-`Crl4*ZGdf47m7P`tP5L!6J_d&QMM8BERo*Qce3L^oQ1mo}hNnc~2tSfN- zI`HXsY16#7$kwF_Dnrfh{Z8+XDw;3KVgB}V-cf$L zWwA8(zWJ#|4lJ8|cPMMtq`W$IJ;*nxde*l^N785ezJ|AqM&aj5g=Q&|mIlA`%~>m3 z;fqz&u9uKlZ>A}~D!2KVc6I1XJG4C8F^|!}_U5YM7qJD~n;Tf0?d98Us@pAdeXD|7 z?^(ilw)gncug=f^Fp%yDoH%i-EO`+}dpW2oc>VOCqRLS0xU2!5Vd{$Swn0;pXx+dK zt}iWfo5^>To}x?FL_tujAP@*$DYC1sipW}M3W<~;#emXV9?G(IP1 zAi65(iWEUXN)i-ArC1_ON>BuZ2nYc}Nc-k_g1WD~_uhZ*{rD%7Gv&;jb0+hf^8~1q zKE2`XhrfL?o7M;E#)j8TDgA+us{2Ky@URNX$y@r1gEY$EBDx|Ky=>)+*shl-x;c(e zYJj>JC*O8o9_0^dU_!MqLpD(X|7aSk;7KQWp$J*)dz%j&}P)ujNfq+XuQR3FNHLOLEG-Qo&vO@+@0ZRTvCD2kjLq(dd zaI2b_gAU9(QJ8+hKK;_xw!E!n4i}+QZwU|IUf-YPT!dqrE+Yl+VmXfWywss!p|2Tjp(Yit z!)*2HT|JT%p=r@YP9`8Wk7ZG~8s7YVfu34WvD8x@H-MXi=}>Ed+hWh(O$ z+T|1CFL+k_6Svix-y|5{yuJpr3!Aaaz9>$E(x|afZn(+}n_*^uDQ-EXarvD#YuN^( z?7=*oBoQYmYj7D|oQe)<58o&Wt!H16q=)3tJ%wq&e#{m&VC! z;V#Q0q(U-<{#zH%JC!P<(5j5QFx26f=L(Wfj`nSPIw^&`Ovs4e!7pgt;xOqs(%GhH z158{XWpsfqr=zTr*|+sV{dDEzLJ~dGr*RB@~^i(e$=k{ zeGO^N_A`xq(_YVVs+63mX{%-3_@+zCbdM;k%44M4)lI57rM_z@_L4YKcD0{ifeDC- zs6LUY`=Bs!w@*JWJ*$@`*9|o=wmXys8ifb$sB?Z%pcjsNl{P={gYVUZL0e8=pH$t6 z^5;*Kv~H&tB=57Sr1ms!b@fb?b7ZJyLQ9fd!Fbnni=QOkt4SYv$a$=&tSdcG zV#8ROC6=A(4>P~9XXgUd*XtWeA!@oudMY}TE z{Ky>&v1zx7Xie;Ec$#kIgGkGLLG(xy-Wuyu$V3Kn@RAG511%cS+Fkr}C>!N`nFYs2 ziFnD+fj8W*n(1^+Ai`X;>#j4jig_9ae?W2pir2ri*KT{cq~J;n_$}GT^XO*c&cINn zJ-0K+i>$@o2rJf;2rdiMH}$@q0U<)*j$nqK#5`B?$gi=Jq^a$(Vt@P)rjmr)QDTR5 zH&W-l{_v!>Co_#SBNncDtqTd5u96E?-Y!a#v7h?#QDfkYV?9-%h_9S?tUoW9*0aVM zSS|tRVFTsJ%2@Csmgyd}#d+W6Nde2amaWc4p7Cx5OS4#n2H1t19a1$?FM4$FgpY+ zCES{2D1iE-k+tN4eo^9n*FiBsT%>QA*fo&*{N0vH*JwuYmL_KqX_18uK^9;WaWmmj`_f8J+Up2PiQGC z@Pm7xU4>y4BK#T~>JwSIq&#?{2OVt6;;W|no+>@}JR_Ogn;9~w91KUg%!2SAF&_fP z)k4Cvd_t}qj&$I!?=cU|G#dJCiOgYOq-*`LKgNNMecxrkNTZ>Mx2!9`1Yr|3qC>X~ z@|UJZp5jrToC@_JBlDtzT{uC4KP{>;4!P}J`A-wiRhzNE&J=%wbl)EAn*9W^E3R-w zK0$zczsbPVkWUMm#D!)b=)Ye6#Q>^D7T(j1!?U;|P1D;+juv%$gcQ!;e%oS+Z}twM z>5{K;It&zFRkS_&U_9YK&_0*j?#=0l*jHVqR(doBzdc}&{nTHK1qz1jk(9uk@z5_# z-rEkJu_O5%8?cyP&n@kVE{8H-#Xne*RrL#_DQa=caZAw}UC_w+R6ZU{uDtkVS6kBH zqs?JgVnY?osaHEx7IYL+s|O@E{tg{*`@PGt@Y5>2GpUI~UM~a>vTGXKa=Tpz zg&%INJY*BJsGU)0Nj*9dxcRZ;mqhcc3oK$4EBQl1rg%Zf$uDKCTOC56o)Ed`^!l`G zXNRMWN6w9%-KgZjJb!9&;pd7KP0^}hb=rSTpN}a}{d`Po|CQ)Aqb>EOdM0CJ~9 zNi9RZiPkqKLo)Y0k1=rj*9l(>5rIFlZRM2?a@Q}B!mS+6&VlPRP4Ahh0nX^d7{3;E z(X^ly67U5D(9F})Y*FuLsI?zJ?y`7wp%`+f_Vuv4BhG&q_Kv2-FK6bflYci!Pp*%t zQaA?<%)IW}c(5?pYaXMg&Ds2?7opst+AR= z2R)G%sFly>VDFu_-w@huNk>E9dK0Z(P1NVdHOj}moXnvUb5K}}eqlQJ;}_P7{zOGo ztBPcXie#$FuJ}e#4VzI!4S8dLGbWd%Gt#B$AMZ<}Y)T$&1M zVn-e8IfW$4kNnz`mVs5>_|2o5xE^8cNvo3>A%3$+vo#%cE)_*T?@4#}LY>5HDss6Z};;Mh$W?wR;G@5R73RuxVTyfA- zL!JoMV|-DnI9+NP>wJ9s`S|$rYpea&Z>yD#Cm1JOchC9<+iq<8?H_Eb1uh$aZNV%T zOQdl3#KXq?2il@cE@D!+Q4;Wl!2tT*J{`LBPqqc}Vjy=!HCQjV?bnlojhe#k0ODRC zb_L>9whpU~$bHs4igh^}xUFgz)@7G{Y~1qY_m^*cZ7qG?L3-&O9BPL)N|#V0xY;L^ zP;i1u^6=N~n8|6Qa#+I58v}vV1ygc~Dv(tqr*%Pc*q+HZ6Oq9AMLfd$s*_bo>b7+l z9AT!~&>|2+RkvkgT73l7C1kH1omP|)8IlG{8i$HyHT>Y(>nAmLVJW-7&1ktiaXAWi z5pbbl0|w>_Pn z*7YdEjGxf1iH52$51Oo^i6=T=wF+aPq*Avh)7e)1ugS^ki|&?9yLtWV^u49OyW=2! zd*6)G=AND-Jk|Q#UtvgXtbWuzH8!KTS>wZ2S0aL;s>vPa@os^tx#u?f-`F2$nME>n z<&MXju>CKgl=E}UoSqe5#^b*d#hB`&_z2fkdPP~aZg7p<;XD5#lA*1Z^KVr4nC??{ z{_v!^r#f1=w=D_gRPTC8L?hSa1CD%7(@ZsVRJ3uX_E_cJu_oo*KjH-Jjs|n!+Bp9feLJ!t0ai z-TmSN+uX3?6>?yEFT2Y849f!Pdkm`>@PYj`*2pLHp7^{zXIRxLmL2jT7bE9&sg(7p z;+L;3-3<+|P*$m^O8<{X>Rkq(F+pmbod5)*1}q##j&zuJXODD1&UwgDEv9n#_fc7BiNk-U6j+4n=a!0zCh zP;K_(X7S^~@B^Oyha1WdN7KJS7$Z8)0;Z?TEtqD-fL1k+Qj?(fx4ETF-yLr9iWLmO z7T=%CEq!$lAah_-g`r3~@*9MSl*B~D2JQmip#3|@ zd&5%~e=huB_U8Y<@gcLkd~x)y7-Yw-9Qo7&19J4?ZjUzw2*^SR$>#gal5GB;A0DY^ zHNSj$_1M%dUTF6LEUE6e)0Nr{+uGgjtmIxdRO|y!efzD-NZB(LG$Q^=R-B>6!LlPV!4j!Wtdt z?|s8D-1^9@YXQu%@*#$t4DdH&f7@Qy`+yuxg|=8Sb6$*HJ};o%d|19>b=xslwR+QR z(MjCTJZsMEAGjIxnt2Hq!(;PGUsH`($q--2qLGEdRx81Wj#r`+6MpO^!cVf*3!p!? zO7l2jybWI?Mz=ouI)$U+x1A4YT|oOBRrks&ddn6@#p)QdavlU}g{qP2KE1z4UK7QF zv`$(b7#QikD5Qrz5-t4_?8e#a_i6rT9nsyk!LgW~BOp`D%U#o2>^${)$!ll9fuaF+ z`M0F46fe|b*hymS*H9(V!B6SA2|+S7OFG(l2Z~s|?_mIL5gzZU#tYp+9jUAQed{BVCfN z@M|@3$F{!6VgjxhWE-(<4Oo!GRWQaWz&XXn^9e7{f2t<-ZFAnXYF9$@?u6YT#A;u! zZRtE*~F1*-!WHx84p+WbAR>9kU6WvB|!uX(6R?;l}5`NjEr1(;tleHV**l zeAt>V_&R{^^|9%+^>;ddQ?%_L1!DR57yRu&ybFjo!5Q%NY)7e7RwEF*0`XBG-VEDx zJ-bv2z9V=F%dZ<~MqnZ5h`{5T$$wNIOWYP`ohz3qW3 z6FRio)WMQIt`f6M=ivN?(PR;nS)fPNq7XChEqra0+7oSw8JV75+-vBJUoDps*UOHZ zn(SLfdiG*Q%jM4E%%WA{jnXgX1$GaV+tY>L^9yJK`7!IUD<2?TO;!^gJ#OF%7 zIcDL}C4u1)=^YV|UcQ9i2O5p%8vWhX5p7>|*K>Kw8rxCNES)2JvKU$oBri~sYuKf} zp7Y?Wl9uGNJjLP+XK%SyiJ<+b2fOl$6aDT6wVZu1ocC9vY@EJ!?H6)O`;&+C%x3q{ zUs(PhTnPDL9-+|Ad&h3r^aKr5Di-ZU|6nx?z~o{m%UG9VJR}ye-LhnU3weBP(mb`|3>R;?=J=p04N%$+ z$t{V;-+Fcr^qzmDEVDn>!6Wp*5=6bBfuC4?29%NWr@l|!1W@|q;k#M&uqnmrZ`crK z)d%WeXVsUbnS<4Lz5`*iaCvcP1IZWh*6c*`rTQbcfhnC;g0v(2QUz9UegW#!MwY+^oz~gp9in+ z7qC2!mhay318Z=A4R=KEIam$w8`NWx!2Yj{|F4SflHH_7<6`|n*KRG?tc*}w+N;AL z4&sCMUu+MH^qaN6z%2mrFqi^!7>smu?TDN$0y zem*$w{15ZqQe(h=ZrwkSr;!5uEVoPo*r6Q`Aip>>KO}&F2aiB{Ab=g-*d)^b)^@wl zzISiW+e-;DB`bSSB8ywOzac z%ujxu-2lO#E*7luP*~L^!R$1UW(+>E$e0e1)B6(3yn=gK*YvSdC>uUgt5tQXPU>ra zFNZ^8EVvN@MYjn_mSl*#rRrz_XS!^rE1ECt51XmK(B0eH9mXEx`7s9*38Q1+@4K_# zxNc!`d>~raz^lCI0O5*M*OqXzdwCD24pCO*wutElDrf4ZRNq(zi=GtA3$*NDdta$4 z<@7r)3SZs473+c9pZg4e2gqii{^@*)C8=NBX=OLZ?PY$`p@pGe|N zr45z4R1I2f-_dp7GV@hUQ8c+ON+-u*-ozn%9mxOc3P2+dC(_diVNWI-pBLU*Uo7B~ zPk!pEv$|m=!M$>_qFXI{yh$^>wPMuUPB%>C%c}6J;E~Ul9v?gYh+2_W!K@n|yIHP$ znCV*4HR?@Mjrx?!$qS`foed2YO(ZpraEce@YECe=C{?KUsvK_88-ez#MRg_j`LC>l zTBoeeBt0Cd<3@vjQ8o-J4tFK9%`7tU?V?+eY2^!g1;*yoBGH+N%^~V(#ig0}Hc`^# z=8$Al2$b*I4UDF-<@7)DyH1jCOJ~v!Hx(SrWrx*sQ;U<4G5t>x1ahiwQ-GQA+osaD*ZQRC?S}rv_+g*_72z8-npK z*X^@Zuo)_Wi!>KuGZxw3iIb!>N^U&pjcOpGmb%kL#e<@AD~d$^?`if~BiVa7%Iecxu(~4dRT@rwTu-kB$(6IVEWZ<*^d5nQNp08 z9NV=LouGoI%ip3CZlg8_Db~=B-bT5{=m$D&0{0hrRR>v(7In<2REg7*wQ$uM0ff}G z&DJR+brW?+HvwD~>-RPbetnGvZz-cw)kBj<4_^zDdJ=P~shQPy{0g<1#Xb=k5&77x zC@JIBmaW1d$oc*G172g1UWtxx{xWxRJT*k9wB0aCj(K<>&d{SzQ#1Ru%&{B0!N18! zeG>`A+&xg+W9oc#yWF98c1(F=ZyosWT`y*2ohkCF>fSaZ1qIk7G0tJF7_7XGD~@F< z16qWkduva=xC_6__%n9t-2EOC{QP)X@&md zbZ~G$;N(c8bTuLeY4Pp`k~gB`#_3&txf|b|Epyg8Cy@7ee`ZjShwvV&W`c~I-I?#) zL#>db-_~58mW}XUZWg8c70d{kDJ~5o-U8$4zp9N=XUEY#n9zbG1DsSNxAn^#9lmnkYE`(X-KnJ4yFMI8e{fC{4vX27gRfu6tf$}+q z-L;`#Y}o#iB@D!{fX99q_Pbq!-N}eu2~ECWEn*n^K3p+mXFKYRU|Ui4J$cM%W5Mhpfq0|)jHm;xLc;8J5J4h@)yes~OCq?m}l`_5VHF$ip<*(d=z zHoEWc*d+UK4auR#Sp8}K|6$yJa}NZ9`scW}z^B;!uf`p{b?2p@7e2dg2);4?1?^pa zclh)EiGFD;rKyzLPAl;9JGyBm8j5~-uh{nyZD|%+uxs?giB09)X~FH!6TKc?>gs8K zWh684XYB%LEDKBB?I!9p&`vn>7XZJdF!=2cj^wsR@yo%R;MV;U5f#jqN!*?{8MGZ< zT%22tRz-Hfp*AR4J(OZuytGOXZXLnzA1cu734VLr&8lK)RTYhTmR_HG?KIoDZ6w?E zYl&Aw}zCp9@`K2f))TyJziqnQYt(7{#48QCKncD|08#+YaG zE6TW{vG)GxQLPCtQ_*fkVdCowzhyIr1CCQ;kP?@}&9fDmf9`rH8)J63?+b;#Z`3)F zdhOL*Zm%d=trS^O}InJ&6z z?r;MN7zipiqZx>Hh2+_Qe?8qZGX0Fd;mwEJ!_k%t29*102Q1FL)}%6Zm;mB96@9$j z^3&wfX#8C?a}+$$Y-aJg#$(n=N7D{d!IvRN!|FMyLlXiLmkPcN33u|PBb`EK;7(^i zr<~Dx_rB9(CX8wL2q!}D8Q#LQWq~uCmoX@apS%j;8u6FVoPZpjwlP7}SOQEWprs4- zp8tmO2dN@|4YV;1t<|D}&QL)w1DVRkm$82BC)XnRzITH#;-STe_Zsqn)Af_c7=t56s>yiP&u?U##6_0l@ftO*$R zE}~)FL$CbGcaNaDS0T7(&;#Qh0l_`MeuCO@^7b8_Fzx{yfpO1#35- zcdj8AYXZufkIk5Ge>x6DX+&*&2gQoK86xFoKT&%Lv>M=9#)#g#SgtpNpExuj^p6y+ z*^vjh4#?Qv3~u6(q0oN?Z6Su54Zdia_;OM2zWxjzY)DUP1uzxY7+I5G!0ayoX8%`{of6<1nmz93T~;n5v~V;lIc-vpNQb|lxq;yaKgX_>gP&tV`WPhfXPeu)v!1oj zt>*JhuZeRif!t${`R?XAmM%)5GnAY|t2gL7T`R-*2xiMAlvl37>`=G8=?MALSqX!a z@ssaku)}Vb&~*!PdV$-))9;vC^B5}%Rqy#}IA6GIWuS;qPIJ#fV<~8mRFz+zCm(z0 zW!ys3JbCLpJxN7v%)-G1aZg{OYG!`vDFiv`CZy_?6;j2Tt+IiuF3$FXt02rmmK@ye zSI`a1?7iprigPrg8#S-g%DnX2tJ7g53#*vQ%I=5Zdovc`8rUbOpGG}2=m$F@$Tyzc zBWznSg1`Uv>M*%9ri_|&x7%a>f#C!V(Zdp1r5uT899+y4D~ckE$-Vng%ZVbpJh@lJ zlU=90Z1%nCD{n}3m0p1#t|`^=g-v2l^p=E>sEFg>Z)?+cgOu6;2bYt3<%)97<8fKI z`@Y^@O-Vhy0GwT_jOPuTKr;0UXR@#F__N0n+Rk?tW(L$psEm*G)%xUDN&x+JoL=LR z0zJK?puR&7>{qv~>vgWEudnYoe?UqCZXUIQQw)uloIGyTDU*6mj`!}to{=M|n-A_( zODW$&az#qTPwI!^lFWH$<~oytBqd#NUX5L@aNH?(1zh2$E_XPtlWYFHu4M8uPb_PR zdZCbaGjUIx*(O@2qQeWD5O7Z7L*-ba^c}9>z6F$fQ)R_uWXz1b$ zCrvp9+QS8E-wX1LyQ|Ia(Y~w))Ooun(~xj-iJ#|D^FZ4ny{a>SH8-{C{pjoOUUhwm zq%V}!LH=NS{3CIG_WRfud-Ev=Jk49^pbV#Va*Q~S{qW>&g2|DO ze((EB-{p9_g?B|BC%3I>h2KZHadOu-?|BE!OCiDH zckgQ&-7Ow|x8>VdFx^YA9sGbDTAn`%?x8f}LzjR=?f$@~A-xL3mZq)W-IX(WrK<)c z8kc4k!^-9iEZ7$7>g1Q`Z+ZZuWw*k=4x*IPs%@IVX=see`i>M7srEf`3BinJ}& z&jmyX?1VwiUU&(Gcqf4u)9gMHE!~j$edXYI>-#|+wW_ac$~Nyij`-dtsn8x-^IxvNeLO6EV%ip$U;F=i6F|r=$YM>0E_y4D|Dih`KT0j%qv#$D!~%#S zkiY+CgM1UP!|r+BFdw3{e3SjK%ZBg4n*v9Ln$8i~3At~he8%72E^A(?tO||1`1>i_ zDB59|HQw@=B$aJ9zxw#InNz7J-beW#nNPAPD_V3!6z#x~ITh2>lCY9RpIrGNazRo( z{l1JzXdH`n;FntT;ZfxUrR~M1s%U}=hkYJ0 z8*g1Z&5hOy^;=R=C5YMzrFlg`$C|hSkDz;fr>#2oB?bD4pwxU3gew)$KBV^tbNWXG zp|--wx(vTD4q2!wG|B%^hXhl7}?rU*W3pu$y-LisrDlAX1 z>Q!z~_Agdd9>bh)%iNuWK3=~I&tk9lV^c>e+=;=(AD9&m4T=948Is$Tr<@9@ajT139cATfB zKLc4lwh4o~Or;PK5?w%=ubXK*s+`x#&+rkR1y2TXT`;Z$Q(8DhvpVW`nVS{|qq+|VzGR~dfY(S1PKTdOb1W(%$o^~PM*I5`JsX%l26Ue$8 z>qn$kV0pgjRn}P!c%6ITIprJ2`p<=5p!WfjwGSe1n>SLOh~O)ZUCQ+%sVnsP?kcMa z?dtW?`p_y^fqVL@LUe~-+OT$uAHUYXQUlY1-^{`o6NI$}R)nl6{AQk`=US8!4)yYZ z9}NMzcRm2?-YJ@6`rtq1+xI$i9;w*gdb z90P4V4$d7Cn_~i@ovl~js<(hqXFQWAj_-im>%Ne=zUqqV#B5DG) zY;6OA;6=0*Y|88glL@&NKjDk$oq(-JKzRQ3I&b=nl=r+J9j%@Sy8+OTqNG<7TQ9@tOI)EpLs(Jep5>-)Tj1zP z2akq1XBAAzST#IU=*C!(GpG$VWMO~j+ z+*2rlIxUnm%|oHU^L<5a)I!!Cxa!xLC2&=dxGE2aR1NNft7>Mes7NnQ(2Kpds=Oo0 ztz|%m92j&{F{m^wNPSo&_$qSq+e=ERx}%0MGd3&kx)XzyGQgP{VN>w!wve#_Rs#$F zXn;rSNWsVmXNsF6Gt@VlBQr8GnJY6fohvgl`$+~A86)GRXuV&JF~pjt*u7r|;Y^Kx zY6qrb_;X()oUx(7oOb%yIqeM1us^pm#2Fg=JU>I6k+D8J9`p|*7~)I}el~(3&eX*4 zC&h+_21avbMkdIB{~XWI)a2*I85&{r|0x6du~8qHm?p|QUH&z>_hHpISj))3$l#xW1Xluy j$=trC20sU;k&&_K?06|(x~yeQaVE0s)@|RnL-zjxU|Tb$ delta 36621 zcmcG$bzD?m`z}l)t(1fk1}cbjNt-BLf>Hyb2-4k~P!vQ_N2EiMPNf?JK_zAA4gqNp zVW=72wP#TIKF@Q`^E>b7oWJ(oEB0P%?KN{>_jO|KN{VV_$O+ZdNaScvZ<);{r`P z@izYIB4IlrcF^i(M1q_Tc5HjecsFdM+B;@<4%H@5H&^{`cYCD}!bJRncGu2V z_$FYN8YAQ|5f#>Ty{gb$(YxJ^m%F#4*53?FX>TQ%bja)MZbn2z$X9!B&ylP+Z6z(4 z7*AChtot5CC9KVLx6Hl5##Ll(r%SJ;DmGT9Z4@jH$rw)%1dcVeVHz_xkIy;IHgIFY z(mBg~d@ys`_xMXgySf zUd@}K&{~;};$i`18o?g(>ywL&jmr$GZ9=?nkcs1S>B=H*dd9riODN={linOUW(j30 z=C2MnB-{)53FSR#Bj#xs>ugyy@-W@-NI4aD{l|&44H=jFkjcJ2$GV1!h9V+D*(d^c!k=AN{07$NxQYX(}Hr! z@|#aqJ68I1NV3K4J|xOyk-aOD?f<#togl;W(Ux6?>;T+(B!bUx`X+fFxEBpeDwW@< zTNE!Gu9@-(*1jfaD_}l0@$#dJLO>32yoH!Ko$`h#BK90{{5{!A4JRK))sPq+kogw! zI8>QZ#Gm2=oBLa_7qVx^Py`NDEbec053xot-X&simRi09%^edyccz(y2SHlTtRlpB z+==vrz=ZSc)*Y$JYN>bQ*0Rewe8;^EKUxqmc*`!U;Lk6d?0q>JeB;Vg-UGG35Y$?Y zNOtJF14RNwIAYE}^%iU21ic(XWTJAwsavd3b@bQkGH&I z9;UpZk_M67q?bW`{e0wgyJd}}2_1aS5wRSlK~cuxo)Z2-_S~4r8~PIAV|*#k!(UVq zy^KgtC_@!h5@X&@fU$w`2!j^>6jdDVZ^Oa7;GRV%+~Yydvu{v|T;P0bH$2_Fca%#W zfA7xTdoiGwX#+ESy$oh+L?`o&>FeH0DuSnre=+pVNI%lUtUo;AB{nzIilk6^ezKMU zEHT)5WRF*od8CJ#2>G~*%tCImM)7fZM5QJxUvWgozd**R%0P&Ka}?l#=CsN`MAP7h z{Kq8)a|4U#^m}f9UMzTO)Qv0aB@fyjTp#`VI4kl3xS~`te*H@iB{N)Uf!h-QyJd&| zN9+FoZ`ltP3JbGCg>rAab%^8-UhU@R7F}>rGK<2xMQ@cC`{=~FOqxP-3^6IUPHMz9GLWJ>`{7!)xMr8EmfZ71 z8*L5ry$&7OBgX?B`b#gZ*^8@oUDK3{OvGH&Idz9Y7efttn0?p8gsL)>Q(hq(A5=~% zqeP~xyMjk_D%VxUC9*2})A7{QMNK!hi^>`rcb}oyw)8<4G#oyPynfM>c&IoHSqC~3N$#YB|w9A4LC;%9%0P3xIkh=>HRq+ym^%_+RjbIxD9;)J6X7-HZ6TDcO>Ds z_3i6SYFF3p4p9g_9i5c#*d3|%MV+cRgK23W8RpS%SS+aYeHpQYotYfiz3+Z>s|VUz zy%W&}ZJ7w{qUZE5J-NGWbMlz=$=#jQh~0I_aZFL(H*4Y~*+n*|YQxEfRKa2G#HEf* zcL(~dDg$)3BlDCO<@~p^M+Gz^Q8%BbWI8f;g96H@&mvBrou0SMiG7HYB`r7g9#MLI zIxF2LW?GxcUoq~fyJ(M??ogGnX-XygdXt?~nmo(Z&YVo0a~Pvuwl5{gs9lzoGUHxI zRF_$>-41O*nGt-}fh9PzyWXrr zhlHgyRuf? zlbtQlno(S}j?sO(jMhE2v8evpE^n#ihbHl}d5t7JDUH<;0)mpjT~L|`jT<8ykh{}JSDR;rH&G-cx0 z`-aRls?5?V%Fi;(f9R#;LKlOeuEH}*HSO|#VL~Sw>*yX-uPC81&Ag+nK*lLVw*TPE z(l%9wJlz^KAIJ1JmPBe|dABn@XL}M^W$&seO-i$E`cDsIl|=*fjzr3!o`Kap6?;T59~q(It-VY#`bq2Rys!& zvbzF4p#nmC6G@(=lCTykk~6E53tJ^alxO29k38mQ%X4RYuF1}bSYhN!y3xHm-UVH; zPQ!l6#1a=KuOH4`7qPlCDPTNlQ6E%hQcCGXW0 zRzkBT@3j_I5>6@TMM)6J&nD=_=2t?)E9k}RR}y|+(CfTkB+Yd}uj>RQ{I>+Xpj)8S zO3=#+lzIx5dp=j|v@v3zL^w{4`eo||e$fr2?&Bgu@{zF?DN^z1Q3+coGpgh;9(m4x zU9j}}b5r&Q2*-z9bvI^fzRxNISwHvx67El2beWV#j}$aLpptXI{4*I%qzp~ubg6W; zY~N|3Brhb_M0ZBbkKvO9&14WO%g_Lc-#{X9l2-z5p`Gm*&6}A|vJ6R+`VDZACV6Fo z;zES;5);AQK$g(OmVnTKw`56P#h`c+;cRyp6mx{ebG)-!n0lj1O{PvgtZ+XZvHWV3 z01T%V=}%msNKB?qOxu2)kVS^jo!B}ZTML%8;LR`c++Pq~``0qgiZXcu_7LCY5G+kW z@;G_!I4E`GtZ)RSRzCLkeGJ;va|(>2=HJ6sb*rxlmL=D87~xD*0*%@4(;nc8Si z_K?D*)GLa;va$+;*WrUk z5PEGc&vkoJx3Z}XTHB0hGcoQGNdY*rtjcL+Vs2m}Y9s-9i&jW3OuiD~eXDV2D=0*L zsK_wB?9)hW_vU)r3)5%50W05sL@>scqeN3l8rr@ULtZ;a$gcXug;_?2&D8u5vfe>{ zp*;c7*}Z8BJF-+UIP6+0;$bKz2=$`X_1EV%M6=)x)}c-_7TGzD@a6 z{Tj7E!V#Jmo#*kzl%UqWu6~kp42fQXz+WzQ#02}xZg(p`zAl+_y>LWr)%n$_2UR`0 z>5pX8hI*^nm-ti2q}PgB)OrlEOd}<%sZy5X^9U6v6H=m9)$gn$BxKj*5r4qAuN<& zg2kY!tE5l1MhmJ8xXU@8l6mI!I@J4m@9x%R%-q}=%}1Gcg>L>Rs7|OWPK>V2hN#9B zB?D;k(PVAYi;V)%*5)*rIJ8yVwq@O(iWxXE^aqmUPnkjXx ztPkCBKTiJ9G8FPfPYKp^`L>`^B!AtPpo?fw)zn!z6DPGgU~!X>e4=5l1>*cdeJ=Lt z^>-smndpI3O+tzZh_1zLsBtq{ICVSk=7H2~`qTo%@Nfbv?@r0LBPSj>HbCy@2ek9O zAKk5+*nz42^_=Ukq3XrYb6Px zPBar??CQ{6?pW~?yycnI)ei3mPOr(*4;h=rii>JubhqCzuxW8Uqv-FrRA{zdpUM2> zXDx}P-neJhBRdHMjQbU0i{&+KVmywxNMG4R1gwiWV0z^{UvwVjh@()+vptjcDL?E) zk!>h-!%aHI-g3kY>@wf>E3PWdiibhqp7*0ZZdE{O$J5VW6$kzXzrN1g zJ zY{~WZb7!mg3cfvD)uia4mDSd}2jfsgtefeI(VM5|V#BVt8~=zZy8ycs7f$LQXC7vX zhDI-ZNt2v=7@xsc0DB06wdHvmIqg>tw_ZJ|Fa7J1(Hkios4Sp*vP5a)Jm#$vAgV{V zKxxDFG5F#Iw}RkDF;EHV)9+XxW(4MTW1!uIHUQRW|vd_TfuShwgh13Jt|ot-Vik zsw`hQUa`WBYwom@*wC0lu|R%2X}oi>Zh$TTp47p^komUay#uFmiYWcW0}D@bGuRcg z22Yl`%~e&GKis_Bm_8%7_?GbvH|cm};^L8E{)5hEmTO6bew->h4c)=NNHpn~52a!R z5vNLf)oAd!>wErQ^vfT#U&s!tkxgVB_ego7g>wm%mW@wWNF4v6H3}dst!&%nGhX^1 zfuB-9MYTjpQO3A|0BaOBPf0;@=3pB|7v{Y!{;k=ZOfI{?l-i=ZK}AGjB*__`*rE%0 z=UXIEO()U6Yw}3B+lKeW>~h9qWZ7{o_*+H9yznkT9u};d2!4IWWpwi`U@s04AfdO? z5|4YkdFQ5sqh(>gLJ{l=rjhwR+^Wq)arDpki9TS^GjK7>zZzW=*>kofMa{TFAi2R3 zs_;4o?;)mL@ihDvnVR)q3halQ!<%UNsRr_)MmNi}DvEf7qR0i$j%AX8wXU&Ew!W*=k8KY6nIeBr5wPm<@$*+y;l6GGy52w zZr|v~FAA}42giDH@ulKqp!5*#o#yZS$W#(9u@`2s5a-y{V1nPMlD!*k_3Ml6$u;B* z&2CAY8DNhgYbDn@mic%|P5{&|s95ofxFRl5*ndyku`LP7>3L;Txs zCy)mZ2qPcf7GVJmk5>$V9|t*o|3L8cqxJ&XirJ(%Qsk*)!pI?YVd!y$uU|0(7z+1D z+1+@k-MhSYW!+|J(Rq7(eUoZrisjNHlxF2kw+k{OESg?juB+`PoSl+OQ6J_Xh6SLv zq<;pJV?KmEi(sLi8(wRY>Ct3aI@69W(W#K6@EOV8z9B`mDoeV4Bp7%B%`<0}P`Xl7 zbF!qa53e*TGrnG{fZ9-oQdFs4l&*CfRWHtJ>Z9M|9D_F&UfkLDC33bsANH-=a>mNu zz#@)lmgi`d{&F+De`3OQ7`LP%3#A&$Y6mb|2-tu0Y)X`q+~@&`ifQExBV?g5QV95|iHf zb&}RAI@md6`)Ylf$hzt6@BYk|%Ss9Z_T}fRTxa|?fNv0=gfLRNBy}seu>*adUIFJE z;C%z`xDh*b(cB^XZ5P^KSL<0#ATMkCbrV2mO|1&Z`)uvhp+_oxxBAd}vL8o!9*=Iz zb5}#P-6OLCofU_Dld3~k`V|d1io41Ko4satikh_Sm7+g%+oXGJbxAZC58jfiYt=4( zihUNX_qn6>C#$1sl5CevnnxhN_1OedbipNqTRe#cxjTejZ0ntRH`EnO4K}GghIMT3 zNBe!u`N=9SX0AL*RwvQ>F$G+-%-wijy-Wjr$V=TJEKQY?)wLDy2DdtsU^@L>E4-X) z1VJVJ)uNYQ*ZkAeM~TnT8U5(*=HXscCZ<$gO0;zy$@$fq#Nz721Vvi7!v{tD749Hx zolRyPPex!Kh&x#C9g^WI^UusQy)rZey=35U101j8E&(d;g?*2qP7{M?WQX*P4iOAq zXVN!f0-%^x--wl9knE_w(b3N(g%|S5E)W3Bo>vAiJB?OenHE7w_^rIMThE0I>JcuV zfR}=draFpDy{CR0CFr^>Q*3-NvhwTI!LR)ZmHk(ngJu&dXRi(hZ6#E0kq_QN8f)vC z5EtE`p%$)PvzCF71XBJpka;p^G*|H8$=3-zwFC4~0A=%SZ)}Qm_n7DSY<{ zQc#wWmmpt}?ut6y>o-e#I2|DJlPoePB?*ADwQN30VAJkbi}I6bzlF5Z(L=geNs8#B zt`)9hI!_-cPbH@;Ry*jbPRDq+l50MmE?KDjbUenXWNi@6fx)-mi+qr z$a3LXBm{$;_orB6hUH$9DzWTtH{{0$(`pNcuI7K)@b8rkI}Y7n-{{HRF)^tYGgt+r zt!=^pQ03;MbdjmR>VKS8JgF6BJ>eskwlP8L z29QzF^>_JO&Sml*+&h;ZZL@^8U#r;=j)zPnM7r+$>ly5K-IZynUcs|ttBLgKDn-~THk}>QN9_7A zEYz)B8Ig&um@eugnd=GCbqaOpztiB-NGH$t1tw=B5k7bI>ufl$b)f-O1SQIvYfRkl z(4panxuVaPT?znKqz~Xy;?Y|=7M2XUM~?%psN?MA!ccM5`9T)e$E(bzGh9S0XJ3Z` zyk&Fwt*3BIn$=T)E}n}Y&ye_FY1UTvSs~WTM+bGgqqCA6^tKvzXlayxMK|jj)JnpW zXlH7p*8DK)As7-_m4%gW zDc)1^m*h$0Ll|9Zu8%SD$LgPVrQ%gnMF+=YxL}H!w{{*&+)oFi92E`tF)H?N%ynY_ zu2ttESSuU|;(Eq8;u{HoDk65^&r<%!YG_~mr-UD~qMPuvd|Y4KB=O&2&6g% zwz|=*rW+EMwyBsd>n8h^>FOG+Pe>+w)%f$Gnx!_G3F1B{9ePN%T@o_q$7 z4joTg#1%0@am~qvSNk~A&ewgj11c=YoZBK)T&`?O3p^zn!YtEBER!(JFW2!+Zc!V$ z-0j6cHw zEydep5iz8@j#b+Z+xHwp^62O@mpfV{=F}cfZ_`+rq}y_A4NSyqYi$$CFAvVq$)Gn* zPE*lsyC|op{Jll+B?47uP>^mj|6?+?%I}G*k zHAm7eIB(j}u8~hX?sp0Qnp{m~aGbSxm4n9aIL8)MOv={_WV2#|iGHf)FY4m&`b59p z#GIPv`%2~h<8YcVU6*gTd$Z-aqC(DXbV6!wy3nY<00$w>J%f<5>xFabt%roJhx%M# zK7Be#z(Id%H6jy7h|bSJDK!^wzNXj8X#%r`pJCP(tb#myrv-O0gzNlYGDAjsDx zb-FI?J~nivh1EvMW^F)w?7kaYZgs0a_Oax|oLz3rA;Z|Ufe~-)WU6`s@a@Zc)aCUy zGTFwKGA}I;B|INN%-LZMOD;Ve`5|z-!u4RpRROIfzx8~#xerDpkkhqj$BY5&)UQmt z*V+#3pQ*i~ksr3pM+~`@%N01DJ0)N(Oo}&KXo~VE%!5=L@@@DTH2R5!>ry<1QfDbn zTN6fct6Og7OQ&7z?Bllq!JPsq{9c+5104B zo_}H?Ve2PIa>0{0M)luN&F4sd;k+_o0ASANm7NFBU>~Y^?qKi^;gXD_`CJMCVYY{A zIuR~ifGYf2JNp$T%xY(6Y9nvlsgo>BuN_ZUypr7sGpfYzFHc{HSfI6 z$D}XA^!YIj%&6KY7M-pcKcjFZJ8Sn-=5A=O2Ih$#hPChw%&5|J_9J%%Iiza2x@FJ{rj{D>$5xk`%r}S)*1nQ+C=p>?E!r#qMB@7 zq`uG*oF6bf0ylxL}zC1wpYE=@s-j#Rlsa01m0bQwA^yEP*|cQ09?1ik`)0${IkN+SAtP-n95Xa$Yu&0X2NmZ!>B;9HOBiR>QDE$OA=G` zF9IQU_@FS>P4#hc#{XkB!-F9d@xz+}Fq(Tjz=a2O(0@U7|Bzd$ik@vv|%a6*Z@q0B!C}>dKC6F62I%lRhk8Wz5l5QMoQ?SQYFnLnxK3 zU24!+eu|4b$D~S${M6Cy`$st5)i0YE8)J7CnV>^{nV6t7)kEu9x{MA21K1szxtWEF zMo~#2>`U);kUQ*h7w&w3X|9wLx0?p^3JEA+S_+4~vXmvL-BJ$*aY{r7KG108tvb~= zjHj(sVb+T0ocfg(^mKHHytPct1xcH5C8%=UZJOWY)|F%Z$4rKmAFTuD>ligG^g|3Gi6nv*T&10FQ0geMZEtAJW8x zscNr@0TZPkc(A*-_mXbig-wNkXh@^ctV1X60Kk7%Gn&~-X;ZV^51tV-bWU*g#Na{B zj|=)JdMC&@%INXva8-tMtt?dfMLtjZJ&wcZ?3yS;ZU^@mkxeGiH}}?+Q^T-~$sz|! zXcPp95IUZc%tkj>@iKck-r7*viY7rE@iIHRf~yX@E~vNbcdibm0vI~~bWdG8(sM^& z^u0kM;K`yFiOWeLys;l5nmKlXXLymaGc`x2*e{`GJY~DY)*lBS)1)7{QQ`O?1liFc z{$3m-=QO=x>z@ci%Ei{PAtFVXkBd~i>P96F3^K3UkW_^M7oHRQ)6lB@+fV=v4tu)M zE-@c~hpq^zq8)~a-oWgjf?iG8=1*^2HH60+GjcfwT%zw3jxe+{ z<()eQNX#4spSoKvR2w$;ZOiE9nepJtWg3c{K5>9=Y(j(L?);ch5DrR<{9Wq7u8DGL z94JIIa17spK_NhMYa6&X0ahpzQi#AKaVvax2!`T%yN^870`lnPXu}hEc54>vacn8V z?Lyh>=c`{AFLW~h0Q+M|1MH7w7dG4*Q#8W(3v~A4Xs~WVnZogmJDAo(F647^M=& zcXgGb^ZwL;8_}q=_&Xaa%eHxOl?Az!0g>MDP&X;fg{aG`Mm?7S!7MH?=Jp)Vc@>`g z*5ir;?ya|;Zrqo~Eq<-^<7ND*V6A81kNeW%CCY#bOZDaSwRwbpQBNC92DkyrC#C?~ zW$zAZsuDZ2^e`q<(GYlQMP&W<>%bXK6~9L!ZDDULJxlsO8AJC;#S4%t)*?vpTe3(s zGm7IbBbpPx!{&mDl>qADna@7Ug5m+d&>>T(Y{}y>#mf+a2T9UO6d%II$ z92e!}zsl?;Zn}<)7CCLZJla~ls?oMx9CQ2NQRDJ45N==bu2x)NK($!_*uX*YE^w|a% zlU%{McGafIVyRBf(BoD;y1WtCbJkDI2U|xBtFh(D(oYYItA>ZOR(L@_5))%S6FvGx zhsqK_30Lo)aJlTkO}92hvs?qMXMR3@6tme0*s?a&o=*L#H^cg0MDuLUyl3gKj`f^= z%yKe_x>K4%f$(Y7=do8`9Wx}4U5O*4!?<3W`W;I5Oy8I%xc`Zp_3QM#qI0SwN3xrb ztA2KMr2Q&58!dm^+v$q5z_xAMrxZ?;skvOIMEPT_8(RZ&jh_TsFK#W^$?g6`rM3Y9 z*U(&Qf)CVne8=bMfvR1GpX}C{Z0v;=uQ7?OCYIcz_4YHIzB=p3(TIf)4cCo((Jliw zV|~|J@?8b$iSPPg&SwqD+4fAUrS{~4TW&VZJ=g#-!4h0daB`)2;67d8u&ej2R2|eR zMg%E^y)3Wn;oFH_NU~f0aq_|L&!0c1(YcS!OZwY%`++TVe3v%f)WMG#a4RGrpXl~F zTXnW<%ug!fL^%y2_;ox z*H9V+0!DCnhn>NzI+=M6j`uuzN{(k2@K#GRyU%V$LPwV~$f3VoCg;#`+#ga_GR6H* z^TB%j%#*|v{W&CS`Vfz5m$VT0-KZ+*teT^AR1X0@px@|{%VnTdSM^$9fR`V>)uGRuecGF2;*%YOdO*9$E zX_y$lU1IFt{+!4`1^g#RKaLERC?_f;ub5@liG_^@M2hdHxR zff&KSXN%0%I5)l&3_}5q{FrFHLmpIQJlaoe>_)|sinn_3%mv+^!8VF|C9sbGU{^@POgug%#bRm%A^3?5|SI2E~N7lz+&;Dtae{8!#c;_|bx($Vb0!LPSI zrH{xjC*xZvvImk^xtiga1SN)*n#1ZadjQ>zEoP(hUc=j&_W1Aq0ttHtp;~5fjR9{; z%3`lp`N3U*DFOC??=;RH5RE8u+ZZT$-7PltbUW7-ZyM_gn*dd97b6%2t$!)w9R2PaVr)3s6WABO z@6hZ#k^2o77Lz@Z4if`BnhXCR1{QwiR9_B2mg;LEP1HH}aRIF?I4*$V4;O%RH$M%H z>ItMr{C4y`)b5>F_de7mJ!6Sib%aPA!TgsN)QWJ_`H$Tv?uEQqz=%m+< zH%LG;uFjpHAz9)A2=9`%KhNkA*I?W!*auZ3x4DhPw7xxe`ML2U*| ziTEtWoYiY>Sw_}mFH_FRxvqNS|Jy6)`k&4LebmIuRq%FX$$*Io#o{wPxZQM~pe-(9kntEMMj0(ESh1u{_3bEZ6EmbuN9a8+5@p zFdM2~Ga3C81)+|>j$OSY?{(g$_z8k%-X?2caSUby3QHDl1{tBQ|NOqRZvXJ?g6C^) z^qaZqvK9{8yoai7w7oV;>p}%83YKm8)Y7LM`ZG=?=1txVQn^yBq6*ynm9scEU!uCS zmRVdz8li4!tj^>$GRQ@>4aMF0EEVN7*)0L$Bd!*#>x06&i{4Iw{PV7_O|_jwbgjWf zR(ghylG=^Zr52{5yz1KL=W{#;*u@a5q67#&+<}W-6kKuD72T_uvLvXvVFe!)#PL_S zgF;YtmtPBtzz?|7@BvW#@F5%NcZCwlB%Ee0tKL&y0ZM>3uZ$N2I$)jvPy+juSAY_D zg>VT6fex4_0F=N!E z@@iDU=9~W~lz-^0bRzaAsYI;r6^WVEi2-{+bT*#oNLt}qwfkDaA$BCUHUmWbK6&wQ z?qaIx{BNxlkX04_)mqV&@UQ*VS^)voKCKl&N#Q=N6%b$nt<`U-6;NftQmeeUGG{Zf zueIO5Dh6fi?2}rNTR&k|$zhf^@4bE|((ugZ=RmLZM{5OSSzZ2Ly8MAGix|mA3}jjR zv{pct#U|*%CfMdw9IJ+`6=Ei4ExwFgHfBUF3XxOc7VgI|ABZp^g>)FHfXqskMOIcn zs451@Da-^(v@_GN$k0eC@R1^xNq~GRZJ$tTMB)CN@A52`!20x7E#DT9Pwmr5K|oZs zR-3(MBP(Cp;VGNw)^yaKkFUy&k3*0hCKu!;iaLFkx@AXiy!KssEr$@-ftGH_kBYBEww-HOGKlYdD;+#zrGxSQoG>jDTGT4DEYMUYSaMfA&mwRRSAwn})|2#DIYE z4a9)BY?E=Jpk`bsNTcMpaOw~F;Fe3*nra)Ft1hL!?OZ17d4LY_jO~}3Np(tHS=hi@ zDQaddv#r`2`!gec8?)Y1w-)z=6B#Ub8ItgR@YNjl;8TRY^kUa_vqRsF)3MX#!8E|s zi8oC{XC90-KAqy?ew80`N^8I#=Ye0rd*CxCWa9R;D>xEhO6X>nw_A?shH26lAgH;q zvblq8#FVCthq1#fLD6;VFRzQYom4+@O2jwAEJ3d}q%1g;aQ~q1;5}OU3sSeeuT77Z zjlf=i-Zz5Z0Bdc(0w<$Cui8U&N_;hgE)b8Oy4z*)@c4tY1kao0idmDBylFq3Vs~rp3m3r_2G7L;&`(&XCFV_ zUb_LmxE3d4iBtssHOynfZgZ7E-ZuzVq)fGPw)6J_7a9@3=ImaK2%tI%f;xX770`){ z;HuMrP6XVE||V2M{g__WLgY>4ORo9_;zyznyBJ zZJBK)-*f1Z55(jl5Z)=nwGQ{o@pHk$Fi&;YE`G%C8&TGC*W&$sIJ$Bd@8!o*H>Cgd z$p^u_;Mfh$tAj~^e^e{}?QPaRhOe$K#rI~1TEEITK~S5Sz&1shD?=$LQQCe6XZEmK=|X3{T#RSgq01fbhgXRp5pG zqUY<)wspT24KrlxBKyIjbl8JFiUDl#$|u+R@Vt8F=yd9y&7UYr8mkHVXtqnAiYZQi^gu z)*7B~UzUoH2wh?;IQGzmv)n^Y_YjNcdfc$sn%|r+Mr}zlY^cb@H|8RyR`RW@QL^LA z(#LM4hJ_u~pT&p5<{qkQ-ytN%$f>6!Mt`P%G_%9{U3TW%wz{|;^y=_W4ZDv7bk@}& zG98BVx8>KD94c8oTNjU$k8AY)oHzE1-9B+j8AZbAD$|sg&J@MB2alTalz%3MRNC1-e~4)n zHjhSSJI=+hTbq{W6T4npEz|phj#71AFtGy=bw9&OO5g@By0Y{m^ST5}&`B3VuO#FV z!Sl!~(oB$(7?&>gkF*1*IQD^?e+EH-ien$R`DYLWsD}4}8(c5|1VJS2h6L4Ytn%Eg z>=OYL8n;xu0s<4Cv;#u>6N#Us60;U+@sTpClhW2R)9B04d`_dG%yXxFuE{qCt<1_F z2O)xS-Ch5Ft?egz+pL8jkZ(>Nrm(+%A6mEK6kUlG_F6d=|MKw%eRy%QAvLb$FWq?141`oE_dhxW_HrH&?Q&lQ45$~Bxg z|KIf{a4-qPU0|IFeduBwkfA&e_*SX=TYds$C)8KacX0~+ZFiT;B88|A3&mII#t54=1F?&9J>22V`&HwI>v#8X zkBLB-#jvp#%detA%N%XhgvEHj2OH&X%#Y5%0Ta&32fqU*aJosQddqo)9ZN0b?jCN2r&Kb!s~E8nKVh$_|MoP(+mhPEhr?~T0G+X?4*4q z$wx^WOu{{yz5F#BY{ESz+&NV9ppwWv#pO9JvC!o1=)M$1#RvlRy%a@6K=!^AMSkLV zOMHr=ABoAn6vZMo_jr7YqMt+Az7$1ksb!VD3`O5`${PySwT$_~!g>k;UiqY%;V(i^ zNISB_w59?S@mBbRH-(BkWCF=y#gSE%M z^XuUA`IEJ93Zp4S9NEq*agc`i4bIDhB`k1~-tY6@$$RaV8Vq`Yt#_|=QPdAG7uGMQ~~gPJy`Q-zN*ezHq4LJF?SaC zi@x_VH-`jUJyY@)zon#mN`57$uW$;U9aDK*hI|XS&s&cZ)xM?#W2iy=aCRI{Db#jh z0^K7cf?SyJnwS&qfAa_}=hsnNi&8HH&a3^wbOD~06~zN^2=0MRD(5IpD05K2{dXbB z8uApgjKowjsDja8q{gtCjQoR?g)v=eh^gXFxa3bn1l(n1*cK-1*sC0np5|)MBkRa7 zxX{S)@ip%!Vqh1l|(p_0WprYTXE zCj0*&r#Uy)bI5LbOD^9sGlQGd|f<>@<1-S5YrQ-5+|%u+t2c$M!b3+lmq{y!+Rfd!@@(fEb+xg$Tq9*b0A z*UOHsf4W(XX_+?h-TJlpXsOx@^DBQT*Ap;khicI{2Cce_)FjPAU1 z3?DdLqdNzp;dlNWH2t+RZJEAwmnUbp=?jW)V`}JP9Xd|4mf{#GLv0}Wh1?QgpZP$+rS^l&3Z@c#>dpj^1 z5c5FeVwP~d-g3?S8vdk1}uWAJxV>BtN#@cJqn#-x5QA9H+^JHeF?FYY1C( z)SGQ3eZbQKy*f@dzcl>$Gouc}&F^`sHxqb^-bs9=@AbImvPV{1)og`{R|m zx0n6Jy~(*?r|I*tmIhBp9H%Vpsstj1^`-_}Ih=Tj8K3c!8!g`>q-x9DNrmFsC(%`%Dg;#WY65l4pi2}?C8O1YRGgw|J(@@ui?C9N zV$s~xuSQ&edX9sH=U>UBnK3+OH#eO~pf2SJ&m1HkCo||pgNM9S*0m*c0NVO(r<(Ye zO8iXH3b3~{`)bNLdyrt9(x9J=YsY3}g$F4lcoH~Ed{$O9@B7@52eNVw5ZESDX5~-< zW^$hf9th*P^^LdzZFy4P=p-zh`m2Ele6d+xnHg}Ytn$jNfQK-NaG3;r@h`;MuTdMS zpFI0GV0*42WGxi~v`6~Vb~2Od%a8(sc#rhWfL1c(lf*l*<6T()TLzm?^fp=Fzkw;> z)w>g_;qqSLd;Bk5B!Abx<=XD?zaXvl-*avE_+LN@gH&7ScdqSn(ULpzh)T{8K=g`5 z8j4AB0X@ItC$2j2d$r%K04e+`;7fP_bzdS0GLr<5!Ut7y4uYmfBMpxNPFPs5R2byn z>L46-0VmAl|Ah%~!ij{)R6>vZ6`n&ZLopy#+Rab}1Ukc}g9q)!6M0;iO^)r*KlSzCEd!F;4$)8@G@2RTw10 zCC!$&;Dl#_bEJP2XN2Q7C~?BGtiun6D&-^-%1q;P+YA%BvFks$W&EV9+DHCF$UF%8 z*O+;oM*@*Mkz=p6Y8YBw0ptX1nhi%d&*wV$)#803EYl0>o+>I~t@@{QFOD@da)0?U zv%sg%di4`*Bsg9Yz&V%A*Wz9m+aU<)8|p0Y+K*Z5n8~_aiyh{)r+$Q#$$O}!xq|tb z^A$tb2)RqbS(-FFDcsjqyrCLhnP?tA*l1jvY``x1-Ik2~?$7@!BqVoQf_ss!B;*mY zdGupnT7A5?g)pt;-rWU-=%($uhn3GiNV;~{`i+i`Ox%IgNvvNc{^n1wTl-iQ;d-NR zy)T77+Qpo($?wjUfOr`mNfx)*AKv?4j~$c4|F1X8CdCcn!kNu76P0@w#3!g+3U5K^ zo~}FLEeI8jn={^m@USh-;4Mg;Xnz;pf;<%+?7=HhZdsP(!>L%cB<_;=J1o&DkLDJh zeIptWLK;hoAdl$DLVtL}i;0k9ndE_D8%YVkl0 zHa36SDK7l!`?uE9@>Owa^^ZqB3&o}=8KbI$zf1&pe__g@m5*==BRyh0OA2WG2j(8$OnZAc1AviV(@f zdiYYSqUzQTyM6oDWoSnF;};0G4%lxVIF%LnGRE$51wN84O#^uk10MX!r>F?u8sc9# zSUUJ3byy zl&*=3eI4L#MSf9NN7~qN9wg*wm5~ohnHlpezrCgq$fIR`NT>tfGOeWoAGI z@(UAlp1qAM;Xev3bqck~->Z^sf(FLXW#KEE_dTYc`nCwAsfIp64ckb}RgI*0^p|=3 zu%jEWNwwu)V6d@fXc;ch1E86k$)UR0=_u*#!%kc02ymczrhbIiqPD*#R;D{~{PJ%> zQNa5^sqza+prGk|GJ``-Ea~l4NAOjS9wmtROxAX9%W8Uv-*CZ^u&FZFi82#;{ivYf zg}<62CTr*!|NHlt&G$!lJnC0}%=;P-`x#ZgcyT6;=R-X=t41+DlR*dj-Bk8%FsYH)s`7{B4wjKfOwv8kU07?v{GFNkzAgJrZSr26S){XA^(o z-;}DYUgM)26F%B68gf_jT`Z4{-n+xG{rrY)t0Ly~GAm9pbSi4wxN0DP4r`!_Bi7Uq9f zUg=2p7|^IA3DnXjBQgewV3e?as_vXJq_sOsk(QpZ+3BV|Np?`Lw}Wh~v1$T*3B!Yp zATJzucn(zD@D=Xx-1Ppws51cq7ku6eMRQ%;i$U)NpZA5LtrUi>D=w4V&?A9`**Ek^ z0rN+8Lyrt7uNBE}=#dNCW+St-#7HHJxa>5MC4yQIUCh&B9qhcW-1v=d?0lD;8DLE3 zb>+v!J9p>11Xz0z);++ZcL01sgH|Pn z7KC;8S$pucjgXq}A>eBp?S5ZS1ikR=ko7`(CKU@;hL4d2o+2Z^mrPF`Pk+P@fCP78 zdp|JLQOg?kd)Wlk@dTi>OWwT;@)LiB9Sz44-nxkn)I;0(@n4pAzYI!sc1Cq~K(q&*@GdHYOl?VJpl+y7OH6s^IWwm7w1 z6Cdp4YJ}ce0f4O>IZK8+8=f9AtLy!B_QR=M@`O>oXS#lQqe)KGuQeU6D|mMsdODF5 zaS-o$RURXE3&~q~^A>2(hG{SZdU-&D*5Gya_csh;U!I3->_%#cPJn+4*oGm@ zmXM>WOLQfazul-;1y0rboG#!sb#D{rjE{+mz&_fG)(1Wn@}mc7PkA7yk^>Cl*XuS_ zAD0v7Ow^t@1l+oCrMHsj+{g_Z|JdtXkEIhw>&8yd!3K4wz!_?~d&E8zZ+{VHz)2Gy z;k0K8OQC@6@o$TIBUi$Tp;5B%k3qc~yMi~U^qqeUYNt#c-k|cN{V}M$9BfO|a8A(j zOOfJs`>T8A`0ZHyo;kjDHpyrRZ;zEGeBkV8x~d22*`kAezm3UFoH6NgZTvc*iwxx! zq4`*ZqFZ)_h17#puaHNWh1LF8*e(hGSHL;@>sI{_-LK!Y$jLwxvI(TI84onu@13-ft!jqdb7!Z_`%yswYtio-xk&n z&n_)})E0OOvaH~*0Vvp=isxK4Pn;RED!)Cszzf)@--a4tyhTXY2J=yffPTx3iB){S z8#Exq8Q<_kV}n1Iy4Mvn{uTqo)1z{!gTVYI{TT^e2aeMs$ww_;ol(W(o*8l(oUI00 z^yHN=6uyC+x;mcEvWj6_SU}d?6jd8go2bO?81c;U{~`^>K`8*uS~}DInDD=P<3;`I zS7AVFCQ37)CSNlE55qn|dl9LkzAp=HYgDZkX<#Q!GhO&EFo4J)-fF5VO70I$Y4RLXV@!N~e4%8_rGrG9q9SP`fY!J{_Uk8c^sj z<&mWbQtPLjncvN10OL;Xw3llyhUv2WW9@O@;M$J-kjhKsiE@;Q{w*;}Ho!~FAlx^& zDlny1!A}?3Mv4NfL)|0ehT5L6=T&1RYj&>=FSjoVn{#AfcvpH+ zhOt{AM`yCxh&eWB3EKSt6EH67T=(P1p``j=w|QYwn_r}~Gn}+T6*{1(wO4QSIr%Mo zvf0AyM!QXF$VFksHccq+++~uZ*`IGK5lQ~~57yqY5__I}>-czRZgr*a!}am3|6Pv# zzogjX#AQw+D`TQwSqXX(WUW7kTcI@Sh~(fA0$afY zv=RsWqLc#aREb7;-j3QQDMa*L%^$VTCx{FdlpGW!usudYD?#JO9vWEpl=#lwpQFn^ zM=Jwl!pX`b$gb1etzEq1PtR~I&+A%yTGWx=$|D+9f~1hE0O_m9&wfKq1j#(~2sC{n ze__}bgx<-mf3WS=hPkfl4xuY@I}=yk+BTm?u3#27jU%3>##Vc@UbSuCj+yo`=NYW_ zSR}V?*o~QnzLPN^R_O_%f~k8es1`G8pcKu}sM z+FKz?0Nv%G6PKVH2J7jNSLTq|i(t#LWjif=h%A$xj3(wwKvxUVC$c1jOOnEi;1l{o zCp4^&9k?NJp#Q@5J=!c=TF{a>lbtw3^i(Yx)WEj-Vv?G^nO@2E(OdM&}bDcs?Q= z(I4QW9iQ68Ao?+@K$yA^Wf z#&%5&+O7$P<-`&{HomyX2!fV|C_aga?JsMx_JQ3AhI7OsW7sb)^7agbf~ACsP4h{t zf~Bkk&6lWEY^ez(UXUPTNNQ+;YQG2h3yXLNdUy~tHHi4zdw8@v+{PV*Cg6kL;3Y0Y zV-Dv*eJ%(-HoN05afeaiZ3OP}AEj_x(3DH$(1D0;?C838^T4!GYg0u_t^wT`S#$Cu z?7#>V6V_N5n}Ck{|7trIa46IN|Bpi?RGUJMWjAdHhYSXh&bt*l?B-AyQ4Yl*r-XS3 zwI!*wMU5P`Qmu28ah#zvwGN{k!x$2SiNRo)F*E=Bc}CjJ_y7A||LcGKx~{Hy?(^q< ze?E8j>$#t2rd+yUltU5-Ea|$RguR*!DuA%rPEIEpiw#S*oL)_~NbC$1T2tD>w4tDG zsAaeuJw8*qTa5zEjuZ>I<6E?@)#k1I=_>K+>J7nc=8eRD{uX<3RmqgaowQX?{d&)i zxnM^FOS?%?j~?QjbrgE4TLPtd>KAxPN@|pTE!C4x{=nh8KbS%hRb`Sy=@s@@Y&j+JO1e^vqTRKs_eFVETSLq;YIm+sYt+uc1*z&f$~Ac1 zy2C;8G#WSS_y+GziqbHTT<&oj`+d{rF}#mSa2UqJi7Q)5%am=4mM%ZUEQ7C_)bq`B zSiz8j?ypw=Lpf6X*y#j)#Mp_LIvN=?q&FB$&~;p)(FiyHwm8`9c=6$(ebsv}`}NYq zoF#9@MgP9BTbC!GM2~5u6AItwke03s?7cV^nS`6&hsuzJU_-idDwpQ>?yd<8uq~ZZ z5{rSmAA7GOs#+@1TGpZ@X6*PR8E12-cup&_F_t;B+Z1^>?b1+8^fQ!5=uh8jzVXZwBlQ$hov19#O*L0{Nn- zAJ`otGbAkh$f6Muf3R$^lI?!Iu72}oAekaFU9!Jb* zHXnEYz#;X6WkrHa zxGu1CxM=Q0_?H-f+$u$ufMCPb7bCOEX__Fgtr1g$z4#-uq96j7@?7K+1+f}8-p6V+ zjgH~Rt=mRSJm64+-QfquDeshVk^-^P;uTcf2@Bs)T2zVT^+bkvg%&H6!V+gS4daS? zt802vf*10b@3}b9ay#+3g@$_>8&_pI@_quztAeGViI!j^)SJydclw@sx1JWOav%X# zBE9p=JS&ka8W>>$he6`=zZ7>onxf&FknjY8;TANQZ~e8{GpRMC3|0%;PR7j((0+KP zQ8$N$EMSu!rxV?X4i|vPrJX)Rzit0T8=J3s1$jk?v^kt!V3so)EDFk`J0aWQe>yZ8 zb-~Jo|CyMm4S}-RggOo%pZBOLt@f5B9%8u#<+j1?o+1 zDmi3h#lwZHQ4agorCFjzlc3~UcaqEJeUGs!g99%&_S*FKnMG4CJzsUdtF@8()2bId z`X%1bvK_LoZ33s4TU%-#Xiu0DDEZ5R9J4^)rE!WZ^!8Rv-wBP*X*rp}w)DQN(5`Vm zN6JR`?HbG}eu3$*<#oH}=`~wRD2H6#GA^DxPr8p8_nUsY!md;})*^qq(P{4u!_S%| z{fkTPbg547R;MLt?38xK%LjGk2`VLnyH0BSqJDuUZZP)j%)^hww0Ooqxz^>HcD=p~ z$*tUs%iAGM272t8@(wrB7HPB6YleYc=>hnP?Um-!o5p^x>w|uJUV3qTqofsi*cr-^rGl}9n-muzpC(k8DPN)C#uZ>7yz{O)dY-1h8)uMK%n&5Mm}!{uA|8Em z%JR;KijnV^k)HX-$mO zi{etXF{{fo5;hU-KE|qlUUlrVf5;J+oL91@_8T6)VF1X@Sp^_B@yN?mHtkr|qg4<{ z-MR@Q@6ykITv-2ot{IClxz=&h_*L~BHQz%FG|Z{#?VeI!DHr?-##hQse`AFdi6}Qx z-W@JlhtO?$`+QOI0{FT|<`SqeUUG%7glrX4)q6SWJle~T=!NQXQB%XIq0qOauOvzPOoeO92kXhJ z7~NY^mbB!c)elvp8={UWnC6F>rZ>AR`|P~T&{bO^SWn`Qdp}3g4xt`N@kwCE@j8F}=ciw&nR~nfy>0RGpQS zx3knb%q?+3lK30>0rEgU$^gK1D6rc~(c4*Z9VS_dkRQmLgz^;>KX;-6L;-fFe zXI2eoMrkRW$}c^Y-o956%El@FXso;>OLd9--2<0eti@}zFS!Io?<}ZNv!|&YIjtpS zi;+?>P881~h+mVxOdh@*sim+sAKZEXBiH8>HCO$JxhEdS+a#v1uni;?00v6L@l3`1 zqIZGh>L1aGl5xBPVtxuoL2?Z&XB^J~R6Yfgia$b_M5#EQ7pUzI(n_$TaY@pwC6jmc zlPmNu?0IlNAKWiQUR6%6Q1)!xD^=$#W$3Aoa@Rw3ldtnUsC@Z*`GU_5q+QXKX%=*h zOZ8--2Nz@5H}fGNJX&gGM_8~gIi}5{jaiD@;l_FUyzKmg8)=Rd3G^xMTO$iU1*kI3 zkuHJp1zC$IdqR1eWKDnd7r1VR+rFU7avcj!GVU(p3Ri(&4(@*_k zxrD=#)&2cq=cE6DwvGM>;m-4JWZgXI&I2yOu=BXP4g*j&36fUFD1uLEb+iUTw)IX) z)Uq}zW1^J3a+KtFae&0<^Ht1qS@dR}U=ZT)u#hm#mv4~?%}{39+m#@}G=I9TtxaPf zfo^bl`#MWptbH1m71=zyg6@z)lb^f61HIikp`(YDX@2 z-o`qQ0rXvkpl@fm-NZl8v&#Q5Z+xNtBLY^F9;5Hz)JJqY?IwHseSHFZTRj#F2GA9m)OH^0y;jepq4vyXN1}@PZ$UHExT4xp z;YByQk0y_wJ9K|U2x@0sVL3&#WfysbCc;~`OG9m8d95g~)gzQ3+OnCA!#hMGK$qx%?u9*hVbk625(IWvZI~#bhSEu;KzJ*bUUA{eru>ic ze{{}#k8Ol0Si^j<^nM`zs#V!b9$m5;#~LU)R9ki*p;Av|lZEN}CXC0by1&Xbgf8TX zHeQ6*f=c_>M5 zI9%>D%`fd6)j~0f0s$5-MS$rJ0@v_ff3q84bUvUXa*Bw!5daXeH7qqW57$KHe^T*( zgyIulNx8I0U^xamwFk95B?upHRrr#J?W#ef_;P!JundBUJBNXTU;EL;o!RfE@A%iX%n}T@x=;Aq5@&nbjaxhBrCcGL4jAOkWt#4Nhk!}7r*;r z2tR&O#H}q}vpJJU*nqGQxL*`OFbJS78(%q1uwKWIQZUlStRzg5R2AxDg(=IoUN$n&efTJ>zC=2=Ou_EHyVJCos2-bSfsgcyD`5UxL6azF7pb z(j~RRhm99y6Ab5FUpAWW* z8&Lj(acf#}(3mC!jSB)_q$McjbLekSG8euxZT9POFqXD`uR1NR&JS7p>rWxGM(+#i zLNXINg^mgMK{?9Kd#*Z0mF6@&_%eXO$ z4`_^9<25)#%m(|>jl6_2GUY$8XXr%`nUmI zz8>OBY;PAd<<~~gia+1o=u$NIQ$a0-r5>9WSv9J;Z#1MZ<>^M3eC|&L9QH-2V(=n) zbiJiKkAKlDU-DzD+E&5QPxl}H;wSw|c6&STK|8;%!)QuUu2t~kbh-N4cGURp{fi9nD*EoqnN-N3y!9n)^dwNw-8Yd!8|8e(i^vl}l7njTv z|EFWyMW?n$9|-6c!Y$i+1+)OtF@z7*M z#rJ9d?h=%^v*7AFd)hkB_Wy8V3;pZJHu6m0-T!)IyXeFg*0YA64IhJp<6hZF!q3q) z{375E6L6j@3oBYv8_hAEuu`sbRtEGcaM*bU#tbeacs)Ys)Tvyd6&WSm;S`_!RM z+(kK@+ZT0Lpa1EebIDrz;apafYLVd63C&~~&f#33^U}z-@~Hm(XqWS7_!v65OBuw1 zj5bCFid2=0ek%_j*SkzippxP@iuX=Tr1!l>KHOeQfE23a>P}+0`5>_X`A8lYrI3%E zIQ^BndMnJ_&5;k>{Kr-}b@T4hnA!+vY#_ImL1T74s~k0t;pru%&iX<^pB=c6w6x;; z(85`5vE?n{6)44$6fn;4rTbFDBSuaM+J8w8*_p~4PkyY2**Q!U4%ZY}vg`x_%ZrbG zoY5okr?HmdyY_kwt$Fig#T|`5cc@vi)|qybphqj!RIx6zYa^~H{v|m;O%Rq;LNkAz zD)rCVy;Ju1CHB;EB9oG&{I~|t}Ac-sc*N zbkG(^;jk%o%8#FO|JZ6Jbpw2r&on$Vw#>g^$3D0_KCi739}cH?BWZ?{4I{};IkN`o zy~}<(EpM&_A9|G+nzQ?~tWuMDc=&Ta?t}sOKN-&6{##KubNf=GiNog%%Zhn_y4tjo#cj(%}jLFohQq9g0aDgwIWT6C;?3~okC z7p=_-y9bfatdm}me#;>$=}FP%l9PL`TgSV-zcFR)^DOpkl&KG8BGdT8?&m!zt4|00 za?x}T4TtS_FwfsA{W@AT)m@{!zuv@s#Gck{3x~v`pTgL)RV7Y0!PTF!GF6(#`dUC^NnJ;qkeyitrB7uXi4YiG z<*t!v_P~Bx|+35JXxt+7z}1A@&`QAdd1v*jO=xB zgpR$kYsB5=2R#>MdX6#-=1~2d+@Z<3>LxlrS$p*T(mY zgXv5-I1m%cD&R=a_gLZ(K`M?Fd7zdxBMO=4ZnGBjFIM2&kaEsn6KA)QSe=(;lbX~U z&u)cCY|(X34*g-(mS6AP?i$%YbWi2=LpXdukpBtHKs*UV-Sp<8NXq2rNML{jny$dz_`#~5ZM|QmP)bgv+}1pAbyGL zKkVT6^6NccDsdvdADZ__{?h}|c25kqm`*5cMOM!L!qg$NI9s5b0#WW$k66y@;Y@A6 zwa}aOmiu0-n3pZ7EIT8YS=)EPXuM6QJYPc4HTq+kbX)*sOV7}Xtm_&YO60Nx%Wk0! zDaLq?eTrAco9XLkOF{aT|Qy=M5}rm&E6VNH>3>m_8`)KRr;kJfSyCx+SQ7L_3Rnc0^NU8ICTho0x! zvbfZn8D%Yxd3T8~(&*#4HO;b7l`72k;?75w6@C1BFDOOfJ4_gJ@>{w`CO!)*Axo)= zQ3_Ozmz==<&A%8D{PkDxxngKmZJnWk{$2eYPVOwUR`DyLo`a1hC zb@rgVnQ$_N{@YqcS}ObYJwL&aDfa0uB#{g!NJr5PmKF>cxtanhS1E`Ry>MdGDFJS~ z;!OoU>M(D?<=ifz{ zbfJ!T>x(VNh^@Z+Tja}lRE@Slj~@WeoS*iPLoH^?2HBv-#M## zm?Je$!5t78-SUn^UWRk;#0oszb7)ceQWU(xQ zn6In0xGhFp1v0vY$|9iRRpcUDn9jC#oAeTWRr-#lUs}j`85%bN$b%A*sfyk8iJqjV`UqxrxK?g zzfXIPL}X24ytPq^oDqBtkjbCUvOBFMuE>GpAs{M9kGE|Yeh1jIcrNPh&rvmpqS~Ye ztt9K5CCl&b5>iuz*z)VM9@IHs_v+a~#vBIi$@@^qCnSx{eGV1W)G6bq<%I51v>jnM zh`q`-%_56*S0;^`N~L!;J1*<4(E0m$Z(?RQ!cj5QR!Tql%$8*I85YKzN84v zNn3qhKP|Z6+qcphr9Cqa`U%Ewy%PwIZmj7c z+GqS3ySZw%#JqJDhB=tdAOL^Zklm?R>?t)R<}XD@Ht3U@n7N&Ld48DO<4fTV@T3Xq z(3kq4dYUHIY-VCvNS`Z0myD2(dS;uQGNoqO8l7Kd>Js{MGnxNj#bSnAC#k%eMzl{8 zjoz(fB|^<305zc=^YO{uKxGe6_duLPQTM+ty?$Wh9k_cydPNFgMk4YSb-yfXzI#A=DS@t`2zdtr@+PLi zyshuP&|RTT_NWH}jv2ol@Jafy=o*oC-1al%q1?0}odY}&0?!W@qBtx9 zQkua$L@W-=BJ#w2dpcFb;wQjBB2-)GE_=bTpFPT692&(IUL&4VjRUGf9asB9&WdQo ztYFUBN902tTY8R92CUxDD=zOj0(n4rJmtj~^H?85Q4!=i>(q%rUZPDl$yY>X zxGxsYb&EO$v!hpt$g#W9r!6>kcj0ekP>z<9B{MmA;ikpxizhZdx9_5gq8=7V6!juU z!%?po#}h?;t0-;6W-cZg~9%osPwUX#64o z60zizVBlX74udnyYHlP^zp*JM}w1$!~0hx9C}BiXzGEd>YA#8 z+5FYCh`I4&ffsqS!Eyghr2zXty}merea8X;_8odR)K4EA4+15F8KATA@XtKz)_p92 z(b?Lxajn*N{+x3xf1F}d3+IwF8Z}5|T-Bw-`;+#ZG^cA&HyxX&H8$b(!$-X04F*+r z9}9QbS7mJ2ZC&q;KPaET7uZ1-i`hz{bZE#BUr!vHy_6AmX{N|bUh9p$> zIBmhd@O|l>V~@rEI{V{C{AOL>T@|F|{Jsqq#ndYUDWp^CrA`DImP6Uu$RAtL9zH>@ zp$Rq9d>WvH+}-p{9`@~~%9UKXoZZ6ilRtTDPOd!>ix=|3?cBrF;p<9T&iN3lk9i5% zyXoNhbjcMVm%Mp0q9V@ChCdZ`d@w{|$3Rcs0O<+1E`H6sw_&bL+BQS8iPlj?uY-1-WC2SWt#!bB~_uv;%4<+$%h~cKis)WvrhPMzhZ_*ICQbn?rbCHF(Yh) zwkS~z61@HKT)|{GcqNi`n94b5Jp(72)8PdCO61V2^HUjmS}NZ#W))$0+74-b0Y|Y$R05L+Sw-j3-!_&;=uTh;8_HqHji1`u4 zz@uStHJmtjGAwpQRqPsgX|(qYIqbuEZLwfIF%`o>A&m`5fEO>rMtvJ&I3ZM?uV?dY z8DmZgd43I$u8oz-1nf6UW6!B3`_GM3(=AAV{YJ_d(}4XVIOVyAZbN7s-Mkp^ z8>gPVeVxJ$x;X`4-fTU)-1R{&-MkH89Wz~sFW%yznFePwRMyLoU&~%p&{P4VGSSy59fFEU(l8-h~Q-|o~F?}A? zae#fJg&rIXdT{Ckn;Vz3jr(~mzut-%KJ6%Qm(tl0rU{#pZR-j+~M3BVD0Ru zQpZ~|4-V(PTSFM*e!5t3>H++6=N5xr@N#FltLWuU$aoOE-5IgRJ=?OR)y}(`pU4D& zD&cZo0=(}kms~CvdHnCID~aG`TJNorx_S~T*RF`Ftwp_hy{BgaKCecKPMae|s`Ev= z;i8-Kt>%kl;Z}P=tMl}}rsoVsQ3Vba)2SH^out~mk}giA@93`Vem;{LjCHqfW8&Xh zQg%i@ea@bXKbUuEi5C$%{wS!EufdoUm}*y0R%Ny-?Gm_qEmO=Ce@)#U(ZFHp8%fz5 zs@Y_pyiA$ORzJ;5(AzwpR?7=fbH+Ni;T*Rde!DxiXO0*>H8ar>+;<}CpyFmol0n^` znWU$uXLYXMC|`e#zVkpr-pcUM&@%t0=IdnFTw?RiK;Ue!8?--yv~M4+y{ULAH68BTtXBtN&y5j>6B^wzvHt z+mhjSETksq9Q1qaaO1Wu`o_U7d|ZjKfAKx4H+fk5#hdCtaL%_}cC=Su z&t08T$j!pJD(L*WtYJhd8|NCg)k^xh7yme>0Bk>3IXoGXEM=qrNg|-D(M=t5E^bEoYqtP9&XsdPb9t#acZaYWr z&^CTs9oUoHg7sJE^vpQs*D#z%yy{bQWRpp;DlpC(7^j~(W!Lq}SY+H5oU1Bq+yRMJ z6xC z;9YiIN8AH(Bp*jGeg+tS%IQ5kmU5z0cIDv?E!ieW%&j%DCgkAB)2Gb*>W1^U&R&Su zfeCaSaB6z6s)QEV!Z`$&yI3*vxHrC*qmgphin2^3e6*+R@bn@$LU^$)*s1$XNGSE? zGzITcT3TdQjI9&1zFs>~C$$v^D}Lq10SQPE1N`^b9!j>@IXE&}#N2Eb3*ChSGc^Va zWDwjR!65=K5Rsd~0@)~U--$R=IT4OLcv(!!E;vbTbJFU-*qsjoc=8{|?z=n2{mTu| zydVB|-2l%XGse_Bhwd6|Jv%m|a%XxqCOUr{=a(ZfY)|b?`3!WL+{FD$6ZKj9*svy`vFC?yvc|ns1)ctuoy^%@Vi|PtQ1^S4eIx?tA=3l!ZUNCaT~4 zH_y1@B!=LOC+Yb`v+Xd8_anl(5g~odD&XP;HfNT2XNKGNebEfBT=@Oy+D<$a9y5)nLj%uhk~B3lp3~XS z@N+8p}X)mF)ShYs~E2* zAA4MUBxMa<%mi-*A_;9PknnAO0#`q1l`NRF%4?2667u&z0-OXkrR5F<^#^rLU14(f z%XbL;eCWT)&^2>eszz>eFO4c)qZ=$88Cwia@n1f#bXDlKbVOj~$~kZz)ddkp!DcVG zat?xOr1%g~;QPi3rRIz(%4zfGu~PZ;y7bu)aN6Wt%`NlbW6*AMG&DY1%7+y80=!Q* z6awaOFMn>-K_DNmg6GK5BW221sWer?Q`0nbShQ45Wtc4_f!jkHdN z*ma;DA43&f128opwew`KI!8Fn70SzZKtUryDL|p6qu^w50PDmCL2S%9SUm(h(G|wZoq)fCQ@tVFGOQ9>kA}a3L%O?*LWNTM0OBFfblt0& zg^VdB^x4S|Xf7eiZ}xM^T)mZj`1DqQczla60e;+IAk`^=d5K9RZET~*s}#+AI#K?e zf^M2)66Wmd!NhZc;8=G@iL>45>e0k=AvNHUamfwe_9sId+a|%OF8+K(UVF^cMsOP- zUkaV4(Qn>GLCNJP@P-{u+Wn=H;V1U(^|Er@4mh|&Lc za)yQ`hX2e1e_ Q85&V1`~Uy| diff --git a/tasks/construction_tasks/custom/church_one_agent.json b/tasks/construction_tasks/custom/church_one_agent.json index 0d3e91e..235fb57 100644 --- a/tasks/construction_tasks/custom/church_one_agent.json +++ b/tasks/construction_tasks/custom/church_one_agent.json @@ -4,7 +4,7 @@ "goal": "Make a structure with the blueprint below", "conversation": "Let's share materials and make a structure with the blueprint", "agent_count": 1, - "timeout": 100, + "timeout": 1000, "blueprint": { "materials": { "oak_planks": 153, diff --git a/tasks/construction_tasks/custom/church_three_agents.json b/tasks/construction_tasks/custom/church_three_agents.json index af4219f..e6c6cc9 100644 --- a/tasks/construction_tasks/custom/church_three_agents.json +++ b/tasks/construction_tasks/custom/church_three_agents.json @@ -4,6 +4,7 @@ "goal": "Make a structure with the blueprint below", "conversation": "Let's share materials and make a structure with the blueprint", "agent_count": 3, + "timeout": 1000, "blueprint": { "materials": { "oak_planks": 153, diff --git a/tasks/construction_tasks/custom/church_two_agents.json b/tasks/construction_tasks/custom/church_two_agents.json new file mode 100644 index 0000000..2831758 --- /dev/null +++ b/tasks/construction_tasks/custom/church_two_agents.json @@ -0,0 +1,2353 @@ +{ + "church_two_agent": { + "type": "construction", + "goal": "Make a structure with the blueprint below", + "conversation": "Let's share materials and make a structure with the blueprint", + "agent_count": 1, + "timeout": 1000, + "blueprint": { + "materials": { + "oak_planks": 153, + "stone_bricks": 142, + "oak_door": 2, + "oak_stairs": 16, + "quartz_block": 1, + "glass_pane": 15, + "torch": 4, + "oak_fence": 4 + }, + "levels": [ + { + "level": 0, + "coordinates": [ + -18, + -60, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 1, + "coordinates": [ + -18, + -59, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "stone_bricks", + "stone_bricks", + "oak_door", + "stone_bricks", + "air", + "air", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "oak_stairs", + "oak_stairs", + "air", + "oak_stairs", + "oak_stairs", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "oak_stairs", + "oak_stairs", + "air", + "oak_stairs", + "oak_stairs", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "oak_stairs", + "oak_stairs", + "air", + "oak_stairs", + "oak_stairs", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "oak_stairs", + "oak_stairs", + "air", + "oak_stairs", + "oak_stairs", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "quartz_block", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 2, + "coordinates": [ + -18, + -58, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "glass_pane", + "stone_bricks", + "oak_door", + "stone_bricks", + "glass_pane", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "glass_pane", + "air", + "air", + "air", + "air", + "air", + "glass_pane", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "glass_pane", + "air", + "air", + "air", + "air", + "air", + "glass_pane", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "glass_pane", + "air", + "air", + "air", + "air", + "air", + "glass_pane", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "glass_pane", + "air", + "air", + "air", + "air", + "air", + "glass_pane", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "glass_pane", + "air", + "air", + "air", + "air", + "air", + "glass_pane", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "glass_pane", + "stone_bricks", + "glass_pane", + "stone_bricks", + "glass_pane", + "stone_bricks", + "air", + "air", + "air" + ] + ] + }, + { + "level": 3, + "coordinates": [ + -18, + -57, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "torch", + "air", + "air", + "air", + "torch", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "torch", + "air", + "air", + "air", + "torch", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "air", + "air", + "air" + ] + ] + }, + { + "level": 4, + "coordinates": [ + -18, + -56, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "air", + "air", + "air" + ] + ] + }, + { + "level": 5, + "coordinates": [ + -18, + -55, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "air", + "air", + "air" + ] + ] + }, + { + "level": 6, + "coordinates": [ + -18, + -54, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ] + ] + }, + { + "level": 7, + "coordinates": [ + -18, + -53, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 8, + "coordinates": [ + -18, + -52, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 9, + "coordinates": [ + -18, + -51, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 10, + "coordinates": [ + -18, + -50, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "oak_fence", + "oak_fence", + "oak_fence", + "air", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 11, + "coordinates": [ + -18, + -49, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "oak_fence", + "air", + "air", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 12, + "coordinates": [ + -18, + -48, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 13, + "coordinates": [ + -18, + -47, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 14, + "coordinates": [ + -18, + -46, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ] + ] + } + ] + }, + "initial_inventory": { + "0": { + "diamond_pickaxe": 1, + "diamond_axe": 1, + "diamond_shovel": 1, + "oak_planks": 153, + "oak_stairs": 16, + "torch": 4, + "oak_door": 2 + }, + "1": { + "diamond_pickaxe": 1, + "diamond_axe": 1, + "diamond_shovel": 1, + "stone_bricks": 142, + "quartz_block": 1, + "oak_fence": 4, + "glass_pane": 15 + } + } + } + } \ No newline at end of file diff --git a/tasks/construction_tasks/custom/pyramid.json b/tasks/construction_tasks/custom/pyramid.json index 398c37d..ed183c8 100644 --- a/tasks/construction_tasks/custom/pyramid.json +++ b/tasks/construction_tasks/custom/pyramid.json @@ -4,6 +4,7 @@ "goal": "Make a structure with the blueprint below", "conversation": "Let's share materials and make a structure with the blueprint", "agent_count": 2, + "timeout": 1000, "blueprint": { "materials": { "polished_granite": 1, diff --git a/tasks/cooking_tasks/human_ai_tasks/3_agent_1_human.json b/tasks/cooking_tasks/human_ai_tasks/3_agent_1_human.json index c47138b..f136bc5 100644 --- a/tasks/cooking_tasks/human_ai_tasks/3_agent_1_human.json +++ b/tasks/cooking_tasks/human_ai_tasks/3_agent_1_human.json @@ -1,435 +1,465 @@ { "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_rabbit_stew_1_human_3_agent": { - "conversation": "Let's work together to make cooked_beef, baked_potato, cake, rabbit_stew.", - "agent_count": 3, - "human_count": 1, - "target": { - "cooked_beef": 1, - "baked_potato": 1, - "cake": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + "conversation": "Let's work together to make cooked_beef, baked_potato, cake, rabbit_stew.", + "agent_count": 3, + "human_count": 1, + "target": { + "cooked_beef": 1, + "baked_potato": 1, + "cake": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", + "1": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + }, + "usernames": [ + "izzycw" ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - } }, "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_golden_apple_1_rabbit_stew_1_human_3_agent": { - "conversation": "Let's work together to make bread, cake, golden_apple, baked_potato, rabbit_stew.", - "agent_count": 3, - "human_count": 1, - "target": { - "bread": 1, - "cake": 1, - "golden_apple": 1, - "baked_potato": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + "conversation": "Let's work together to make bread, cake, golden_apple, baked_potato, rabbit_stew.", + "agent_count": 3, + "human_count": 1, + "target": { + "bread": 1, + "cake": 1, + "golden_apple": 1, + "baked_potato": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", + "1": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + }, + "usernames": [ + "izzycw" ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - } }, "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_golden_apple_1_human_3_agent": { - "conversation": "Let's work together to make baked_potato, bread, cooked_beef, golden_apple.", - "agent_count": 3, - "human_count": 1, - "target": { - "baked_potato": 1, - "bread": 1, - "cooked_beef": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + "conversation": "Let's work together to make baked_potato, bread, cooked_beef, golden_apple.", + "agent_count": 3, + "human_count": 1, + "target": { + "baked_potato": 1, + "bread": 1, + "cooked_beef": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + }, + "usernames": [ + "izzycw" ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - } }, "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_cooked_beef_1_golden_apple_1_human_3_agent": { - "conversation": "Let's work together to make cake, bread, golden_apple, baked_potato, cooked_beef.", - "agent_count": 3, - "human_count": 1, - "target": { - "cake": 1, - "bread": 1, - "golden_apple": 1, - "baked_potato": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." + "conversation": "Let's work together to make cake, bread, golden_apple, baked_potato, cooked_beef.", + "agent_count": 3, + "human_count": 1, + "target": { + "cake": 1, + "bread": 1, + "golden_apple": 1, + "baked_potato": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", + "1": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." + }, + "usernames": [ + "izzycw" ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "1": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." - } }, "multiagent_cooking_5_1_baked_potato_1_cake_1_golden_apple_1_rabbit_stew_1_human_3_agent": { - "conversation": "Let's work together to make rabbit_stew, golden_apple, cake, baked_potato.", - "agent_count": 3, - "human_count": 1, - "target": { - "rabbit_stew": 1, - "golden_apple": 1, - "cake": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." + "conversation": "Let's work together to make rabbit_stew, golden_apple, cake, baked_potato.", + "agent_count": 3, + "human_count": 1, + "target": { + "rabbit_stew": 1, + "golden_apple": 1, + "cake": 1, + "baked_potato": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", + "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." + }, + "usernames": [ + "izzycw" ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." - } }, "multiagent_cooking_5_1_bread_1_cooked_beef_1_golden_apple_1_rabbit_stew_1_human_3_agent": { - "conversation": "Let's work together to make bread, rabbit_stew, golden_apple, cooked_beef.", - "agent_count": 3, - "human_count": 1, - "target": { - "bread": 1, - "rabbit_stew": 1, - "golden_apple": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." + "conversation": "Let's work together to make bread, rabbit_stew, golden_apple, cooked_beef.", + "agent_count": 3, + "human_count": 1, + "target": { + "bread": 1, + "rabbit_stew": 1, + "golden_apple": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", + "1": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." + }, + "usernames": [ + "izzycw" ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "1": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." - } }, "multiagent_cooking_5_1_bread_1_cake_1_golden_apple_1_rabbit_stew_1_human_3_agent": { - "conversation": "Let's work together to make cake, rabbit_stew, golden_apple, bread.", - "agent_count": 3, - "human_count": 1, - "target": { - "cake": 1, - "rabbit_stew": 1, - "golden_apple": 1, - "bread": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." + "conversation": "Let's work together to make cake, rabbit_stew, golden_apple, bread.", + "agent_count": 3, + "human_count": 1, + "target": { + "cake": 1, + "rabbit_stew": 1, + "golden_apple": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", + "1": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread." + }, + "usernames": [ + "izzycw" ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "1": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread." - } }, "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_1_human_3_agent": { - "conversation": "Let's work together to make cooked_beef, golden_apple, cake, baked_potato, rabbit_stew.", - "agent_count": 3, - "human_count": 1, - "target": { - "cooked_beef": 1, - "golden_apple": 1, - "cake": 1, - "baked_potato": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + "conversation": "Let's work together to make cooked_beef, golden_apple, cake, baked_potato, rabbit_stew.", + "agent_count": 3, + "human_count": 1, + "target": { + "cooked_beef": 1, + "golden_apple": 1, + "cake": 1, + "baked_potato": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", + "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + }, + "usernames": [ + "izzycw" ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - } }, "multiagent_cooking_5_1_bread_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_1_human_3_agent": { - "conversation": "Let's work together to make cooked_beef, golden_apple, rabbit_stew, bread, cake.", - "agent_count": 3, - "human_count": 1, - "target": { - "cooked_beef": 1, - "golden_apple": 1, - "rabbit_stew": 1, - "bread": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + "conversation": "Let's work together to make cooked_beef, golden_apple, rabbit_stew, bread, cake.", + "agent_count": 3, + "human_count": 1, + "target": { + "cooked_beef": 1, + "golden_apple": 1, + "rabbit_stew": 1, + "bread": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", + "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + }, + "usernames": [ + "izzycw" ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - } }, "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_rabbit_stew_1_human_3_agent": { - "conversation": "Let's work together to make bread, cooked_beef, rabbit_stew, baked_potato.", - "agent_count": 3, - "human_count": 1, - "target": { - "bread": 1, - "cooked_beef": 1, - "rabbit_stew": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." + "conversation": "Let's work together to make bread, cooked_beef, rabbit_stew, baked_potato.", + "agent_count": 3, + "human_count": 1, + "target": { + "bread": 1, + "cooked_beef": 1, + "rabbit_stew": 1, + "baked_potato": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", + "1": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." + }, + "usernames": [ + "izzycw" ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "1": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." - } } - } \ No newline at end of file +} \ No newline at end of file diff --git a/tasks/crafting_tasks/human_ai_tasks/3_agent_1_human.json b/tasks/crafting_tasks/human_ai_tasks/3_agent_1_human.json new file mode 100644 index 0000000..0b524b0 --- /dev/null +++ b/tasks/crafting_tasks/human_ai_tasks/3_agent_1_human.json @@ -0,0 +1,1060 @@ +{ + "multiagent_crafting_requires_ctable_lectern_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an lectern", + "conversation": "Let's work together to craft an lectern.", + "initial_inventory": { + "0": { + "oak_slab": 1, + "bookshelf": 1, + "crafting_table": 1 + }, + "1": { + "oak_slab": 1 + }, + "2": { + "oak_slab": 1 + }, + "3": { + "oak_slab": 1 + } + }, + "agent_count": 3, + "human_count": 1, + "target": "lectern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 500, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [], + "requires_crafting_table": true, + "usernames": [ + "izzycw" + ] + }, + "multiagent_crafting_requires_ctable_polished_granite_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an polished_granite", + "conversation": "Let's work together to craft an polished_granite.", + "initial_inventory": { + "0": { + "granite": 1, + "crafting_table": 1 + }, + "1": { + "granite": 1 + }, + "2": { + "granite": 1 + }, + "3": { + "granite": 1 + } + }, + "agent_count": 3, + "human_count": 1, + "target": "polished_granite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 500, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [], + "requires_crafting_table": true, + "usernames": [ + "izzycw" + ] + }, + "multiagent_crafting_requires_ctable_smoker_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an smoker", + "conversation": "Let's work together to craft an smoker.", + "initial_inventory": { + "0": { + "dark_oak_log": 1, + "furnace": 1, + "crafting_table": 1 + }, + "1": { + "dark_oak_log": 1 + }, + "2": { + "dark_oak_log": 1 + }, + "3": { + "dark_oak_log": 1 + } + }, + "agent_count": 3, + "human_count": 1, + "target": "smoker", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 500, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [], + "requires_crafting_table": true, + "usernames": [ + "izzycw" + ] + }, + "multiagent_crafting_requires_ctable_white_banner_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "white_wool": 1, + "stick": 1, + "crafting_table": 1 + }, + "1": { + "white_wool": 3 + }, + "2": { + "white_wool": 1 + }, + "3": { + "white_wool": 1 + } + }, + "agent_count": 3, + "human_count": 1, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 500, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [], + "requires_crafting_table": true, + "usernames": [ + "izzycw" + ] + }, + "multiagent_crafting_requires_ctable_blue_banner_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an blue_banner", + "conversation": "Let's work together to craft an blue_banner.", + "initial_inventory": { + "0": { + "blue_wool": 1, + "stick": 1, + "crafting_table": 1 + }, + "1": { + "blue_wool": 1 + }, + "2": { + "blue_wool": 1 + }, + "3": { + "blue_wool": 3 + } + }, + "agent_count": 3, + "human_count": 1, + "target": "blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 500, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [], + "requires_crafting_table": true, + "usernames": [ + "izzycw" + ] + }, + "multiagent_crafting_requires_ctable_red_stained_glass_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an red_stained_glass", + "conversation": "Let's work together to craft an red_stained_glass.", + "initial_inventory": { + "0": { + "glass": 2, + "red_dye": 1, + "crafting_table": 1 + }, + "1": { + "glass": 2 + }, + "2": { + "glass": 2 + }, + "3": { + "glass": 2 + } + }, + "agent_count": 3, + "human_count": 1, + "target": "red_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 500, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [], + "requires_crafting_table": true, + "usernames": [ + "izzycw" + ] + }, + "multiagent_crafting_requires_ctable_white_banner_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "white_wool": 1, + "stick": 1, + "crafting_table": 1 + }, + "1": { + "white_wool": 3 + }, + "2": { + "white_wool": 1 + }, + "3": { + "white_wool": 1 + } + }, + "agent_count": 3, + "human_count": 1, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 500, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [], + "requires_crafting_table": true, + "usernames": [ + "izzycw" + ] + }, + "multiagent_crafting_requires_ctable_cyan_stained_glass_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an cyan_stained_glass", + "conversation": "Let's work together to craft an cyan_stained_glass.", + "initial_inventory": { + "0": { + "glass": 2, + "cyan_dye": 1, + "crafting_table": 1 + }, + "1": { + "glass": 2 + }, + "2": { + "glass": 2 + }, + "3": { + "glass": 2 + } + }, + "agent_count": 3, + "human_count": 1, + "target": "cyan_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 500, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [], + "requires_crafting_table": true, + "usernames": [ + "izzycw" + ] + }, + "multiagent_crafting_requires_ctable_waxed_oxidized_cut_copper_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an waxed_oxidized_cut_copper", + "conversation": "Let's work together to craft an waxed_oxidized_cut_copper.", + "initial_inventory": { + "0": { + "waxed_oxidized_copper": 1, + "crafting_table": 1 + }, + "1": { + "waxed_oxidized_copper": 1 + }, + "2": { + "waxed_oxidized_copper": 1 + }, + "3": { + "waxed_oxidized_copper": 1 + } + }, + "agent_count": 3, + "human_count": 1, + "target": "waxed_oxidized_cut_copper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 500, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [], + "requires_crafting_table": true, + "usernames": [ + "izzycw" + ] + }, + "multiagent_crafting_requires_ctable_blue_banner_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an blue_banner", + "conversation": "Let's work together to craft an blue_banner.", + "initial_inventory": { + "0": { + "blue_wool": 1, + "stick": 1, + "crafting_table": 1 + }, + "1": { + "blue_wool": 1 + }, + "2": { + "blue_wool": 1 + }, + "3": { + "blue_wool": 3 + } + }, + "agent_count": 3, + "human_count": 1, + "target": "blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 500, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [], + "requires_crafting_table": true, + "usernames": [ + "izzycw" + ] + }, + "multiagent_crafting_requires_ctable_white_banner_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "white_wool": 1, + "stick": 1, + "crafting_table": 1 + }, + "1": { + "white_wool": 3 + }, + "2": { + "white_wool": 1 + }, + "3": { + "white_wool": 1 + } + }, + "agent_count": 3, + "human_count": 1, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 500, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [], + "requires_crafting_table": true, + "usernames": [ + "izzycw" + ] + }, + "multiagent_crafting_requires_ctable_smoker_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an smoker", + "conversation": "Let's work together to craft an smoker.", + "initial_inventory": { + "0": { + "dark_oak_log": 1, + "furnace": 1, + "crafting_table": 1 + }, + "1": { + "dark_oak_log": 1 + }, + "2": { + "dark_oak_log": 1 + }, + "3": { + "dark_oak_log": 1 + } + }, + "agent_count": 3, + "human_count": 1, + "target": "smoker", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 500, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [], + "requires_crafting_table": true, + "usernames": [ + "izzycw" + ] + }, + "multiagent_crafting_requires_ctable_black_banner_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an black_banner", + "conversation": "Let's work together to craft an black_banner.", + "initial_inventory": { + "0": { + "black_wool": 1, + "stick": 1, + "crafting_table": 1 + }, + "1": { + "black_wool": 1 + }, + "2": { + "black_wool": 1 + }, + "3": { + "black_wool": 3 + } + }, + "agent_count": 3, + "human_count": 1, + "target": "black_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 500, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [], + "requires_crafting_table": true, + "usernames": [ + "izzycw" + ] + }, + "multiagent_crafting_requires_ctable_cyan_stained_glass_0_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an cyan_stained_glass", + "conversation": "Let's work together to craft an cyan_stained_glass.", + "initial_inventory": { + "0": { + "glass": 2, + "blue_dye": 1, + "crafting_table": 1 + }, + "1": { + "glass": 2, + "green_dye": 1 + }, + "2": { + "glass": 2 + }, + "3": { + "glass": 2 + } + }, + "agent_count": 3, + "human_count": 1, + "target": "cyan_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 500, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [], + "requires_crafting_table": true, + "usernames": [ + "izzycw" + ] + }, + "multiagent_crafting_requires_ctable_polished_granite_0_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an polished_granite", + "conversation": "Let's work together to craft an polished_granite.", + "initial_inventory": { + "0": { + "diorite": 1, + "quartz": 1, + "crafting_table": 1 + }, + "1": { + "diorite": 1, + "quartz": 1 + }, + "2": { + "diorite": 1, + "quartz": 1 + }, + "3": { + "diorite": 1, + "quartz": 1 + } + }, + "agent_count": 3, + "human_count": 1, + "target": "polished_granite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 500, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [], + "requires_crafting_table": true, + "usernames": [ + "izzycw" + ] + }, + "multiagent_crafting_requires_ctable_cyan_banner_0_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an cyan_banner", + "conversation": "Let's work together to craft an cyan_banner.", + "initial_inventory": { + "0": { + "cyan_dye": 1, + "black_wool": 1, + "oak_planks": 2, + "crafting_table": 1 + }, + "1": { + "cyan_dye": 1, + "black_wool": 1 + }, + "2": { + "cyan_dye": 3, + "black_wool": 3 + }, + "3": { + "cyan_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 3, + "human_count": 1, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 500, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [], + "requires_crafting_table": true, + "usernames": [ + "izzycw" + ] + }, + "multiagent_crafting_requires_ctable_white_banner_0_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "white_dye": 3, + "black_wool": 1, + "oak_planks": 2, + "crafting_table": 1 + }, + "1": { + "white_dye": 1, + "black_wool": 1 + }, + "2": { + "white_dye": 1, + "black_wool": 1 + }, + "3": { + "white_dye": 1, + "black_wool": 3 + } + }, + "agent_count": 3, + "human_count": 1, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 500, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [], + "requires_crafting_table": true, + "usernames": [ + "izzycw" + ] + }, + "multiagent_crafting_requires_ctable_bookshelf_2_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an bookshelf", + "conversation": "Let's work together to craft an bookshelf.", + "initial_inventory": { + "0": { + "oak_log": 2, + "paper": 3, + "crafting_table": 1 + }, + "1": { + "paper": 2, + "leather": 3 + }, + "2": { + "paper": 2 + }, + "3": { + "paper": 2 + } + }, + "agent_count": 3, + "human_count": 1, + "target": "bookshelf", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 500, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [], + "requires_crafting_table": true, + "usernames": [ + "izzycw" + ] + }, + "multiagent_crafting_requires_ctable_spectral_arrow_1_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an spectral_arrow", + "conversation": "Let's work together to craft an spectral_arrow.", + "initial_inventory": { + "0": { + "glowstone_dust": 1, + "flint": 1, + "crafting_table": 1 + }, + "1": { + "glowstone_dust": 1, + "stick": 1 + }, + "2": { + "glowstone_dust": 1, + "feather": 1 + }, + "3": { + "glowstone_dust": 1 + } + }, + "agent_count": 3, + "human_count": 1, + "target": "spectral_arrow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 500, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [], + "requires_crafting_table": true, + "usernames": [ + "izzycw" + ] + }, + "multiagent_crafting_requires_ctable_chest_minecart_2_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an chest_minecart", + "conversation": "Let's work together to craft an chest_minecart.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "iron_ingot": 1, + "crafting_table": 1 + }, + "1": { + "oak_planks": 2, + "iron_ingot": 2 + }, + "2": { + "oak_planks": 2, + "iron_ingot": 1 + }, + "3": { + "oak_planks": 2, + "iron_ingot": 1 + } + }, + "agent_count": 3, + "human_count": 1, + "target": "chest_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 500, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [], + "requires_crafting_table": true, + "usernames": [ + "izzycw" + ] + }, + "multiagent_crafting_requires_ctable_chest_minecart_3_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an chest_minecart", + "conversation": "Let's work together to craft an chest_minecart.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "iron_ingot": 1, + "crafting_table": 1 + }, + "1": { + "oak_planks": 2, + "iron_ingot": 2 + }, + "2": { + "oak_planks": 2, + "iron_ingot": 1 + }, + "3": { + "oak_planks": 2, + "iron_ingot": 1 + } + }, + "agent_count": 3, + "human_count": 1, + "target": "chest_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 500, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [], + "requires_crafting_table": true, + "usernames": [ + "izzycw" + ] + }, + "multiagent_crafting_requires_ctable_blue_banner_3_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an blue_banner", + "conversation": "Let's work together to craft an blue_banner.", + "initial_inventory": { + "0": { + "blue_wool": 1, + "oak_planks": 2, + "crafting_table": 1 + }, + "1": { + "blue_wool": 3 + }, + "2": { + "blue_wool": 1 + }, + "3": { + "blue_wool": 1 + } + }, + "agent_count": 3, + "human_count": 1, + "target": "blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 500, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [], + "requires_crafting_table": true, + "usernames": [ + "izzycw" + ] + }, + "multiagent_crafting_requires_ctable_cyan_banner_0_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an cyan_banner", + "conversation": "Let's work together to craft an cyan_banner.", + "initial_inventory": { + "0": { + "blue_dye": 3, + "black_wool": 1, + "crafting_table": 1 + }, + "1": { + "green_dye": 3, + "black_wool": 3 + }, + "2": { + "black_wool": 1, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + } + }, + "agent_count": 3, + "human_count": 1, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 500, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [], + "requires_crafting_table": true, + "usernames": [ + "izzycw" + ] + }, + "multiagent_crafting_requires_ctable_cyan_banner_2_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an cyan_banner", + "conversation": "Let's work together to craft an cyan_banner.", + "initial_inventory": { + "0": { + "blue_dye": 3, + "black_wool": 1, + "crafting_table": 1 + }, + "1": { + "green_dye": 3, + "black_wool": 3 + }, + "2": { + "black_wool": 1, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + } + }, + "agent_count": 3, + "human_count": 1, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 500, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [], + "requires_crafting_table": true, + "usernames": [ + "izzycw" + ] + }, + "multiagent_crafting_requires_ctable_spectral_arrow_2_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an spectral_arrow", + "conversation": "Let's work together to craft an spectral_arrow.", + "initial_inventory": { + "0": { + "glowstone_dust": 1, + "flint": 1, + "crafting_table": 1 + }, + "1": { + "glowstone_dust": 1, + "oak_planks": 2 + }, + "2": { + "glowstone_dust": 1, + "feather": 1 + }, + "3": { + "glowstone_dust": 1 + } + }, + "agent_count": 3, + "human_count": 1, + "target": "spectral_arrow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 500, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [], + "requires_crafting_table": true, + "usernames": [ + "izzycw" + ] + } +} \ No newline at end of file diff --git a/tasks/evaluation_script.py b/tasks/evaluation_script.py index 792cce7..0157f12 100644 --- a/tasks/evaluation_script.py +++ b/tasks/evaluation_script.py @@ -776,7 +776,7 @@ def main(): raise ValueError(f"Number of usernames provided ({len(username_lst)}) does not match human count ({human_count})") if human_count > 0: for task_id in task.keys(): - task[task_id]["usernames"] = args.usernames.replace(" ", "").split(",") + task[task_id]["usernames"] = username_lst # dump to task_path with open(args.task_path, 'w') as f: json.dump(task, f, indent=4) diff --git a/tasks/human_evaluation.js b/tasks/human_evaluation.js index d14accf..c4c5b7b 100644 --- a/tasks/human_evaluation.js +++ b/tasks/human_evaluation.js @@ -10,7 +10,7 @@ import { start } from 'repl'; // add a mineflayer bot the world named Andy const bot = mineflayer.createBot({ host: 'localhost', // Replace with your server IP or hostname - port: 55916, // Replace with your server port + port: 49262, // Replace with your server port username: 'andy', // Replace with your bot's username // password: 'your_bot_password' // Only if the server has online-mode=true }); @@ -57,10 +57,11 @@ bot.on('spawn', async () => { // initiate the world according to the construction or cooking world const usernames = args.usernames; + console.log(usernames); bot.chat(`/tp andy ${usernames[0]}`); await new Promise(resolve => setTimeout(resolve, 5000)); - console.log(taskData); - console.log(task_id); + // console.log(taskData); + // console.log(task_id); const task = taskData[task_id]; console.log(task); @@ -93,11 +94,11 @@ bot.on('spawn', async () => { console.log(blueprint); const result = blueprint.autoDelete(); const commands = result.commands; - for (const command of commands) { - bot.chat(command); - } - bot.chat(`/tp @a ${task.blueprint.levels[0].coordinates[0]} ${task.blueprint.levels[0].coordinates[1]} ${task.blueprint.levels[0].coordinates[2]}`); - bot.chat(`/tell ${user} You have the goal to ${task.goal}`); + // for (const command of commands) { + // bot.chat(command); + // } + // bot.chat(`/tp @a ${task.blueprint.levels[0].coordinates[0]} ${task.blueprint.levels[0].coordinates[1]} ${task.blueprint.levels[0].coordinates[2]}`); + // bot.chat(`/tell ${user} You have the goal to ${task.goal}`); //todo: some sort of blueprint visualizer } if (task.type === "cooking") { @@ -114,7 +115,7 @@ bot.on('spawn', async () => { const timeout = task.timeout; console.log(`Timeout set to ${timeout} seconds`); - await new Promise(resolve => setTimeout(resolve, timeout * 1000)); + // await new Promise(resolve => setTimeout(resolve, timeout * 1000)); if (task.type === "construction") { const blueprint = new Blueprint(task.blueprint); const check = blueprint.explainBlueprintDifference(bot); From 29b946b8bea7c6fe10939550ab1d04bfe6d42ebd Mon Sep 17 00:00:00 2001 From: Isadora White Date: Sat, 3 May 2025 15:06:22 -0700 Subject: [PATCH 015/101] new tasks --- .../equal_load_test_tasks/4_agent.json | 445 +++++++++++++++++ .../equal_load_test_tasks/5_agent.json | 455 ++++++++++++++++++ 2 files changed, 900 insertions(+) create mode 100644 tasks/cooking_tasks/equal_load_test_tasks/4_agent.json create mode 100644 tasks/cooking_tasks/equal_load_test_tasks/5_agent.json diff --git a/tasks/cooking_tasks/equal_load_test_tasks/4_agent.json b/tasks/cooking_tasks/equal_load_test_tasks/4_agent.json new file mode 100644 index 0000000..ce3c9bb --- /dev/null +++ b/tasks/cooking_tasks/equal_load_test_tasks/4_agent.json @@ -0,0 +1,445 @@ +{ + "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_rabbit_stew_4_agent": { + "conversation": "Let's work together to make cooked_beef, baked_potato, cake, rabbit_stew.", + "agent_count": 4, + "target": { + "cooked_beef": 1, + "baked_potato": 1, + "cake": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", + "1": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", + "2": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", + "3": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + } + }, + "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_golden_apple_1_rabbit_stew_4_agent": { + "conversation": "Let's work together to make bread, cake, golden_apple, baked_potato, rabbit_stew.", + "agent_count": 5, + "target": { + "bread": 1, + "cake": 1, + "golden_apple": 1, + "baked_potato": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", + "1": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", + "2": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", + "3": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + } + }, + "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_golden_apple_4_agent": { + "conversation": "Let's work together to make baked_potato, bread, cooked_beef, golden_apple.", + "agent_count": 4, + "target": { + "baked_potato": 1, + "bread": 1, + "cooked_beef": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", + "2": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", + "3": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + } + }, + "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_cooked_beef_1_golden_apple_4_agent": { + "conversation": "Let's work together to make cake, bread, golden_apple, baked_potato, cooked_beef.", + "agent_count": 4, + "target": { + "cake": 1, + "bread": 1, + "golden_apple": 1, + "baked_potato": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", + "1": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", + "2": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", + "3": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." + } + }, + "multiagent_cooking_5_1_baked_potato_1_cake_1_golden_apple_1_rabbit_stew_4_agent": { + "conversation": "Let's work together to make rabbit_stew, golden_apple, cake, baked_potato.", + "agent_count": 4, + "target": { + "rabbit_stew": 1, + "golden_apple": 1, + "cake": 1, + "baked_potato": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", + "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", + "2": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", + "3": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." + } + }, + "multiagent_cooking_5_1_bread_1_cooked_beef_1_golden_apple_1_rabbit_stew_4_agent": { + "conversation": "Let's work together to make bread, rabbit_stew, golden_apple, cooked_beef.", + "agent_count": 5, + "target": { + "bread": 1, + "rabbit_stew": 1, + "golden_apple": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", + "1": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", + "2": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", + "3": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." + } + }, + "multiagent_cooking_5_1_bread_1_cake_1_golden_apple_1_rabbit_stew_4_agent": { + "conversation": "Let's work together to make cake, rabbit_stew, golden_apple, bread.", + "agent_count": 5, + "target": { + "cake": 1, + "rabbit_stew": 1, + "golden_apple": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", + "1": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", + "2": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", + "3": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread." + } + }, + "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_4_agent": { + "conversation": "Let's work together to make cooked_beef, golden_apple, cake, baked_potato, rabbit_stew.", + "agent_count": 5, + "target": { + "cooked_beef": 1, + "golden_apple": 1, + "cake": 1, + "baked_potato": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", + "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", + "2": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", + "3": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + } + }, + "multiagent_cooking_5_1_bread_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_4_agent": { + "conversation": "Let's work together to make cooked_beef, golden_apple, rabbit_stew, bread, cake.", + "agent_count": 4, + "target": { + "cooked_beef": 1, + "golden_apple": 1, + "rabbit_stew": 1, + "bread": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", + "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", + "2": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", + "3": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + } + }, + "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_rabbit_stew_4_agent": { + "conversation": "Let's work together to make bread, cooked_beef, rabbit_stew, baked_potato.", + "agent_count": 5, + "target": { + "bread": 1, + "cooked_beef": 1, + "rabbit_stew": 1, + "baked_potato": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", + "1": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", + "2": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", + "3": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." + } + } +} \ No newline at end of file diff --git a/tasks/cooking_tasks/equal_load_test_tasks/5_agent.json b/tasks/cooking_tasks/equal_load_test_tasks/5_agent.json new file mode 100644 index 0000000..f1c9569 --- /dev/null +++ b/tasks/cooking_tasks/equal_load_test_tasks/5_agent.json @@ -0,0 +1,455 @@ +{ + "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_rabbit_stew": { + "conversation": "Let's work together to make cooked_beef, baked_potato, cake, rabbit_stew.", + "agent_count": 5, + "target": { + "cooked_beef": 1, + "baked_potato": 1, + "cake": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", + "1": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", + "2": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", + "3": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", + "4": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + } + }, + "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_golden_apple_1_rabbit_stew": { + "conversation": "Let's work together to make bread, cake, golden_apple, baked_potato, rabbit_stew.", + "agent_count": 5, + "target": { + "bread": 1, + "cake": 1, + "golden_apple": 1, + "baked_potato": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", + "1": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", + "2": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", + "3": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", + "4": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + } + }, + "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_golden_apple": { + "conversation": "Let's work together to make baked_potato, bread, cooked_beef, golden_apple.", + "agent_count": 5, + "target": { + "baked_potato": 1, + "bread": 1, + "cooked_beef": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", + "2": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", + "3": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", + "4": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + } + }, + "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_cooked_beef_1_golden_apple": { + "conversation": "Let's work together to make cake, bread, golden_apple, baked_potato, cooked_beef.", + "agent_count": 5, + "target": { + "cake": 1, + "bread": 1, + "golden_apple": 1, + "baked_potato": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", + "1": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", + "2": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", + "3": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", + "4": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." + } + }, + "multiagent_cooking_5_1_baked_potato_1_cake_1_golden_apple_1_rabbit_stew": { + "conversation": "Let's work together to make rabbit_stew, golden_apple, cake, baked_potato.", + "agent_count": 5, + "target": { + "rabbit_stew": 1, + "golden_apple": 1, + "cake": 1, + "baked_potato": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", + "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", + "2": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", + "3": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", + "4": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." + } + }, + "multiagent_cooking_5_1_bread_1_cooked_beef_1_golden_apple_1_rabbit_stew": { + "conversation": "Let's work together to make bread, rabbit_stew, golden_apple, cooked_beef.", + "agent_count": 5, + "target": { + "bread": 1, + "rabbit_stew": 1, + "golden_apple": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", + "1": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", + "2": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", + "3": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", + "4": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." + } + }, + "multiagent_cooking_5_1_bread_1_cake_1_golden_apple_1_rabbit_stew": { + "conversation": "Let's work together to make cake, rabbit_stew, golden_apple, bread.", + "agent_count": 5, + "target": { + "cake": 1, + "rabbit_stew": 1, + "golden_apple": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", + "1": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", + "2": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", + "3": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", + "4": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread." + } + }, + "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew": { + "conversation": "Let's work together to make cooked_beef, golden_apple, cake, baked_potato, rabbit_stew.", + "agent_count": 5, + "target": { + "cooked_beef": 1, + "golden_apple": 1, + "cake": 1, + "baked_potato": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", + "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", + "2": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", + "3": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", + "4": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + } + }, + "multiagent_cooking_5_1_bread_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew": { + "conversation": "Let's work together to make cooked_beef, golden_apple, rabbit_stew, bread, cake.", + "agent_count": 5, + "target": { + "cooked_beef": 1, + "golden_apple": 1, + "rabbit_stew": 1, + "bread": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", + "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", + "2": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", + "3": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", + "4": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + } + }, + "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_rabbit_stew": { + "conversation": "Let's work together to make bread, cooked_beef, rabbit_stew, baked_potato.", + "agent_count": 5, + "target": { + "bread": 1, + "cooked_beef": 1, + "rabbit_stew": 1, + "baked_potato": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", + "1": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", + "2": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", + "3": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", + "4": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." + } + } + } \ No newline at end of file From c045b4d36daae390dc3983ddf61457b30eaae585 Mon Sep 17 00:00:00 2001 From: Isadora White Date: Sat, 3 May 2025 18:01:05 -0700 Subject: [PATCH 016/101] improved Dockerfile --- Dockerfile | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 421dd8c..137e2cd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,7 @@ RUN apt-get -y install python3-boto3 RUN apt-get -y install python3-tqdm RUN apt-get -y install tmux -RUN git clone https://github.com/icwhite/mindcraft.git /mindcraft +RUN git clone https://github.com/kolbytn/mindcraft.git /mindcraft WORKDIR /mindcraft COPY ./server_data.zip /mindcraft RUN unzip server_data.zip @@ -22,9 +22,22 @@ RUN npm install # Copy the rest of the application code to the working directory +# RUN apt update +# RUN apt install bash ca-certificates wget git -y # install first to avoid openjdk install bug +# RUN apt install openjdk-17-jre-headless -y +RUN apt install -y wget apt-transport-https gnupg lsb-release + +# Add Adoptium repository key +RUN wget -O - https://packages.adoptium.net/artifactory/api/gpg/key/public | apt-key add - + +# Add Adoptium repository +RUN echo "deb https://packages.adoptium.net/artifactory/deb $(lsb_release -cs) main" > /etc/apt/sources.list.d/adoptium.list + +# Update package lists RUN apt update -RUN apt install bash ca-certificates wget git -y # install first to avoid openjdk install bug -RUN apt install openjdk-17-jre-headless -y + +# Install Temurin (Adoptium) Java 21 +RUN apt install temurin-21-jdk -y # Install unzip From 4a14b82c800bb7248d0e849114130455ce5b2a42 Mon Sep 17 00:00:00 2001 From: Isadora White Date: Sun, 4 May 2025 13:46:56 -0700 Subject: [PATCH 017/101] linux caps lock fix --- src/agent/vision/camera.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/agent/vision/camera.js b/src/agent/vision/camera.js index e8a07fb..3178a15 100644 --- a/src/agent/vision/camera.js +++ b/src/agent/vision/camera.js @@ -1,5 +1,5 @@ import { Viewer } from 'prismarine-viewer/viewer/lib/viewer.js'; -import { WorldView } from 'prismarine-viewer/viewer/lib/worldview.js'; +import { WorldView } from 'prismarine-viewer/viewer/lib/worldView.js'; import { getBufferFromStream } from 'prismarine-viewer/viewer/lib/simpleUtils.js'; import THREE from 'three'; From ae34261e5243a3521496d12086ec59c9639d5b8d Mon Sep 17 00:00:00 2001 From: Isadora White Date: Mon, 5 May 2025 12:30:35 -0700 Subject: [PATCH 018/101] new task files and fixing old ones --- .../equal_load_test_tasks/1_agent.json | 26 +-- .../1_agent_short_timeout.json | 0 .../equal_load_test_tasks/2_agent.json | 2 +- .../equal_load_test_tasks/3_agent.json | 6 +- .../equal_load_test_tasks/4_agent.json | 8 +- .../equal_load_test_tasks/rerun_1_agent.json | 124 ++++++++++ .../equal_load_test_tasks/rerun_2_agent.json | 49 ++++ .../equal_load_test_tasks/rerun_3_agent.json | 130 +++++++++++ .../equal_load_test_tasks/rerun_4_agent.json | 211 ++++++++++++++++++ 9 files changed, 535 insertions(+), 21 deletions(-) create mode 100644 tasks/cooking_tasks/equal_load_test_tasks/1_agent_short_timeout.json create mode 100644 tasks/cooking_tasks/equal_load_test_tasks/rerun_1_agent.json create mode 100644 tasks/cooking_tasks/equal_load_test_tasks/rerun_2_agent.json create mode 100644 tasks/cooking_tasks/equal_load_test_tasks/rerun_3_agent.json create mode 100644 tasks/cooking_tasks/equal_load_test_tasks/rerun_4_agent.json diff --git a/tasks/cooking_tasks/equal_load_test_tasks/1_agent.json b/tasks/cooking_tasks/equal_load_test_tasks/1_agent.json index 32075e9..c70c5e6 100644 --- a/tasks/cooking_tasks/equal_load_test_tasks/1_agent.json +++ b/tasks/cooking_tasks/equal_load_test_tasks/1_agent.json @@ -9,7 +9,7 @@ "rabbit_stew": 1 }, "type": "cooking", - "timeout": 500, + "timeout": 250, "recipes": { "cooked_beef": [ "Step 1: Kill a cow and pick up 1 beef that is dropped.", @@ -51,7 +51,7 @@ "rabbit_stew": 1 }, "type": "cooking", - "timeout": 500, + "timeout": 250, "recipes": { "bread": [ "Step 1: Go to the farm and collect 3 wheat.", @@ -96,7 +96,7 @@ "golden_apple": 1 }, "type": "cooking", - "timeout": 500, + "timeout": 250, "recipes": { "baked_potato": [ "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", @@ -131,7 +131,7 @@ "cooked_beef": 1 }, "type": "cooking", - "timeout": 500, + "timeout": 250, "recipes": { "cake": [ "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", @@ -172,7 +172,7 @@ "baked_potato": 1 }, "type": "cooking", - "timeout": 500, + "timeout": 250, "recipes": { "rabbit_stew": [ "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", @@ -205,7 +205,7 @@ }, "multiagent_cooking_5_1_bread_1_cooked_beef_1_golden_apple_1_rabbit_stew_1_agent": { "conversation": "Let's work together to make bread, rabbit_stew, golden_apple, cooked_beef.", - "agent_count": 2, + "agent_count": 1, "target": { "bread": 1, "rabbit_stew": 1, @@ -213,7 +213,7 @@ "cooked_beef": 1 }, "type": "cooking", - "timeout": 500, + "timeout": 250, "recipes": { "bread": [ "Step 1: Go to the farm and collect 3 wheat.", @@ -251,7 +251,7 @@ "bread": 1 }, "type": "cooking", - "timeout": 500, + "timeout": 250, "recipes": { "cake": [ "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", @@ -293,7 +293,7 @@ "rabbit_stew": 1 }, "type": "cooking", - "timeout": 500, + "timeout": 250, "recipes": { "cooked_beef": [ "Step 1: Kill a cow and pick up 1 beef that is dropped.", @@ -330,7 +330,7 @@ }, "multiagent_cooking_5_1_bread_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_1_agent": { "conversation": "Let's work together to make cooked_beef, golden_apple, rabbit_stew, bread, cake.", - "agent_count": 5, + "agent_count": 1, "target": { "cooked_beef": 1, "golden_apple": 1, @@ -339,7 +339,7 @@ "cake": 1 }, "type": "cooking", - "timeout": 500, + "timeout": 250, "recipes": { "cooked_beef": [ "Step 1: Kill a cow and pick up 1 beef that is dropped.", @@ -376,7 +376,7 @@ }, "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_rabbit_stew_1_agent": { "conversation": "Let's work together to make bread, cooked_beef, rabbit_stew, baked_potato.", - "agent_count": 2, + "agent_count": 1, "target": { "bread": 1, "cooked_beef": 1, @@ -384,7 +384,7 @@ "baked_potato": 1 }, "type": "cooking", - "timeout": 500, + "timeout": 250, "recipes": { "bread": [ "Step 1: Go to the farm and collect 3 wheat.", diff --git a/tasks/cooking_tasks/equal_load_test_tasks/1_agent_short_timeout.json b/tasks/cooking_tasks/equal_load_test_tasks/1_agent_short_timeout.json new file mode 100644 index 0000000..e69de29 diff --git a/tasks/cooking_tasks/equal_load_test_tasks/2_agent.json b/tasks/cooking_tasks/equal_load_test_tasks/2_agent.json index 5ccff29..1fb1c90 100644 --- a/tasks/cooking_tasks/equal_load_test_tasks/2_agent.json +++ b/tasks/cooking_tasks/equal_load_test_tasks/2_agent.json @@ -338,7 +338,7 @@ }, "multiagent_cooking_5_1_bread_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_2_agent": { "conversation": "Let's work together to make cooked_beef, golden_apple, rabbit_stew, bread, cake.", - "agent_count": 5, + "agent_count": 2, "target": { "cooked_beef": 1, "golden_apple": 1, diff --git a/tasks/cooking_tasks/equal_load_test_tasks/3_agent.json b/tasks/cooking_tasks/equal_load_test_tasks/3_agent.json index 0c76be9..54e0e2c 100644 --- a/tasks/cooking_tasks/equal_load_test_tasks/3_agent.json +++ b/tasks/cooking_tasks/equal_load_test_tasks/3_agent.json @@ -44,7 +44,7 @@ }, "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_golden_apple_1_rabbit_stew_3_agent": { "conversation": "Let's work together to make bread, cake, golden_apple, baked_potato, rabbit_stew.", - "agent_count": 5, + "agent_count": 3, "target": { "bread": 1, "cake": 1, @@ -215,7 +215,7 @@ }, "multiagent_cooking_5_1_bread_1_cooked_beef_1_golden_apple_1_rabbit_stew_3_agent": { "conversation": "Let's work together to make bread, rabbit_stew, golden_apple, cooked_beef.", - "agent_count": 5, + "agent_count": 3, "target": { "bread": 1, "rabbit_stew": 1, @@ -394,7 +394,7 @@ }, "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_rabbit_stew_3_agent": { "conversation": "Let's work together to make bread, cooked_beef, rabbit_stew, baked_potato.", - "agent_count": 5, + "agent_count": 3, "target": { "bread": 1, "cooked_beef": 1, diff --git a/tasks/cooking_tasks/equal_load_test_tasks/4_agent.json b/tasks/cooking_tasks/equal_load_test_tasks/4_agent.json index ce3c9bb..c2238d9 100644 --- a/tasks/cooking_tasks/equal_load_test_tasks/4_agent.json +++ b/tasks/cooking_tasks/equal_load_test_tasks/4_agent.json @@ -45,7 +45,7 @@ }, "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_golden_apple_1_rabbit_stew_4_agent": { "conversation": "Let's work together to make bread, cake, golden_apple, baked_potato, rabbit_stew.", - "agent_count": 5, + "agent_count": 4, "target": { "bread": 1, "cake": 1, @@ -261,7 +261,7 @@ }, "multiagent_cooking_5_1_bread_1_cake_1_golden_apple_1_rabbit_stew_4_agent": { "conversation": "Let's work together to make cake, rabbit_stew, golden_apple, bread.", - "agent_count": 5, + "agent_count": 4, "target": { "cake": 1, "rabbit_stew": 1, @@ -305,7 +305,7 @@ }, "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_4_agent": { "conversation": "Let's work together to make cooked_beef, golden_apple, cake, baked_potato, rabbit_stew.", - "agent_count": 5, + "agent_count": 4, "target": { "cooked_beef": 1, "golden_apple": 1, @@ -403,7 +403,7 @@ }, "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_rabbit_stew_4_agent": { "conversation": "Let's work together to make bread, cooked_beef, rabbit_stew, baked_potato.", - "agent_count": 5, + "agent_count": 4, "target": { "bread": 1, "cooked_beef": 1, diff --git a/tasks/cooking_tasks/equal_load_test_tasks/rerun_1_agent.json b/tasks/cooking_tasks/equal_load_test_tasks/rerun_1_agent.json new file mode 100644 index 0000000..50970ae --- /dev/null +++ b/tasks/cooking_tasks/equal_load_test_tasks/rerun_1_agent.json @@ -0,0 +1,124 @@ +{ + "multiagent_cooking_5_1_bread_1_cooked_beef_1_golden_apple_1_rabbit_stew_1_agent": { + "conversation": "Let's work together to make bread, rabbit_stew, golden_apple, cooked_beef.", + "agent_count": 1, + "target": { + "bread": 1, + "rabbit_stew": 1, + "golden_apple": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." + } + }, + "multiagent_cooking_5_1_bread_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_1_agent": { + "conversation": "Let's work together to make cooked_beef, golden_apple, rabbit_stew, bread, cake.", + "agent_count": 1, + "target": { + "cooked_beef": 1, + "golden_apple": 1, + "rabbit_stew": 1, + "bread": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + } + }, + "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_rabbit_stew_1_agent": { + "conversation": "Let's work together to make bread, cooked_beef, rabbit_stew, baked_potato.", + "agent_count": 1, + "target": { + "bread": 1, + "cooked_beef": 1, + "rabbit_stew": 1, + "baked_potato": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." + } + } +} \ No newline at end of file diff --git a/tasks/cooking_tasks/equal_load_test_tasks/rerun_2_agent.json b/tasks/cooking_tasks/equal_load_test_tasks/rerun_2_agent.json new file mode 100644 index 0000000..22b0487 --- /dev/null +++ b/tasks/cooking_tasks/equal_load_test_tasks/rerun_2_agent.json @@ -0,0 +1,49 @@ +{ + "multiagent_cooking_5_1_bread_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_2_agent": { + "conversation": "Let's work together to make cooked_beef, golden_apple, rabbit_stew, bread, cake.", + "agent_count": 2, + "target": { + "cooked_beef": 1, + "golden_apple": 1, + "rabbit_stew": 1, + "bread": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", + "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + } + } +} \ No newline at end of file diff --git a/tasks/cooking_tasks/equal_load_test_tasks/rerun_3_agent.json b/tasks/cooking_tasks/equal_load_test_tasks/rerun_3_agent.json new file mode 100644 index 0000000..be2b108 --- /dev/null +++ b/tasks/cooking_tasks/equal_load_test_tasks/rerun_3_agent.json @@ -0,0 +1,130 @@ +{ + "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_rabbit_stew_3_agent": { + "conversation": "Let's work together to make bread, cooked_beef, rabbit_stew, baked_potato.", + "agent_count": 3, + "target": { + "bread": 1, + "cooked_beef": 1, + "rabbit_stew": 1, + "baked_potato": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", + "1": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", + "2": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." + } + }, + "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_golden_apple_1_rabbit_stew_3_agent": { + "conversation": "Let's work together to make bread, cake, golden_apple, baked_potato, rabbit_stew.", + "agent_count": 3, + "target": { + "bread": 1, + "cake": 1, + "golden_apple": 1, + "baked_potato": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", + "1": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", + "2": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + } + }, + "multiagent_cooking_5_1_bread_1_cooked_beef_1_golden_apple_1_rabbit_stew_3_agent": { + "conversation": "Let's work together to make bread, rabbit_stew, golden_apple, cooked_beef.", + "agent_count": 3, + "target": { + "bread": 1, + "rabbit_stew": 1, + "golden_apple": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", + "1": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", + "2": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." + } + } +} \ No newline at end of file diff --git a/tasks/cooking_tasks/equal_load_test_tasks/rerun_4_agent.json b/tasks/cooking_tasks/equal_load_test_tasks/rerun_4_agent.json new file mode 100644 index 0000000..54380ec --- /dev/null +++ b/tasks/cooking_tasks/equal_load_test_tasks/rerun_4_agent.json @@ -0,0 +1,211 @@ +{ + "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_golden_apple_1_rabbit_stew_4_agent": { + "conversation": "Let's work together to make bread, cake, golden_apple, baked_potato, rabbit_stew.", + "agent_count": 4, + "target": { + "bread": 1, + "cake": 1, + "golden_apple": 1, + "baked_potato": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + } + }, + "multiagent_cooking_5_1_bread_1_cooked_beef_1_golden_apple_1_rabbit_stew_4_agent": { + "conversation": "Let's work together to make bread, rabbit_stew, golden_apple, cooked_beef.", + "agent_count": 4, + "target": { + "bread": 1, + "rabbit_stew": 1, + "golden_apple": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ] + } + }, + "multiagent_cooking_5_1_bread_1_cake_1_golden_apple_1_rabbit_stew_4_agent": { + "conversation": "Let's work together to make cake, rabbit_stew, golden_apple, bread.", + "agent_count": 4, + "target": { + "cake": 1, + "rabbit_stew": 1, + "golden_apple": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", + "1": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", + "2": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", + "3": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread." + } + }, + "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_4_agent": { + "conversation": "Let's work together to make cooked_beef, golden_apple, cake, baked_potato, rabbit_stew.", + "agent_count": 4, + "target": { + "cooked_beef": 1, + "golden_apple": 1, + "cake": 1, + "baked_potato": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", + "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", + "2": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", + "3": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + } + }, "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_rabbit_stew_4_agent": { + "conversation": "Let's work together to make bread, cooked_beef, rabbit_stew, baked_potato.", + "agent_count": 4, + "target": { + "bread": 1, + "cooked_beef": 1, + "rabbit_stew": 1, + "baked_potato": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", + "1": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", + "2": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", + "3": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." + } + } +} \ No newline at end of file From 343acd693ace0a172e5cd194011a66561dd61fb8 Mon Sep 17 00:00:00 2001 From: Isadora White Date: Mon, 5 May 2025 13:31:04 -0700 Subject: [PATCH 019/101] resolve conflict --- src/agent/tasks/tasks.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/agent/tasks/tasks.js b/src/agent/tasks/tasks.js index 55bafba..7b45a23 100644 --- a/src/agent/tasks/tasks.js +++ b/src/agent/tasks/tasks.js @@ -513,11 +513,7 @@ export class Task { await new Promise((resolve) => setTimeout(resolve, 1000)); waitCount++; } -<<<<<<< HEAD - if (other_name === undefined && this.agent_count > 1) { -======= if (other_name === undefined && this.data.agent_count > 1) { ->>>>>>> main console.log('No other agents found. Task unsuccessful.'); this.agent.killAll(); } From 94388efe8964da7959dd44081d893c5e294b8386 Mon Sep 17 00:00:00 2001 From: Isadora White Date: Mon, 5 May 2025 13:52:07 -0700 Subject: [PATCH 020/101] fix merge issues --- .../equal_load_test_tasks/1_agent.json | 20 +- .../1_agent_short_timeout.json | 415 ++++++++++++++++++ tasks/evaluation_script.py | 22 +- 3 files changed, 437 insertions(+), 20 deletions(-) diff --git a/tasks/cooking_tasks/equal_load_test_tasks/1_agent.json b/tasks/cooking_tasks/equal_load_test_tasks/1_agent.json index c70c5e6..fdf7d4e 100644 --- a/tasks/cooking_tasks/equal_load_test_tasks/1_agent.json +++ b/tasks/cooking_tasks/equal_load_test_tasks/1_agent.json @@ -9,7 +9,7 @@ "rabbit_stew": 1 }, "type": "cooking", - "timeout": 250, + "timeout": 500, "recipes": { "cooked_beef": [ "Step 1: Kill a cow and pick up 1 beef that is dropped.", @@ -51,7 +51,7 @@ "rabbit_stew": 1 }, "type": "cooking", - "timeout": 250, + "timeout": 500, "recipes": { "bread": [ "Step 1: Go to the farm and collect 3 wheat.", @@ -96,7 +96,7 @@ "golden_apple": 1 }, "type": "cooking", - "timeout": 250, + "timeout": 500, "recipes": { "baked_potato": [ "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", @@ -131,7 +131,7 @@ "cooked_beef": 1 }, "type": "cooking", - "timeout": 250, + "timeout": 500, "recipes": { "cake": [ "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", @@ -172,7 +172,7 @@ "baked_potato": 1 }, "type": "cooking", - "timeout": 250, + "timeout": 500, "recipes": { "rabbit_stew": [ "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", @@ -213,7 +213,7 @@ "cooked_beef": 1 }, "type": "cooking", - "timeout": 250, + "timeout": 500, "recipes": { "bread": [ "Step 1: Go to the farm and collect 3 wheat.", @@ -251,7 +251,7 @@ "bread": 1 }, "type": "cooking", - "timeout": 250, + "timeout": 500, "recipes": { "cake": [ "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", @@ -293,7 +293,7 @@ "rabbit_stew": 1 }, "type": "cooking", - "timeout": 250, + "timeout": 500, "recipes": { "cooked_beef": [ "Step 1: Kill a cow and pick up 1 beef that is dropped.", @@ -339,7 +339,7 @@ "cake": 1 }, "type": "cooking", - "timeout": 250, + "timeout": 500, "recipes": { "cooked_beef": [ "Step 1: Kill a cow and pick up 1 beef that is dropped.", @@ -384,7 +384,7 @@ "baked_potato": 1 }, "type": "cooking", - "timeout": 250, + "timeout": 500, "recipes": { "bread": [ "Step 1: Go to the farm and collect 3 wheat.", diff --git a/tasks/cooking_tasks/equal_load_test_tasks/1_agent_short_timeout.json b/tasks/cooking_tasks/equal_load_test_tasks/1_agent_short_timeout.json index e69de29..c70c5e6 100644 --- a/tasks/cooking_tasks/equal_load_test_tasks/1_agent_short_timeout.json +++ b/tasks/cooking_tasks/equal_load_test_tasks/1_agent_short_timeout.json @@ -0,0 +1,415 @@ +{ + "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_rabbit_stew_1_agent": { + "conversation": "Let's work together to make cooked_beef, baked_potato, cake, rabbit_stew.", + "agent_count": 1, + "target": { + "cooked_beef": 1, + "baked_potato": 1, + "cake": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 250, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + } + }, + "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_golden_apple_1_rabbit_stew_1_agent": { + "conversation": "Let's work together to make bread, cake, golden_apple, baked_potato, rabbit_stew.", + "agent_count": 1, + "target": { + "bread": 1, + "cake": 1, + "golden_apple": 1, + "baked_potato": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 250, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + } + }, + "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_golden_apple_1_agent": { + "conversation": "Let's work together to make baked_potato, bread, cooked_beef, golden_apple.", + "agent_count": 1, + "target": { + "baked_potato": 1, + "bread": 1, + "cooked_beef": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 250, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + } + }, + "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_cooked_beef_1_golden_apple_1_agent": { + "conversation": "Let's work together to make cake, bread, golden_apple, baked_potato, cooked_beef.", + "agent_count": 1, + "target": { + "cake": 1, + "bread": 1, + "golden_apple": 1, + "baked_potato": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 250, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." + } + }, + "multiagent_cooking_5_1_baked_potato_1_cake_1_golden_apple_1_rabbit_stew_1_agent": { + "conversation": "Let's work together to make rabbit_stew, golden_apple, cake, baked_potato.", + "agent_count": 1, + "target": { + "rabbit_stew": 1, + "golden_apple": 1, + "cake": 1, + "baked_potato": 1 + }, + "type": "cooking", + "timeout": 250, + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." + } + }, + "multiagent_cooking_5_1_bread_1_cooked_beef_1_golden_apple_1_rabbit_stew_1_agent": { + "conversation": "Let's work together to make bread, rabbit_stew, golden_apple, cooked_beef.", + "agent_count": 1, + "target": { + "bread": 1, + "rabbit_stew": 1, + "golden_apple": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 250, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." + } + }, + "multiagent_cooking_5_1_bread_1_cake_1_golden_apple_1_rabbit_stew_1_agent": { + "conversation": "Let's work together to make cake, rabbit_stew, golden_apple, bread.", + "agent_count": 1, + "target": { + "cake": 1, + "rabbit_stew": 1, + "golden_apple": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 250, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread." + } + }, + "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_1_agent": { + "conversation": "Let's work together to make cooked_beef, golden_apple, cake, baked_potato, rabbit_stew.", + "agent_count": 1, + "target": { + "cooked_beef": 1, + "golden_apple": 1, + "cake": 1, + "baked_potato": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 250, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + } + }, + "multiagent_cooking_5_1_bread_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_1_agent": { + "conversation": "Let's work together to make cooked_beef, golden_apple, rabbit_stew, bread, cake.", + "agent_count": 1, + "target": { + "cooked_beef": 1, + "golden_apple": 1, + "rabbit_stew": 1, + "bread": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 250, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + } + }, + "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_rabbit_stew_1_agent": { + "conversation": "Let's work together to make bread, cooked_beef, rabbit_stew, baked_potato.", + "agent_count": 1, + "target": { + "bread": 1, + "cooked_beef": 1, + "rabbit_stew": 1, + "baked_potato": 1 + }, + "type": "cooking", + "timeout": 250, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." + } + } + } \ No newline at end of file diff --git a/tasks/evaluation_script.py b/tasks/evaluation_script.py index 0157f12..a57af0a 100644 --- a/tasks/evaluation_script.py +++ b/tasks/evaluation_script.py @@ -770,16 +770,18 @@ def main(): content = f.read() task = json.loads(content) # check if human count for first task is non zero - human_count = task[list(task.keys())[0]]["human_count"] - username_lst = args.usernames.replace(" ", "").split(",") - if len(username_lst) != human_count: - raise ValueError(f"Number of usernames provided ({len(username_lst)}) does not match human count ({human_count})") - if human_count > 0: - for task_id in task.keys(): - task[task_id]["usernames"] = username_lst - # dump to task_path - with open(args.task_path, 'w') as f: - json.dump(task, f, indent=4) + if "human_count" in task[list(task.keys())[0]]: + # check if human count is non zero + human_count = task[list(task.keys())[0]]["human_count"] + username_lst = args.usernames.replace(" ", "").split(",") + if len(username_lst) != human_count: + raise ValueError(f"Number of usernames provided ({len(username_lst)}) does not match human count ({human_count})") + if human_count > 0: + for task_id in task.keys(): + task[task_id]["usernames"] = username_lst + # dump to task_path + with open(args.task_path, 'w') as f: + json.dump(task, f, indent=4) launch_parallel_experiments(args.task_path, num_exp=args.num_exp, From c42250717d6b8d6b503ef2d70b71046b85a50f46 Mon Sep 17 00:00:00 2001 From: Isadora White Date: Mon, 5 May 2025 14:19:14 -0700 Subject: [PATCH 021/101] fixing issues with inventory not being cleared for human users --- src/agent/tasks/tasks.js | 10 +- .../human_ai_tasks/1_agent_1_human.json | 838 +++++++++--------- 2 files changed, 438 insertions(+), 410 deletions(-) diff --git a/src/agent/tasks/tasks.js b/src/agent/tasks/tasks.js index 7b45a23..2f0ff23 100644 --- a/src/agent/tasks/tasks.js +++ b/src/agent/tasks/tasks.js @@ -382,6 +382,7 @@ export class Task { for (let agent of this.available_agents) { this.agent.bot.chat(`/clear ${agent}`); } + // this.agent.bot.chat(`/clear @a`); return {"message": 'Task successful', "score": res.score}; } let other_names = this.available_agents.filter(n => n !== this.name); @@ -454,17 +455,14 @@ export class Task { throw new Error(`Number of human players ${this.human_count} does not match the number of usernames provided. ${this.data.usernames.length}`); return; } - - // Clear inventory for all usernames - for (let username of this.data.usernames) { - await this.agent.bot.chat(`/clear ${username}`); - console.log(`Cleared ${username}'s inventory.`); - } const starting_idx = this.data.agent_count; for (let i = 0; i < this.data.human_count; i++) { const username = this.data.usernames[i]; + console.log(`\n\nCleared ${username}'s inventory.\n\n`); + await this.agent.bot.chat(`/clear ${username}`); + await new Promise((resolve) => setTimeout(resolve, 500)); console.log(`Giving ${username} ${this.data.initial_inventory[starting_idx + i]}`); const inventory = this.data.initial_inventory[starting_idx + i]; console.log(Object.keys(inventory)); diff --git a/tasks/cooking_tasks/human_ai_tasks/1_agent_1_human.json b/tasks/cooking_tasks/human_ai_tasks/1_agent_1_human.json index 7d8bda0..8bf0b07 100644 --- a/tasks/cooking_tasks/human_ai_tasks/1_agent_1_human.json +++ b/tasks/cooking_tasks/human_ai_tasks/1_agent_1_human.json @@ -1,435 +1,465 @@ { "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_rabbit_stew_1_human_1_agent": { - "conversation": "Let's work together to make cooked_beef, baked_potato, cake, rabbit_stew.", - "agent_count": 1, - "human_count": 1, - "target": { - "cooked_beef": 1, - "baked_potato": 1, - "cake": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + "conversation": "Let's work together to make cooked_beef, baked_potato, cake, rabbit_stew.", + "agent_count": 1, + "human_count": 1, + "target": { + "cooked_beef": 1, + "baked_potato": 1, + "cake": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", + "1": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + }, + "usernames": [ + "" ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - } }, "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_golden_apple_1_rabbit_stew_1_human_1_agent": { - "conversation": "Let's work together to make bread, cake, golden_apple, baked_potato, rabbit_stew.", - "agent_count": 1, - "human_count": 1, - "target": { - "bread": 1, - "cake": 1, - "golden_apple": 1, - "baked_potato": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + "conversation": "Let's work together to make bread, cake, golden_apple, baked_potato, rabbit_stew.", + "agent_count": 1, + "human_count": 1, + "target": { + "bread": 1, + "cake": 1, + "golden_apple": 1, + "baked_potato": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", + "1": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + }, + "usernames": [ + "" ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - } }, "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_golden_apple_1_human_1_agent": { - "conversation": "Let's work together to make baked_potato, bread, cooked_beef, golden_apple.", - "agent_count": 1, - "human_count": 1, - "target": { - "baked_potato": 1, - "bread": 1, - "cooked_beef": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + "conversation": "Let's work together to make baked_potato, bread, cooked_beef, golden_apple.", + "agent_count": 1, + "human_count": 1, + "target": { + "baked_potato": 1, + "bread": 1, + "cooked_beef": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + }, + "usernames": [ + "" ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - } }, "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_cooked_beef_1_golden_apple_1_human_1_agent": { - "conversation": "Let's work together to make cake, bread, golden_apple, baked_potato, cooked_beef.", - "agent_count": 1, - "human_count": 1, - "target": { - "cake": 1, - "bread": 1, - "golden_apple": 1, - "baked_potato": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." + "conversation": "Let's work together to make cake, bread, golden_apple, baked_potato, cooked_beef.", + "agent_count": 1, + "human_count": 1, + "target": { + "cake": 1, + "bread": 1, + "golden_apple": 1, + "baked_potato": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", + "1": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." + }, + "usernames": [ + "" ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "1": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." - } }, "multiagent_cooking_5_1_baked_potato_1_cake_1_golden_apple_1_rabbit_stew_1_human_1_agent": { - "conversation": "Let's work together to make rabbit_stew, golden_apple, cake, baked_potato.", - "agent_count": 1, - "human_count": 1, - "target": { - "rabbit_stew": 1, - "golden_apple": 1, - "cake": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." + "conversation": "Let's work together to make rabbit_stew, golden_apple, cake, baked_potato.", + "agent_count": 1, + "human_count": 1, + "target": { + "rabbit_stew": 1, + "golden_apple": 1, + "cake": 1, + "baked_potato": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", + "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." + }, + "usernames": [ + "" ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." - } }, "multiagent_cooking_5_1_bread_1_cooked_beef_1_golden_apple_1_rabbit_stew_1_human_1_agent": { - "conversation": "Let's work together to make bread, rabbit_stew, golden_apple, cooked_beef.", - "agent_count": 1, - "human_count": 1, - "target": { - "bread": 1, - "rabbit_stew": 1, - "golden_apple": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." + "conversation": "Let's work together to make bread, rabbit_stew, golden_apple, cooked_beef.", + "agent_count": 1, + "human_count": 1, + "target": { + "bread": 1, + "rabbit_stew": 1, + "golden_apple": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", + "1": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." + }, + "usernames": [ + "" ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "1": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." - } }, "multiagent_cooking_5_1_bread_1_cake_1_golden_apple_1_rabbit_stew_1_human_1_agent": { - "conversation": "Let's work together to make cake, rabbit_stew, golden_apple, bread.", - "agent_count": 1, - "human_count": 1, - "target": { - "cake": 1, - "rabbit_stew": 1, - "golden_apple": 1, - "bread": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." + "conversation": "Let's work together to make cake, rabbit_stew, golden_apple, bread.", + "agent_count": 1, + "human_count": 1, + "target": { + "cake": 1, + "rabbit_stew": 1, + "golden_apple": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", + "1": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread." + }, + "usernames": [ + "" ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "1": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread." - } }, "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_1_human_1_agent": { - "conversation": "Let's work together to make cooked_beef, golden_apple, cake, baked_potato, rabbit_stew.", - "agent_count": 1, - "human_count": 1, - "target": { - "cooked_beef": 1, - "golden_apple": 1, - "cake": 1, - "baked_potato": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + "conversation": "Let's work together to make cooked_beef, golden_apple, cake, baked_potato, rabbit_stew.", + "agent_count": 1, + "human_count": 1, + "target": { + "cooked_beef": 1, + "golden_apple": 1, + "cake": 1, + "baked_potato": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", + "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + }, + "usernames": [ + "" ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - } }, "multiagent_cooking_5_1_bread_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_1_human_1_agent": { - "conversation": "Let's work together to make cooked_beef, golden_apple, rabbit_stew, bread, cake.", - "agent_count": 1, - "human_count": 1, - "target": { - "cooked_beef": 1, - "golden_apple": 1, - "rabbit_stew": 1, - "bread": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + "conversation": "Let's work together to make cooked_beef, golden_apple, rabbit_stew, bread, cake.", + "agent_count": 1, + "human_count": 1, + "target": { + "cooked_beef": 1, + "golden_apple": 1, + "rabbit_stew": 1, + "bread": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", + "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + }, + "usernames": [ + "" ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - } }, "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_rabbit_stew_1_human_1_agent": { - "conversation": "Let's work together to make bread, cooked_beef, rabbit_stew, baked_potato.", - "agent_count": 1, - "human_count": 1, - "target": { - "bread": 1, - "cooked_beef": 1, - "rabbit_stew": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." + "conversation": "Let's work together to make bread, cooked_beef, rabbit_stew, baked_potato.", + "agent_count": 1, + "human_count": 1, + "target": { + "bread": 1, + "cooked_beef": 1, + "rabbit_stew": 1, + "baked_potato": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", + "1": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." + }, + "usernames": [ + "" ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "1": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." - } } - } \ No newline at end of file +} \ No newline at end of file From c5aaa43ade0121836d534aa334eb9df9262088aa Mon Sep 17 00:00:00 2001 From: Isadora White Date: Mon, 5 May 2025 14:20:02 -0700 Subject: [PATCH 022/101] dumb typo issue with worldview import --- src/agent/vision/camera.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/agent/vision/camera.js b/src/agent/vision/camera.js index e8a07fb..3178a15 100644 --- a/src/agent/vision/camera.js +++ b/src/agent/vision/camera.js @@ -1,5 +1,5 @@ import { Viewer } from 'prismarine-viewer/viewer/lib/viewer.js'; -import { WorldView } from 'prismarine-viewer/viewer/lib/worldview.js'; +import { WorldView } from 'prismarine-viewer/viewer/lib/worldView.js'; import { getBufferFromStream } from 'prismarine-viewer/viewer/lib/simpleUtils.js'; import THREE from 'three'; From 7c73afcfedf8475366f8b445215eadebf8c2784d Mon Sep 17 00:00:00 2001 From: Isadora White Date: Mon, 5 May 2025 15:00:58 -0700 Subject: [PATCH 023/101] fixed issue with inventory not being cleared --- src/agent/tasks/tasks.js | 17 +- .../human_ai_tasks/1_agent_1_human.json | 838 +++++++++--------- 2 files changed, 444 insertions(+), 411 deletions(-) diff --git a/src/agent/tasks/tasks.js b/src/agent/tasks/tasks.js index 7b45a23..65cb67e 100644 --- a/src/agent/tasks/tasks.js +++ b/src/agent/tasks/tasks.js @@ -425,6 +425,15 @@ export class Task { //wait for a bit so bots are teleported await new Promise((resolve) => setTimeout(resolve, 3000)); + if (this.agent.count_id === 0 && this.data.human_count > 0) { + console.log('Clearing human player inventories'); + for (let i = 0; i < this.data.human_count; i++) { + const username = this.data.usernames[i]; + await this.agent.bot.chat(`/clear ${username}`); + } + await new Promise((resolve) => setTimeout(resolve, 500)); + } + if (this.data.initial_inventory) { console.log("Setting inventory..."); let initialInventory = {}; @@ -446,6 +455,7 @@ export class Task { // if (typeof this.data.initial_inventory[firstKey] === 'object') { initialInventory = this.data.initial_inventory[this.agent.count_id.toString()] || {}; console.log("Initial inventory for agent", this.agent.count_id, ":", initialInventory); + console.log("") if (this.data.human_count > 0 && this.agent.count_id === 0) { // this.num_humans = num_keys - this.data.num_agents; @@ -454,18 +464,11 @@ export class Task { throw new Error(`Number of human players ${this.human_count} does not match the number of usernames provided. ${this.data.usernames.length}`); return; } - - // Clear inventory for all usernames - for (let username of this.data.usernames) { - await this.agent.bot.chat(`/clear ${username}`); - console.log(`Cleared ${username}'s inventory.`); - } const starting_idx = this.data.agent_count; for (let i = 0; i < this.data.human_count; i++) { const username = this.data.usernames[i]; - console.log(`Giving ${username} ${this.data.initial_inventory[starting_idx + i]}`); const inventory = this.data.initial_inventory[starting_idx + i]; console.log(Object.keys(inventory)); for (let key of Object.keys(inventory)) { diff --git a/tasks/cooking_tasks/human_ai_tasks/1_agent_1_human.json b/tasks/cooking_tasks/human_ai_tasks/1_agent_1_human.json index 7d8bda0..32e736e 100644 --- a/tasks/cooking_tasks/human_ai_tasks/1_agent_1_human.json +++ b/tasks/cooking_tasks/human_ai_tasks/1_agent_1_human.json @@ -1,435 +1,465 @@ { "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_rabbit_stew_1_human_1_agent": { - "conversation": "Let's work together to make cooked_beef, baked_potato, cake, rabbit_stew.", - "agent_count": 1, - "human_count": 1, - "target": { - "cooked_beef": 1, - "baked_potato": 1, - "cake": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + "conversation": "Let's work together to make cooked_beef, baked_potato, cake, rabbit_stew.", + "agent_count": 1, + "human_count": 1, + "target": { + "cooked_beef": 1, + "baked_potato": 1, + "cake": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", + "1": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + }, + "usernames": [ + "izzycw" ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - } }, "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_golden_apple_1_rabbit_stew_1_human_1_agent": { - "conversation": "Let's work together to make bread, cake, golden_apple, baked_potato, rabbit_stew.", - "agent_count": 1, - "human_count": 1, - "target": { - "bread": 1, - "cake": 1, - "golden_apple": 1, - "baked_potato": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + "conversation": "Let's work together to make bread, cake, golden_apple, baked_potato, rabbit_stew.", + "agent_count": 1, + "human_count": 1, + "target": { + "bread": 1, + "cake": 1, + "golden_apple": 1, + "baked_potato": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", + "1": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + }, + "usernames": [ + "izzycw" ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - } }, "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_golden_apple_1_human_1_agent": { - "conversation": "Let's work together to make baked_potato, bread, cooked_beef, golden_apple.", - "agent_count": 1, - "human_count": 1, - "target": { - "baked_potato": 1, - "bread": 1, - "cooked_beef": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + "conversation": "Let's work together to make baked_potato, bread, cooked_beef, golden_apple.", + "agent_count": 1, + "human_count": 1, + "target": { + "baked_potato": 1, + "bread": 1, + "cooked_beef": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + }, + "usernames": [ + "izzycw" ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - } }, "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_cooked_beef_1_golden_apple_1_human_1_agent": { - "conversation": "Let's work together to make cake, bread, golden_apple, baked_potato, cooked_beef.", - "agent_count": 1, - "human_count": 1, - "target": { - "cake": 1, - "bread": 1, - "golden_apple": 1, - "baked_potato": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." + "conversation": "Let's work together to make cake, bread, golden_apple, baked_potato, cooked_beef.", + "agent_count": 1, + "human_count": 1, + "target": { + "cake": 1, + "bread": 1, + "golden_apple": 1, + "baked_potato": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", + "1": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." + }, + "usernames": [ + "izzycw" ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "1": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." - } }, "multiagent_cooking_5_1_baked_potato_1_cake_1_golden_apple_1_rabbit_stew_1_human_1_agent": { - "conversation": "Let's work together to make rabbit_stew, golden_apple, cake, baked_potato.", - "agent_count": 1, - "human_count": 1, - "target": { - "rabbit_stew": 1, - "golden_apple": 1, - "cake": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." + "conversation": "Let's work together to make rabbit_stew, golden_apple, cake, baked_potato.", + "agent_count": 1, + "human_count": 1, + "target": { + "rabbit_stew": 1, + "golden_apple": 1, + "cake": 1, + "baked_potato": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", + "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." + }, + "usernames": [ + "izzycw" ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." - } }, "multiagent_cooking_5_1_bread_1_cooked_beef_1_golden_apple_1_rabbit_stew_1_human_1_agent": { - "conversation": "Let's work together to make bread, rabbit_stew, golden_apple, cooked_beef.", - "agent_count": 1, - "human_count": 1, - "target": { - "bread": 1, - "rabbit_stew": 1, - "golden_apple": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." + "conversation": "Let's work together to make bread, rabbit_stew, golden_apple, cooked_beef.", + "agent_count": 1, + "human_count": 1, + "target": { + "bread": 1, + "rabbit_stew": 1, + "golden_apple": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", + "1": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." + }, + "usernames": [ + "izzycw" ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "1": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." - } }, "multiagent_cooking_5_1_bread_1_cake_1_golden_apple_1_rabbit_stew_1_human_1_agent": { - "conversation": "Let's work together to make cake, rabbit_stew, golden_apple, bread.", - "agent_count": 1, - "human_count": 1, - "target": { - "cake": 1, - "rabbit_stew": 1, - "golden_apple": 1, - "bread": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." + "conversation": "Let's work together to make cake, rabbit_stew, golden_apple, bread.", + "agent_count": 1, + "human_count": 1, + "target": { + "cake": 1, + "rabbit_stew": 1, + "golden_apple": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", + "1": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread." + }, + "usernames": [ + "izzycw" ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "1": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread." - } }, "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_1_human_1_agent": { - "conversation": "Let's work together to make cooked_beef, golden_apple, cake, baked_potato, rabbit_stew.", - "agent_count": 1, - "human_count": 1, - "target": { - "cooked_beef": 1, - "golden_apple": 1, - "cake": 1, - "baked_potato": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + "conversation": "Let's work together to make cooked_beef, golden_apple, cake, baked_potato, rabbit_stew.", + "agent_count": 1, + "human_count": 1, + "target": { + "cooked_beef": 1, + "golden_apple": 1, + "cake": 1, + "baked_potato": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", + "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + }, + "usernames": [ + "izzycw" ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - } }, "multiagent_cooking_5_1_bread_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_1_human_1_agent": { - "conversation": "Let's work together to make cooked_beef, golden_apple, rabbit_stew, bread, cake.", - "agent_count": 1, - "human_count": 1, - "target": { - "cooked_beef": 1, - "golden_apple": 1, - "rabbit_stew": 1, - "bread": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + "conversation": "Let's work together to make cooked_beef, golden_apple, rabbit_stew, bread, cake.", + "agent_count": 1, + "human_count": 1, + "target": { + "cooked_beef": 1, + "golden_apple": 1, + "rabbit_stew": 1, + "bread": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", + "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + }, + "usernames": [ + "izzycw" ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - } }, "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_rabbit_stew_1_human_1_agent": { - "conversation": "Let's work together to make bread, cooked_beef, rabbit_stew, baked_potato.", - "agent_count": 1, - "human_count": 1, - "target": { - "bread": 1, - "cooked_beef": 1, - "rabbit_stew": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." + "conversation": "Let's work together to make bread, cooked_beef, rabbit_stew, baked_potato.", + "agent_count": 1, + "human_count": 1, + "target": { + "bread": 1, + "cooked_beef": 1, + "rabbit_stew": 1, + "baked_potato": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", + "1": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." + }, + "usernames": [ + "izzycw" ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "1": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." - } } - } \ No newline at end of file +} \ No newline at end of file From 3ef7f89773e9022066596bdec36dfa4353b7e926 Mon Sep 17 00:00:00 2001 From: Isadora White Date: Mon, 5 May 2025 15:36:56 -0700 Subject: [PATCH 024/101] construction human ai experiments --- .../human_ai/1_agent_1_human.json | 2354 ++++++++++++++++ .../human_ai/2_agent_1_human.json | 2375 +++++++++++++++++ .../human_ai_tasks/1_agent_1_human.json | 1528 ++++++----- 3 files changed, 5488 insertions(+), 769 deletions(-) create mode 100644 tasks/construction_tasks/human_ai/1_agent_1_human.json create mode 100644 tasks/construction_tasks/human_ai/2_agent_1_human.json diff --git a/tasks/construction_tasks/human_ai/1_agent_1_human.json b/tasks/construction_tasks/human_ai/1_agent_1_human.json new file mode 100644 index 0000000..9d77488 --- /dev/null +++ b/tasks/construction_tasks/human_ai/1_agent_1_human.json @@ -0,0 +1,2354 @@ +{ + "church": { + "type": "construction", + "goal": "Make a structure with the blueprint below", + "conversation": "Let's share materials and make a structure with the blueprint", + "agent_count": 1, + "human_count": 1, + "timeout": 600, + "blueprint": { + "materials": { + "oak_planks": 153, + "stone_bricks": 142, + "oak_door": 2, + "oak_stairs": 16, + "quartz_block": 1, + "glass_pane": 15, + "torch": 4, + "oak_fence": 4 + }, + "levels": [ + { + "level": 0, + "coordinates": [ + -18, + -60, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 1, + "coordinates": [ + -18, + -59, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "stone_bricks", + "stone_bricks", + "oak_door", + "stone_bricks", + "air", + "air", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "oak_stairs", + "oak_stairs", + "air", + "oak_stairs", + "oak_stairs", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "oak_stairs", + "oak_stairs", + "air", + "oak_stairs", + "oak_stairs", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "oak_stairs", + "oak_stairs", + "air", + "oak_stairs", + "oak_stairs", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "oak_stairs", + "oak_stairs", + "air", + "oak_stairs", + "oak_stairs", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "quartz_block", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 2, + "coordinates": [ + -18, + -58, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "glass_pane", + "stone_bricks", + "oak_door", + "stone_bricks", + "glass_pane", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "glass_pane", + "air", + "air", + "air", + "air", + "air", + "glass_pane", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "glass_pane", + "air", + "air", + "air", + "air", + "air", + "glass_pane", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "glass_pane", + "air", + "air", + "air", + "air", + "air", + "glass_pane", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "glass_pane", + "air", + "air", + "air", + "air", + "air", + "glass_pane", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "glass_pane", + "air", + "air", + "air", + "air", + "air", + "glass_pane", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "glass_pane", + "stone_bricks", + "glass_pane", + "stone_bricks", + "glass_pane", + "stone_bricks", + "air", + "air", + "air" + ] + ] + }, + { + "level": 3, + "coordinates": [ + -18, + -57, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "torch", + "air", + "air", + "air", + "torch", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "torch", + "air", + "air", + "air", + "torch", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "air", + "air", + "air" + ] + ] + }, + { + "level": 4, + "coordinates": [ + -18, + -56, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "air", + "air", + "air" + ] + ] + }, + { + "level": 5, + "coordinates": [ + -18, + -55, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "air", + "air", + "air" + ] + ] + }, + { + "level": 6, + "coordinates": [ + -18, + -54, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ] + ] + }, + { + "level": 7, + "coordinates": [ + -18, + -53, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 8, + "coordinates": [ + -18, + -52, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 9, + "coordinates": [ + -18, + -51, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 10, + "coordinates": [ + -18, + -50, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "oak_fence", + "oak_fence", + "oak_fence", + "air", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 11, + "coordinates": [ + -18, + -49, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "oak_fence", + "air", + "air", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 12, + "coordinates": [ + -18, + -48, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 13, + "coordinates": [ + -18, + -47, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 14, + "coordinates": [ + -18, + -46, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ] + ] + } + ] + }, + "initial_inventory": { + "0": { + "diamond_pickaxe": 1, + "diamond_axe": 1, + "diamond_shovel": 1, + "oak_planks": 153, + "oak_stairs": 16, + "torch": 4, + "oak_door": 2 + }, + "1": { + "diamond_pickaxe": 1, + "diamond_axe": 1, + "diamond_shovel": 1, + "stone_bricks": 142, + "quartz_block": 1, + "oak_fence": 4, + "glass_pane": 15 + } + } + } + } \ No newline at end of file diff --git a/tasks/construction_tasks/human_ai/2_agent_1_human.json b/tasks/construction_tasks/human_ai/2_agent_1_human.json new file mode 100644 index 0000000..da95ae6 --- /dev/null +++ b/tasks/construction_tasks/human_ai/2_agent_1_human.json @@ -0,0 +1,2375 @@ +{ + "church": { + "type": "construction", + "goal": "Make a structure with the blueprint below", + "conversation": "Let's share materials and make a structure with the blueprint", + "agent_count": 1, + "human_count": 1, + "timeout": 600, + "blueprint": { + "materials": { + "oak_planks": 153, + "stone_bricks": 142, + "oak_door": 2, + "oak_stairs": 16, + "quartz_block": 1, + "glass_pane": 15, + "torch": 4, + "oak_fence": 4 + }, + "levels": [ + { + "level": 0, + "coordinates": [ + -18, + -60, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 1, + "coordinates": [ + -18, + -59, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "stone_bricks", + "stone_bricks", + "oak_door", + "stone_bricks", + "air", + "air", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "oak_stairs", + "oak_stairs", + "air", + "oak_stairs", + "oak_stairs", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "oak_stairs", + "oak_stairs", + "air", + "oak_stairs", + "oak_stairs", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "oak_stairs", + "oak_stairs", + "air", + "oak_stairs", + "oak_stairs", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "oak_stairs", + "oak_stairs", + "air", + "oak_stairs", + "oak_stairs", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "quartz_block", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 2, + "coordinates": [ + -18, + -58, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "glass_pane", + "stone_bricks", + "oak_door", + "stone_bricks", + "glass_pane", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "glass_pane", + "air", + "air", + "air", + "air", + "air", + "glass_pane", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "glass_pane", + "air", + "air", + "air", + "air", + "air", + "glass_pane", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "glass_pane", + "air", + "air", + "air", + "air", + "air", + "glass_pane", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "glass_pane", + "air", + "air", + "air", + "air", + "air", + "glass_pane", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "glass_pane", + "air", + "air", + "air", + "air", + "air", + "glass_pane", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "glass_pane", + "stone_bricks", + "glass_pane", + "stone_bricks", + "glass_pane", + "stone_bricks", + "air", + "air", + "air" + ] + ] + }, + { + "level": 3, + "coordinates": [ + -18, + -57, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "torch", + "air", + "air", + "air", + "torch", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "torch", + "air", + "air", + "air", + "torch", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "air", + "air", + "air" + ] + ] + }, + { + "level": 4, + "coordinates": [ + -18, + -56, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "air", + "air", + "air" + ] + ] + }, + { + "level": 5, + "coordinates": [ + -18, + -55, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "air", + "air", + "air" + ] + ] + }, + { + "level": 6, + "coordinates": [ + -18, + -54, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ] + ] + }, + { + "level": 7, + "coordinates": [ + -18, + -53, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 8, + "coordinates": [ + -18, + -52, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 9, + "coordinates": [ + -18, + -51, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 10, + "coordinates": [ + -18, + -50, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "oak_fence", + "oak_fence", + "oak_fence", + "air", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 11, + "coordinates": [ + -18, + -49, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "oak_fence", + "air", + "air", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 12, + "coordinates": [ + -18, + -48, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 13, + "coordinates": [ + -18, + -47, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 14, + "coordinates": [ + -18, + -46, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ] + ] + } + ] + }, + "initial_inventory": { + "0": { + "diamond_pickaxe": 1, + "diamond_axe": 1, + "diamond_shovel": 1, + "oak_planks": 51, + "oak_stairs": 6, + "torch": 2, + "oak_door": 1, + "stone_bricks": 48, + "quartz_block": 1, + "oak_fence": 1, + "glass_pane": 3 + }, + "1": { + "diamond_pickaxe": 1, + "diamond_axe": 1, + "diamond_shovel": 1, + "oak_planks": 51, + "oak_stairs": 6, + "torch": 2, + "oak_door": 1, + "stone_bricks": 48, + "quartz_block": 1, + "oak_fence": 1, + "glass_pane": 3 + }, + "2": { + "diamond_pickaxe": 1, + "diamond_axe": 1, + "diamond_shovel": 1, + "oak_planks": 51, + "oak_stairs": 6, + "torch": 2, + "oak_door": 1, + "stone_bricks": 48, + "quartz_block": 1, + "oak_fence": 1, + "glass_pane": 3 + } + } + } + } \ No newline at end of file diff --git a/tasks/crafting_tasks/human_ai_tasks/1_agent_1_human.json b/tasks/crafting_tasks/human_ai_tasks/1_agent_1_human.json index ed5fbba..e539510 100644 --- a/tasks/crafting_tasks/human_ai_tasks/1_agent_1_human.json +++ b/tasks/crafting_tasks/human_ai_tasks/1_agent_1_human.json @@ -1,803 +1,793 @@ { "multiagent_crafting_pink_wool_full_plan__depth_0": { - "goal": "Collaborate with other agents to craft an pink_wool", - "conversation": "Let's work together to craft an pink_wool.", - "initial_inventory": { - "0": { - "pink_dye": 1 + "goal": "Collaborate with other agents to craft an pink_wool", + "conversation": "Let's work together to craft an pink_wool.", + "initial_inventory": { + "0": { + "pink_dye": 1 + }, + "1": { + "black_wool": 1 + } }, - "1": { - "black_wool": 1 - } - }, - "agent_count": 1, - "target": "pink_wool", - "number_of_target": 1, - "type": "techtree", - "max_depth": 1, - "depth": 0, - "timeout": 300, - "blocked_actions": { - "0": [], - "1": [] - }, - "missing_items": [], - "human_count": 1, - "usernames":[ - "izzycw" - ], - "requires_ctable": false + "agent_count": 1, + "target": "pink_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [], + "human_count": 1, + "usernames": [ + "izzycw" + ], + "requires_ctable": false }, "multiagent_crafting_lime_wool_partial_plan__depth_0": { - "goal": "Collaborate with other agents to craft an lime_wool", - "conversation": "Let's work together to craft an lime_wool.", - "initial_inventory": { - "0": { - "lime_dye": 1 + "goal": "Collaborate with other agents to craft an lime_wool", + "conversation": "Let's work together to craft an lime_wool.", + "initial_inventory": { + "0": { + "lime_dye": 1 + }, + "1": { + "black_wool": 1 + } }, - "1": { - "black_wool": 1 - } - }, - "agent_count": 1, - "target": "lime_wool", - "number_of_target": 1, - "type": "techtree", - "max_depth": 2, - "depth": 0, - "timeout": 300, - "blocked_actions": { - "0": [ + "agent_count": 1, + "target": "lime_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [ + "!getCraftingPlan" + ] + }, + "human_count": 1, + "usernames": [ + "izzycw" ], - "1": ["!getCraftingPlan"] - }, - "human_count": 1, - "usernames":[ - "izzycw" - ], - "missing_items": [ - ], - "requires_ctable": false + "missing_items": [], + "requires_ctable": false }, "multiagent_crafting_purple_banner_full_plan_requires_ctable__depth_0": { - "goal": "Collaborate with other agents to craft an purple_banner", - "conversation": "Let's work together to craft an purple_banner.", - "initial_inventory": { - "0": { - "purple_wool": 4, - "stick": 1 + "goal": "Collaborate with other agents to craft an purple_banner", + "conversation": "Let's work together to craft an purple_banner.", + "initial_inventory": { + "0": { + "purple_wool": 4, + "stick": 1 + }, + "1": { + "purple_wool": 3, + "crafting_table": 1 + } }, - "1": { - "purple_wool": 3, - "crafting_table": 1 - } - }, - "agent_count": 1, - "target": "purple_banner", - "number_of_target": 1, - "type": "techtree", - "max_depth": 3, - "depth": 0, - "timeout": 300, - "human_count": 1, - "usernames":[ - "izzycw" - ], - "blocked_actions": { - "0": [], - "1": [] - }, - "missing_items": [], - "requires_ctable": true + "agent_count": 1, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [], + "requires_ctable": true }, "multiagent_crafting_soul_campfire_partial_plan_requires_ctable__depth_0": { - "goal": "Collaborate with other agents to craft an soul_campfire", - "conversation": "Let's work together to craft an soul_campfire.", - "initial_inventory": { - "0": { - "oak_planks": 2, - "soul_sand": 1, - "dark_oak_log": 2 - }, - "1": { - "oak_planks": 1, - "dark_oak_log": 1, - "crafting_table": 1 - } + "goal": "Collaborate with other agents to craft an soul_campfire", + "conversation": "Let's work together to craft an soul_campfire.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "soul_sand": 1, + "dark_oak_log": 2 + }, + "1": { + "oak_planks": 1, + "dark_oak_log": 1, + "crafting_table": 1 + } + }, + "agent_count": 2, + "target": "soul_campfire", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [], + "requires_ctable": true }, - "agent_count": 2, - "target": "soul_campfire", - "number_of_target": 1, - "type": "techtree", - "max_depth": 2, - "depth": 0, - "timeout": 300, - "human_count": 1, - "usernames":[ - "izzycw" - ], - "blocked_actions": { - "0": [ - "!getCraftingPlan" - ], - "1": [] + "multiagent_crafting_bookshelf_full_plan_requires_ctable__depth_0": { + "goal": "Collaborate with other agents to craft a bookshelf", + "conversation": "Let's work together to craft a bookshelf.", + "initial_inventory": { + "0": { + "oak_planks": 4, + "book": 2 + }, + "1": { + "oak_planks": 2, + "book": 1, + "crafting_table": 1 + } + }, + "agent_count": 1, + "target": "bookshelf", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [], + "requires_ctable": true }, - "missing_items": [], - "requires_ctable": true - }, - "multiagent_crafting_bookshelf_full_plan_requires_ctable__depth_0": { - "goal": "Collaborate with other agents to craft a bookshelf", - "conversation": "Let's work together to craft a bookshelf.", - "initial_inventory": { - "0": { - "oak_planks": 4, - "book": 2 - }, - "1": { - "oak_planks": 2, - "book": 1, - "crafting_table": 1 - } + "multiagent_crafting_compass_partial_plan_requires_ctable__depth_0": { + "goal": "Collaborate with other agents to craft a compass", + "conversation": "Let's work together to craft a compass.", + "initial_inventory": { + "0": { + "iron_ingot": 2 + }, + "1": { + "iron_ingot": 2, + "redstone": 1, + "crafting_table": 1 + } + }, + "agent_count": 1, + "target": "compass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [], + "requires_ctable": true }, - "agent_count": 1, - "target": "bookshelf", - "number_of_target": 1, - "type": "techtree", - "max_depth": 1, - "depth": 0, - "timeout": 300, - "human_count": 1, - "usernames":[ - "izzycw" - ], - "blocked_actions": { - "0": [], - "1": [] + "multiagent_crafting_fishing_rod_full_plan_requires_ctable__depth_1": { + "goal": "Collaborate with other agents to craft a fishing_rod", + "conversation": "Let's work together to craft a fishing_rod.", + "initial_inventory": { + "0": { + "string": 1, + "oak_planks": 2 + }, + "1": { + "string": 1, + "crafting_table": 1 + } + }, + "agent_count": 1, + "target": "fishing_rod", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [], + "requires_ctable": true }, - "missing_items": [], - "requires_ctable": true - }, - "multiagent_crafting_compass_partial_plan_requires_ctable__depth_0": { - "goal": "Collaborate with other agents to craft a compass", - "conversation": "Let's work together to craft a compass.", - "initial_inventory": { - "0": { - "iron_ingot": 2 - }, - "1": { - "iron_ingot": 2, - "redstone": 1, - "crafting_table": 1 - } + "multiagent_crafting_cake_partial_plan_requires_ctable__depth_0": { + "goal": "Collaborate with other agents to craft a cake", + "conversation": "Let's work together to craft a cake.", + "initial_inventory": { + "0": { + "wheat": 2, + "sugar": 1, + "egg": 1 + }, + "1": { + "wheat": 1, + "milk_bucket": 2, + "crafting_table": 1 + } + }, + "agent_count": 1, + "target": "cake", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [], + "requires_ctable": true }, - "agent_count": 1, - "target": "compass", - "number_of_target": 1, - "type": "techtree", - "max_depth": 2, - "depth": 0, - "timeout": 300, - "human_count": 1, - "usernames":[ - "izzycw" - ], - "blocked_actions": { - "0": [ - "!getCraftingPlan" - ], - "1": [] + "multiagent_crafting_golden_carrot_full_plan_requires_ctable__depth_0": { + "goal": "Collaborate with other agents to craft a golden_carrot", + "conversation": "Let's work together to craft a golden_carrot.", + "initial_inventory": { + "0": { + "gold_nugget": 5, + "carrot": 1 + }, + "1": { + "gold_nugget": 3, + "crafting_table": 1 + } + }, + "agent_count": 1, + "target": "golden_carrot", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [], + "requires_ctable": true }, - "missing_items": [], - "requires_ctable": true - }, - "multiagent_crafting_fishing_rod_full_plan_requires_ctable__depth_1": { - "goal": "Collaborate with other agents to craft a fishing_rod", - "conversation": "Let's work together to craft a fishing_rod.", - "initial_inventory": { - "0": { - "string": 1, - "oak_planks": 2 - }, - "1": { - "string": 1, - "crafting_table": 1 - } + "multiagent_crafting_map_partial_plan_requires_ctable__depth_0": { + "goal": "Collaborate with other agents to craft a map", + "conversation": "Let's work together to craft a map.", + "initial_inventory": { + "0": { + "paper": 5 + }, + "1": { + "paper": 3, + "compass": 1, + "crafting_table": 1 + } + }, + "agent_count": 1, + "target": "map", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [], + "requires_ctable": true }, - "agent_count": 1, - "target": "fishing_rod", - "number_of_target": 1, - "type": "techtree", - "max_depth": 3, - "depth": 1, - "timeout": 300, - "human_count": 1, - "usernames":[ - "izzycw" - ], - "blocked_actions": { - "0": [], - "1": [] + "multiagent_crafting_blue_wool_full_plan__depth_0": { + "goal": "Collaborate with other agents to craft blue_wool", + "conversation": "Let's work together to craft blue_wool.", + "initial_inventory": { + "0": { + "blue_dye": 1 + }, + "1": { + "white_wool": 1 + } + }, + "agent_count": 2, + "target": "blue_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [], + "requires_ctable": false }, - "missing_items": [ - ], - "requires_ctable": true - }, - "multiagent_crafting_cake_partial_plan_requires_ctable__depth_0": { - "goal": "Collaborate with other agents to craft a cake", - "conversation": "Let's work together to craft a cake.", - "initial_inventory": { - "0": { - "wheat": 2, - "sugar": 1, - "egg": 1 - }, - "1": { - "wheat": 1, - "milk_bucket": 2, - "crafting_table": 1 - } + "multiagent_crafting_lime_wool_partial_plan__depth_2": { + "goal": "Collaborate with other agents to craft lime_wool", + "conversation": "Let's work together to craft lime_wool.", + "initial_inventory": { + "0": { + "green_dye": 1 + }, + "1": { + "white_wool": 1, + "bone_meal": 1 + } + }, + "agent_count": 2, + "target": "lime_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [], + "requires_ctable": false }, - "agent_count": 1, - "target": "cake", - "number_of_target": 1, - "type": "techtree", - "max_depth": 3, - "depth": 0, - "timeout": 300, - "human_count": 1, - "usernames":[ - "izzycw" - ], - "blocked_actions": { - "0": [ - "!getCraftingPlan" - ], - "1": [] + "multiagent_crafting_magenta_wool_full_plan__depth_2": { + "goal": "Collaborate with other agents to craft magenta_wool", + "conversation": "Let's work together to craft magenta_wool.", + "initial_inventory": { + "0": { + "rose_red": 1, + "lapis_lazuli": 1 + }, + "1": { + "white_wool": 1, + "bone_meal": 1 + } + }, + "agent_count": 1, + "target": "magenta_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [], + "requires_ctable": false }, - "missing_items": [], - "requires_ctable": true - }, - "multiagent_crafting_golden_carrot_full_plan_requires_ctable__depth_0": { - "goal": "Collaborate with other agents to craft a golden_carrot", - "conversation": "Let's work together to craft a golden_carrot.", - "initial_inventory": { - "0": { - "gold_nugget": 5, - "carrot": 1 - }, - "1": { - "gold_nugget": 3, - "crafting_table": 1 - } + "multiagent_crafting_chest_full_plan_requires_ctable__depth_1": { + "goal": "Collaborate with other agents to craft a chest", + "conversation": "Let's work together to craft a chest.", + "initial_inventory": { + "0": { + "oak_log": 1 + }, + "1": { + "oak_planks": 4, + "crafting_table": 1 + } + }, + "agent_count": 2, + "target": "chest", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 1, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [], + "requires_ctable": true }, - "agent_count": 1, - "target": "golden_carrot", - "number_of_target": 1, - "type": "techtree", - "max_depth": 2, - "depth": 0, - "timeout": 300, - "human_count": 1, - "usernames":[ - "izzycw" - ], - "blocked_actions": { - "0": [], - "1": [] + "multiagent_crafting_barrel_partial_plan_requires_ctable__depth_1": { + "goal": "Collaborate with other agents to craft a barrel", + "conversation": "Let's work together to craft a barrel.", + "initial_inventory": { + "0": { + "spruce_planks": 3, + "crafting_table": 1 + }, + "1": { + "spruce_planks": 3, + "wooden_slab": 1 + } + }, + "agent_count": 2, + "target": "barrel", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [], + "requires_ctable": true }, - "missing_items": [], - "requires_ctable": true - }, - "multiagent_crafting_map_partial_plan_requires_ctable__depth_0": { - "goal": "Collaborate with other agents to craft a map", - "conversation": "Let's work together to craft a map.", - "initial_inventory": { - "0": { - "paper": 5 - }, - "1": { - "paper": 3, - "compass": 1, - "crafting_table": 1 - } + "multiagent_crafting_lectern_full_plan_requires_ctable__depth_2": { + "goal": "Collaborate with other agents to craft a lectern", + "conversation": "Let's work together to craft a lectern.", + "initial_inventory": { + "0": { + "birch_slab": 5, + "crafting_table": 1 + }, + "1": { + "birch_log": 2, + "book": 3 + } + }, + "agent_count": 1, + "target": "lectern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 2, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [], + "requires_ctable": true }, - "agent_count": 1, - "target": "map", - "number_of_target": 1, - "type": "techtree", - "max_depth": 1, - "depth": 0, - "timeout": 300, - "human_count": 1, - "usernames":[ - "izzycw" - ], - "blocked_actions": { - "0": [ - "!getCraftingPlan" - ], - "1": [] + "multiagent_crafting_clock_partial_plan_requires_ctable__depth_0": { + "goal": "Collaborate with other agents to craft a clock", + "conversation": "Let's work together to craft a clock.", + "initial_inventory": { + "0": { + "gold_ingot": 2 + }, + "1": { + "gold_ingot": 2, + "redstone": 1, + "crafting_table": 1 + } + }, + "agent_count": 1, + "target": "clock", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [], + "requires_ctable": true }, - "missing_items": [], - "requires_ctable": true - }, - "multiagent_crafting_blue_wool_full_plan__depth_0": { - "goal": "Collaborate with other agents to craft blue_wool", - "conversation": "Let's work together to craft blue_wool.", - "initial_inventory": { - "0": { - "blue_dye": 1 - }, - "1": { - "white_wool": 1 - } + "multiagent_crafting_firework_rocket_partial_plan__depth_0": { + "goal": "Collaborate with other agents to craft firework_rocket", + "conversation": "Let's work together to craft firework_rocket.", + "initial_inventory": { + "0": { + "paper": 1 + }, + "1": { + "gunpowder": 3 + } + }, + "agent_count": 2, + "target": "firework_rocket", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [], + "requires_ctable": false }, - "agent_count": 2, - "target": "blue_wool", - "number_of_target": 1, - "type": "techtree", - "max_depth": 1, - "depth": 0, - "timeout": 300, - "human_count": 1, - "usernames":[ - "izzycw" - ], - "blocked_actions": { - "0": [], - "1": [] + "multiagent_crafting_enchanting_table_partial_plan_requires_ctable__depth_0": { + "goal": "Collaborate with other agents to craft an enchanting_table", + "conversation": "Let's work together to craft an enchanting_table.", + "initial_inventory": { + "0": { + "diamond": 2, + "obsidian": 2, + "crafting_table": 1 + }, + "1": { + "obsidian": 2, + "book": 1 + } + }, + "agent_count": 2, + "target": "enchanting_table", + "number_of_target": 1, + "type": "techtree", + "max_depth": 0, + "depth": 0, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [], + "requires_ctable": true }, - "missing_items": [], - "requires_ctable": false - }, - "multiagent_crafting_lime_wool_partial_plan__depth_2": { - "goal": "Collaborate with other agents to craft lime_wool", - "conversation": "Let's work together to craft lime_wool.", - "initial_inventory": { - "0": { - "green_dye": 1 - }, - "1": { - "white_wool": 1, - "bone_meal": 1 - } + "multiagent_crafting_jukebox_full_plan_requires_ctable__depth_1": { + "goal": "Collaborate with other agents to craft a jukebox", + "conversation": "Let's work together to craft a jukebox.", + "initial_inventory": { + "0": { + "diamond": 1 + }, + "1": { + "oak_log": 2, + "crafting_table": 1 + } + }, + "agent_count": 1, + "target": "jukebox", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 1, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [], + "requires_ctable": true }, - "agent_count": 2, - "target": "lime_wool", - "number_of_target": 1, - "type": "techtree", - "max_depth": 2, - "depth": 1, - "timeout": 300, - "human_count": 1, - "usernames":[ - "izzycw" - ], - "blocked_actions": { - "0": [ - "!getCraftingPlan" - ], - "1": [] + "multiagent_crafting_light_gray_wool_full_plan__depth_1": { + "goal": "Collaborate with other agents to craft light_gray_wool", + "conversation": "Let's work together to craft light_gray_wool.", + "initial_inventory": { + "0": { + "black_dye": 1 + }, + "1": { + "white_wool": 1, + "white_dye": 2 + } + }, + "agent_count": 1, + "target": "light_gray_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [], + "requires_ctable": false }, - "missing_items": [ - ], - "requires_ctable": false - }, - "multiagent_crafting_magenta_wool_full_plan__depth_2": { - "goal": "Collaborate with other agents to craft magenta_wool", - "conversation": "Let's work together to craft magenta_wool.", - "initial_inventory": { - "0": { - "rose_red": 1, - "lapis_lazuli": 1 - }, - "1": { - "white_wool": 1, - "bone_meal": 1 - } + "multiagent_crafting_blast_furnace_full_plan_requires_ctable__depth_1": { + "goal": "Collaborate with other agents to craft a blast_furnace", + "conversation": "Let's work together to craft a blast_furnace.", + "initial_inventory": { + "0": { + "iron_ingot": 5, + "smooth_stone": 3 + }, + "1": { + "cobblestone": 8, + "crafting_table": 1 + } + }, + "agent_count": 2, + "target": "blast_furnace", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [], + "requires_ctable": true }, - "agent_count": 1, - "target": "magenta_wool", - "number_of_target": 1, - "type": "techtree", - "max_depth": 3, - "depth": 2, - "timeout": 300, - "human_count": 1, - "usernames":[ - "izzycw" - ], - "blocked_actions": { - "0": [], - "1": [] + "multiagent_crafting_activator_rail_full_plan_requires_ctable__depth_2": { + "goal": "Collaborate with other agents to craft activator_rail", + "conversation": "Let's work together to craft activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 3, + "oak_planks": 6 + }, + "1": { + "redstone": 1, + "iron_ingot": 3, + "crafting_table": 1 + } + }, + "agent_count": 1, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [], + "requires_ctable": true }, - "missing_items": [ - ], - "requires_ctable": false - }, - "multiagent_crafting_chest_full_plan_requires_ctable__depth_1": { - "goal": "Collaborate with other agents to craft a chest", - "conversation": "Let's work together to craft a chest.", - "initial_inventory": { - "0": { - "oak_log": 1 - }, - "1": { - "oak_planks": 4, - "crafting_table": 1 - } + "multiagent_crafting_campfire_partial_plan_requires_ctable__depth_2": { + "goal": "Collaborate with other agents to craft campfire", + "conversation": "Let's work together to craft campfire.", + "initial_inventory": { + "0": { + "oak_log": 8 + }, + "1": { + "coal": 1, + "crafting_table": 1 + } + }, + "agent_count": 1, + "target": "campfire", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [], + "requires_ctable": true }, - "agent_count": 2, - "target": "chest", - "number_of_target": 1, - "type": "techtree", - "max_depth": 1, - "depth": 1, - "timeout": 300, - "human_count": 1, - "usernames":[ - "izzycw" - ], - "blocked_actions": { - "0": [], - "1": [] - }, - "missing_items": [], - "requires_ctable": true - }, - "multiagent_crafting_barrel_partial_plan_requires_ctable__depth_1": { - "goal": "Collaborate with other agents to craft a barrel", - "conversation": "Let's work together to craft a barrel.", - "initial_inventory": { - "0": { - "spruce_planks": 3, - "crafting_table": 1 - }, - "1": { - "spruce_planks": 3, - "wooden_slab": 1 - } - }, - "agent_count": 2, - "target": "barrel", - "number_of_target": 1, - "type": "techtree", - "max_depth": 2, - "depth": 1, - "timeout": 300, - "human_count": 1, - "usernames":[ - "izzycw" - ], - "blocked_actions": { - "0": [ - "!getCraftingPlan" - ], - "1": [] - }, - "missing_items": [ - ], - "requires_ctable": true - }, - "multiagent_crafting_lectern_full_plan_requires_ctable__depth_2": { - "goal": "Collaborate with other agents to craft a lectern", - "conversation": "Let's work together to craft a lectern.", - "initial_inventory": { - "0": { - "birch_slab": 5, - "crafting_table": 1 - }, - "1": { - "birch_log": 2, - "book": 3 - } - }, - "agent_count": 1, - "target": "lectern", - "number_of_target": 1, - "type": "techtree", - "max_depth": 2, - "depth": 2, - "timeout": 300, - "human_count": 1, - "usernames":[ - "izzycw" - ], - "blocked_actions": { - "0": [], - "1": [] - }, - "missing_items": [ - ], - "requires_ctable": true - }, - "multiagent_crafting_clock_partial_plan_requires_ctable__depth_0": { - "goal": "Collaborate with other agents to craft a clock", - "conversation": "Let's work together to craft a clock.", - "initial_inventory": { - "0": { - "gold_ingot": 2 - }, - "1": { - "gold_ingot": 2, - "redstone": 1, - "crafting_table": 1 - } - }, - "agent_count": 1, - "target": "clock", - "number_of_target": 1, - "type": "techtree", - "max_depth": 2, - "depth": 0, - "timeout": 300, - "human_count": 1, - "usernames":[ - "izzycw" - ], - "blocked_actions": { - "0": [ - "!getCraftingPlan" - ], - "1": [] - }, - "missing_items": [], - "requires_ctable": true - }, - "multiagent_crafting_firework_rocket_partial_plan__depth_0": { - "goal": "Collaborate with other agents to craft firework_rocket", - "conversation": "Let's work together to craft firework_rocket.", - "initial_inventory": { - "0": { - "paper": 1 - }, - "1": { - "gunpowder": 3 - } - }, - "agent_count": 2, - "target": "firework_rocket", - "number_of_target": 1, - "type": "techtree", - "max_depth": 2, - "depth": 0, - "timeout": 300, - "human_count": 1, - "usernames":[ - "izzycw" - ], - "blocked_actions": { - "0": [ - "!getCraftingPlan" - ], - "1": [] - }, - "missing_items": [], - "requires_ctable": false - }, - "multiagent_crafting_enchanting_table_partial_plan_requires_ctable__depth_0": { - "goal": "Collaborate with other agents to craft an enchanting_table", - "conversation": "Let's work together to craft an enchanting_table.", - "initial_inventory": { - "0": { - "diamond": 2, - "obsidian": 2, - "crafting_table": 1 - }, - "1": { - "obsidian": 2, - "book": 1 - } - }, - "agent_count": 2, - "target": "enchanting_table", - "number_of_target": 1, - "type": "techtree", - "max_depth": 0, - "depth": 0, - "timeout": 300, - "human_count": 1, - "usernames":[ - "izzycw" - ], - "blocked_actions": { - "0": [ - "!getCraftingPlan" - ], - "1": [] - }, - "missing_items": [], - "requires_ctable": true - }, - "multiagent_crafting_jukebox_full_plan_requires_ctable__depth_1": { - "goal": "Collaborate with other agents to craft a jukebox", - "conversation": "Let's work together to craft a jukebox.", - "initial_inventory": { - "0": { - "diamond": 1 - }, - "1": { - "oak_log": 2, - "crafting_table": 1 - } - }, - "agent_count": 1, - "target": "jukebox", - "number_of_target": 1, - "type": "techtree", - "max_depth": 1, - "depth": 1, - "timeout": 300, - "human_count": 1, - "usernames":[ - "izzycw" - ], - "blocked_actions": { - "0": [], - "1": [] - }, - "missing_items": [], - "requires_ctable": true - }, - "multiagent_crafting_light_gray_wool_full_plan__depth_1": { - "goal": "Collaborate with other agents to craft light_gray_wool", - "conversation": "Let's work together to craft light_gray_wool.", - "initial_inventory": { - "0": { - "black_dye": 1 - }, - "1": { - "white_wool": 1, - "white_dye": 2 - } - }, - "agent_count": 1, - "target": "light_gray_wool", - "number_of_target": 1, - "type": "techtree", - "max_depth": 2, - "depth": 1, - "timeout": 300, - "human_count": 1, - "usernames":[ - "izzycw" - ], - "blocked_actions": { - "0": [], - "1": [] - }, - "missing_items": [ - ], - "requires_ctable": false - }, - "multiagent_crafting_blast_furnace_full_plan_requires_ctable__depth_1": { - "goal": "Collaborate with other agents to craft a blast_furnace", - "conversation": "Let's work together to craft a blast_furnace.", - "initial_inventory": { - "0": { - "iron_ingot": 5, - "smooth_stone": 3 - }, - "1": { - "cobblestone": 8, - "crafting_table": 1 - } - }, - "agent_count": 2, - "target": "blast_furnace", - "number_of_target": 1, - "type": "techtree", - "max_depth": 2, - "depth": 1, - "timeout": 300, - "human_count": 1, - "usernames":[ - "izzycw" - ], - "blocked_actions": { - "0": [], - "1": [] - }, - "missing_items": [ - ], - "requires_ctable": true - }, - "multiagent_crafting_activator_rail_full_plan_requires_ctable__depth_2": { - "goal": "Collaborate with other agents to craft activator_rail", - "conversation": "Let's work together to craft activator_rail.", - "initial_inventory": { - "0": { - "iron_ingot": 3, - "oak_planks": 6 - }, - "1": { - "redstone": 1, - "iron_ingot": 3, - "crafting_table": 1 - } - }, - "agent_count": 1, - "target": "activator_rail", - "number_of_target": 1, - "type": "techtree", - "max_depth": 3, - "depth": 2, - "timeout": 300, - "human_count": 1, - "usernames":[ - "izzycw" - ], - "blocked_actions": { - "0": [], - "1": [] - }, - "missing_items": [ - ], - "requires_ctable": true - }, - "multiagent_crafting_campfire_partial_plan_requires_ctable__depth_2": { - "goal": "Collaborate with other agents to craft campfire", - "conversation": "Let's work together to craft campfire.", - "initial_inventory": { - "0": { - "oak_log": 8 - }, - "1": { - "coal": 1, - "crafting_table": 1 - } - }, - "agent_count": 1, - "target": "campfire", - "number_of_target": 1, - "type": "techtree", - "max_depth": 3, - "depth": 2, - "timeout": 300, - "human_count": 1, - "usernames":[ - "izzycw" - ], - "blocked_actions": { - "0": [ - "!getCraftingPlan" - ], - "1": [] - }, - "missing_items": [ - ], - "requires_ctable": true - }, - "multiagent_crafting_crossbow_full_plan_requires_ctable__depth_2": { - "goal": "Collaborate with other agents to craft a crossbow", - "conversation": "Let's work together to craft a crossbow.", - "initial_inventory": { - "0": { - "oak_planks": 8, - "iron_ingot": 2 - }, - "1": { - "string": 2, - "crafting_table": 1 - } - }, - "agent_count": 1, - "target": "crossbow", - "number_of_target": 1, - "type": "techtree", - "max_depth": 3, - "depth": 2, - "timeout": 300, - "human_count": 1, - "usernames":[ - "izzycw" - ], - "blocked_actions": { - "0": [], - "1": [] - }, - "missing_items": [ - ], - "requires_ctable": true - } + "multiagent_crafting_crossbow_full_plan_requires_ctable__depth_2": { + "goal": "Collaborate with other agents to craft a crossbow", + "conversation": "Let's work together to craft a crossbow.", + "initial_inventory": { + "0": { + "oak_planks": 8, + "iron_ingot": 2 + }, + "1": { + "string": 2, + "crafting_table": 1 + } + }, + "agent_count": 1, + "target": "crossbow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + } } \ No newline at end of file From 8f2fcbe50d59d89667e5d34bd7ba0aab83b709e7 Mon Sep 17 00:00:00 2001 From: Isadora White Date: Mon, 5 May 2025 17:11:48 -0700 Subject: [PATCH 025/101] required collaboration cooking tasks --- src/agent/tasks/cooking_tasks.js | 76 +-- src/agent/tasks/tasks.js | 27 +- tasks/cooking_tasks/hells_kitchen_tasks.py | 180 +++++- ...ake_collaboration_required_cooking_task.py | 295 +++++++++ .../require_collab_test/2_agent.json | 576 +++++++++++++++++ .../require_collab_test/3_agent.json | 605 ++++++++++++++++++ 6 files changed, 1674 insertions(+), 85 deletions(-) create mode 100644 tasks/cooking_tasks/make_collaboration_required_cooking_task.py create mode 100644 tasks/cooking_tasks/require_collab_test/2_agent.json create mode 100644 tasks/cooking_tasks/require_collab_test/3_agent.json diff --git a/src/agent/tasks/cooking_tasks.js b/src/agent/tasks/cooking_tasks.js index c954b9c..a88e3ac 100644 --- a/src/agent/tasks/cooking_tasks.js +++ b/src/agent/tasks/cooking_tasks.js @@ -64,14 +64,14 @@ export class CookingTaskInitiator { // Define all regions with their sizes const regionsToPlace = [ - { type: 'wheat', width: 6, depth: 6 }, - { type: 'beetroots', width: 4, depth: 5 }, - { type: 'mushrooms', width: 4, depth: 5 }, - { type: 'potatoes', width: 4, depth: 5 }, - { type: 'carrots', width: 4, depth: 5 }, + { type: 'wheat', width: 3, depth: 3 }, + { type: 'beetroots', width: 3, depth: 3 }, + { type: 'mushrooms', width: 3, depth: 3 }, + { type: 'potatoes', width: 3, depth: 3 }, + { type: 'carrots', width: 3, depth: 3 }, { type: 'sugar_cane', width: 3, depth: 3 }, { type: 'sugar_cane', width: 3, depth: 3 }, - { type: 'pumpkins', width: 10, depth: 1 }, + { type: 'pumpkins', width: 5, depth: 1 }, { type: 'house', width: 11, depth: 11 } ]; @@ -132,27 +132,27 @@ export class CookingTaskInitiator { console.log("House built!"); // Add a chest with cooking items near the bot - const addChestWithItems = async () => { - // Find a valid position near the bot (within 10 blocks) - const findChestPosition = () => { - const maxAttempts = 100; - for (let attempt = 0; attempt < maxAttempts; attempt++) { - const x = botX + Math.floor(Math.random() * 10 - 5); // Within ±5 blocks X - const z = botZ + Math.floor(Math.random() * 10 - 5); // Within ±5 blocks Z - const y = position.y; + // const addChestWithItems = async () => { + // // Find a valid position near the bot (within 10 blocks) + // const findChestPosition = () => { + // const maxAttempts = 100; + // for (let attempt = 0; attempt < maxAttempts; attempt++) { + // const x = botX + Math.floor(Math.random() * 10 - 5); // Within ±5 blocks X + // const z = botZ + Math.floor(Math.random() * 10 - 5); // Within ±5 blocks Z + // const y = position.y; - // Check if the position is not overlapping with existing structures - if (!isOverlapping(x, x, z, z, occupiedRegions)) { - return { x, y, z }; - } - } - throw new Error('Failed to find valid chest position'); - }; + // // Check if the position is not overlapping with existing structures + // if (!isOverlapping(x, x, z, z, occupiedRegions)) { + // return { x, y, z }; + // } + // } + // throw new Error('Failed to find valid chest position'); + // }; - const { x, y, z } = findChestPosition(); + // const { x, y, z } = findChestPosition(); - // Place the chest - await bot.chat(`/setblock ${x} ${y} ${z} chest`); + // // Place the chest + // await bot.chat(`/setblock ${x} ${y} ${z} chest`); const cookingItems = [ ['minecraft:milk_bucket', 1], // Non-stackable @@ -184,22 +184,22 @@ export class CookingTaskInitiator { ['minecraft:milk_bucket', 1], ]; - // Fill the chest with random cooking items - for (let slot = 0; slot < cookingItems.length; slot++) { // Chest has 27 slots - const randomItem = cookingItems[slot]; - await bot.chat(`/item replace block ${x} ${y} ${z} container.${slot} with ${randomItem[0]} ${randomItem[1]}`); - } + // // Fill the chest with random cooking items + // for (let slot = 0; slot < cookingItems.length; slot++) { // Chest has 27 slots + // const randomItem = cookingItems[slot]; + // await bot.chat(`/item replace block ${x} ${y} ${z} container.${slot} with ${randomItem[0]} ${randomItem[1]}`); + // } - // Mark the chest area as occupied - occupiedRegions.push({ - xMin: x, - xMax: x, - zMin: z, - zMax: z - }); - }; + // // Mark the chest area as occupied + // occupiedRegions.push({ + // xMin: x, + // xMax: x, + // zMin: z, + // zMax: z + // }); + // }; - await addChestWithItems(); + // await addChestWithItems(); await new Promise(resolve => setTimeout(resolve, 300)); const animals = ['chicken', 'cow', 'llama', 'mooshroom', 'pig', 'rabbit', 'sheep']; diff --git a/src/agent/tasks/tasks.js b/src/agent/tasks/tasks.js index 65cb67e..276cc8c 100644 --- a/src/agent/tasks/tasks.js +++ b/src/agent/tasks/tasks.js @@ -312,23 +312,24 @@ export class Task { if (this.task_type === 'cooking') { - if (this.data.agent_count > 2) { - if (this.name.toLowerCase().startsWith('andy')) { - add_string = '\nIn the end, all the food items should be given to you by other bots. Make sure to talk to all the agents using startConversation command to coordinate the task instead of talking to just one agent. You can even end current conversation with any agent using endConversation command and then talk to a new agent using startConversation command.'; - } - else { - add_string = '\nIn the end, all the food items should be given to one single bot whose name starts with andy or Andy. Make sure to talk to all the agents using startConversation command to coordinate the task instead of talking to just one agent. You can even end current conversation with any agent using endConversation command and then talk to a new agent using startConversation command.'; - } + if (this.data.agent_count > 2) { + + if (this.name.toLowerCase().startsWith('andy')) { + add_string = '\nIn the end, all the food items should be given to you by other bots. Make sure to talk to all the agents using startConversation command to coordinate the task instead of talking to just one agent. You can even end current conversation with any agent using endConversation command and then talk to a new agent using startConversation command.'; } else { - if (this.data.task_id && this.data.task_id.endsWith('hells_kitchen')) { - add_string = ''; - } - else { - add_string = '\nIn the end, all the food items should be given to one single bot.'; - } + add_string = '\nIn the end, all the food items should be given to one single bot whose name starts with andy or Andy. Make sure to talk to all the agents using startConversation command to coordinate the task instead of talking to just one agent. You can even end current conversation with any agent using endConversation command and then talk to a new agent using startConversation command.'; + } + } + else { + if (this.data.task_id && this.data.task_id.endsWith('hells_kitchen')) { + add_string = ''; + } + else { + add_string = '\nIn the end, all the food items should be given to one single bot.'; } + } } if (this.task_type === 'techtree') { diff --git a/tasks/cooking_tasks/hells_kitchen_tasks.py b/tasks/cooking_tasks/hells_kitchen_tasks.py index c4a6247..2fcefcc 100644 --- a/tasks/cooking_tasks/hells_kitchen_tasks.py +++ b/tasks/cooking_tasks/hells_kitchen_tasks.py @@ -10,93 +10,138 @@ COOKING_ITEMS = { "cooked_mutton": { "recipe": [ "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." ], "description": "Cooked mutton meat", - "complexity": "easy" + "complexity": "easy", + "required_chest_items": { + "coal": 8, + } }, "cooked_beef": { "recipe": [ "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." ], "description": "Cooked beef meat", - "complexity": "easy" + "complexity": "easy", + "required_chest_items": { + "coal": 8, + } }, "cooked_porkchop": { "recipe": [ "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." ], "description": "Cooked porkchop", - "complexity": "easy" + "complexity": "easy", + "required_chest_items": { + "coal": 8, + } }, "cooked_chicken": { "recipe": [ "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." ], "description": "Cooked chicken meat", - "complexity": "easy" + "complexity": "easy", + "required_chest_items": { + "coal": 8, + } }, "cooked_rabbit": { "recipe": [ "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", "Step 2: Go to furnace and use it to cook the raw rabbit." ], "description": "Cooked rabbit meat", - "complexity": "easy" + "complexity": "easy", + "required_chest_items": { + "coal": 8, + } }, # Soups and Stews "beetroot_soup": { "recipe": [ "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", + "Step 2: From your inventory or other agents get a bowl.", "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." ], "description": "A hearty beetroot soup", - "complexity": "medium" + "complexity": "medium", + "required_chest_items": { + "bowl": 1, + } }, "mushroom_stew": { "recipe": [ "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", + "Step 2: From your inventory or other agents get a bowl.", "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." ], "description": "A warm mushroom stew", - "complexity": "medium" + "complexity": "medium", + "required_chest_items": { + "bowl": 1, + } }, "rabbit_stew": { "recipe": [ "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." ], "description": "A hearty rabbit stew", - "complexity": "hard" + "complexity": "hard", + "required_chest_items": { + "bowl": 1, + } }, "suspicious_stew": { "recipe": [ "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." ], "description": "A mysterious stew with special effects", - "complexity": "medium" + "complexity": "medium", + "required_chest_items": { + "bowl": 1, + "dandelion": 1, + } }, # Baked Goods "baked_potato": { "recipe": [ "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", "Step 2: Go to the furnace and bake the potato." ], "description": "A simple baked potato", - "complexity": "easy" + "complexity": "easy", + "required_chest_items": { + "coal": 8, + } }, "bread": { "recipe": [ @@ -104,47 +149,61 @@ COOKING_ITEMS = { "Step 2: Go to the crafting table and use the wheat to craft bread." ], "description": "Fresh bread", - "complexity": "medium" + "complexity": "medium", }, "cake": { "recipe": [ "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets (already filled with milk).", - "Step 3: Go to the chest and grab an egg.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", "Step 4: Go to the crafting table and craft the sugarcane into sugar.", "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." ], "description": "A delicious cake", - "complexity": "hard" + "complexity": "hard", + "required_chest_items": { + "milk_bucket": 3, + "egg": 1, + } }, "cookie": { "recipe": [ "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." ], "description": "Sweet cookies", - "complexity": "medium" + "complexity": "medium", + "required_chest_items": { + "cocoa_beans": 1, + } }, "pumpkin_pie": { "recipe": [ "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", + "Step 2: Get 1 egg from your inventory or other bots", "Step 3: Go to the crafting table and craft the sugar cane into sugar.", "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." ], "description": "Delicious pumpkin pie", - "complexity": "hard" + "complexity": "hard", + "required_chest_items": { + "egg": 1, + } }, # Sweet Foods "golden_apple": { "recipe": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." ], "description": "A magical golden apple", - "complexity": "hard" + "complexity": "hard", + "required_chest_items": { + "gold_ingots": 8, + "apple": 1 + } }, # Special Foods @@ -155,11 +214,64 @@ COOKING_ITEMS = { "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." ], "description": "A magical golden carrot", - "complexity": "hard" + "complexity": "hard", + "required_chest_items": ["gold_ingots"] }, } +chest_items = { + "milk_bucket": 3, + "egg": 16, + "dandelion": 64, + "cocao_beans": 64, + "apple": 64, + "gold_ingots": 8, + "salmon": 64, + "cod": 64, + "kelp": 64, + "dried_kelp": 64, + "sweet_berries": 64, + "honey_bottle": 1, + "glow_berries": 64, + "bowl": 1, + "cooked_salmon": 1, + "cooked_cod": 1, + "oak_planks": 64, + "iron_ingot": 64, +} + + +chest_items = [ + ['minecraft:milk_bucket', 1], + ['minecraft:egg', 16], + ['minecraft:dandelion', 64], + ['minecraft:sugar', 64], + ['minecraft:cocoa_beans', 64], + ['minecraft:apple', 64], + ['minecraft:milk_bucket', 1], + ['minecraft:milk_bucket', 1], + ['minecraft:salmon', 64], + ['minecraft:cod', 64], + ['minecraft:kelp', 64], + ['minecraft:dried_kelp', 64], + ['minecraft:sweet_berries', 64], + ['minecraft:honey_bottle', 1], + ['minecraft:glow_berries', 64], + ['minecraft:bowl', 64], + ['minecraft:milk_bucket', 1], + ['minecraft:milk_bucket', 1], + ['minecraft:milk_bucket', 1], + ['minecraft:milk_bucket', 1], + ['minecraft:cooked_salmon', 64], + ['minecraft:cooked_cod', 64], + ['minecraft:gold_ingot', 64], + ['minecraft:oak_planks', 64], + ['minecraft:iron_ingot', 64], + ['minecraft:milk_bucket', 1], + ['minecraft:milk_bucket', 1], + ] + def generate_task_id(task: Dict[str, Any]) -> str: """ Generate a standardized task ID based on target items and blocked access. diff --git a/tasks/cooking_tasks/make_collaboration_required_cooking_task.py b/tasks/cooking_tasks/make_collaboration_required_cooking_task.py new file mode 100644 index 0000000..9d7deeb --- /dev/null +++ b/tasks/cooking_tasks/make_collaboration_required_cooking_task.py @@ -0,0 +1,295 @@ +import random +import json +from typing import Dict, List, Any, Tuple, Set +from collections import Counter, defaultdict +import os + +# Define your COOKING_ITEMS dictionary here +# This is where you should put your complete COOKING_ITEMS dictionary +COOKING_ITEMS = { +# Cooked Meats +"cooked_mutton": { + "recipe": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "description": "Cooked mutton meat", + "complexity": "easy", + "required_chest_items": { + "coal": 8, + } +}, +"cooked_beef": { + "recipe": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ], + "description": "Cooked beef meat", + "complexity": "easy", + "required_chest_items": { + "coal": 8, + } +}, +"cooked_porkchop": { + "recipe": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "description": "Cooked porkchop", + "complexity": "easy", + "required_chest_items": { + "coal": 8, + } +}, +"cooked_chicken": { + "recipe": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "description": "Cooked chicken meat", + "complexity": "easy", + "required_chest_items": { + "coal": 8, + } +}, +"cooked_rabbit": { + "recipe": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "description": "Cooked rabbit meat", + "complexity": "easy", + "required_chest_items": { + "coal": 8, + } +}, + +# Soups and Stews +"beetroot_soup": { + "recipe": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "description": "A hearty beetroot soup", + "complexity": "medium", + "required_chest_items": { + "bowl": 1, + } +}, +"mushroom_stew": { + "recipe": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "description": "A warm mushroom stew", + "complexity": "medium", + "required_chest_items": { + "bowl": 1, + } +}, +"rabbit_stew": { + "recipe": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "description": "A hearty rabbit stew", + "complexity": "hard", + "required_chest_items": { + "bowl": 1, + } +}, +"suspicious_stew": { + "recipe": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "description": "A mysterious stew with special effects", + "complexity": "medium", + "required_chest_items": { + "bowl": 1, + "dandelion": 1, + } +}, + +# Baked Goods +"baked_potato": { + "recipe": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "description": "A simple baked potato", + "complexity": "easy", + "required_chest_items": { + "coal": 8, + } +}, +"bread": { + "recipe": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "description": "Fresh bread", + "complexity": "medium", +}, +"cake": { + "recipe": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "description": "A delicious cake", + "complexity": "hard", + "required_chest_items": { + "milk_bucket": 3, + "egg": 1, + } +}, +"cookie": { + "recipe": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "description": "Sweet cookies", + "complexity": "medium", + "required_chest_items": { + "cocoa_beans": 1, + } +}, +"pumpkin_pie": { + "recipe": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "description": "Delicious pumpkin pie", + "complexity": "hard", + "required_chest_items": { + "egg": 1, + } +}, + +# Sweet Foods +"golden_apple": { + "recipe": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "description": "A magical golden apple", + "complexity": "hard", + "required_chest_items": { + "gold_ingots": 8, + "apple": 1 + } +}, + +# Special Foods +"golden_carrot": { + "recipe": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "description": "A magical golden carrot", + "complexity": "hard", + "required_chest_items": ["gold_ingots"] +}, + +} + +chest_items = { + "milk_bucket": 3, + "egg": 16, + "dandelion": 64, + "cocoa_beans": 64, + "apple": 64, + "gold_ingots": 8, + "salmon": 64, + "cod": 64, + "kelp": 64, + "dried_kelp": 64, + "sweet_berries": 64, + "honey_bottle": 1, + "glow_berries": 64, + "bowl": 1, + "cooked_salmon": 1, + "cooked_cod": 1, + "oak_planks": 64, + "iron_ingot": 64, +} + +def reconfigure_tasks(task_path, new_task_path): + with open(task_path, 'r') as f: + tasks = json.load(f) + task_ids = tasks.keys() + for task_id in task_ids: + task = tasks[task_id] + if task["type"] == "cooking": + items = task["recipes"].keys() + new_recipes = {} + inventory = {} + for item in items: + if item in COOKING_ITEMS: + cooking_info = COOKING_ITEMS[item] + new_recipes[item] = cooking_info["recipe"] + for chest_item, quantity in cooking_info.get("required_chest_items", {}).items(): + inventory[chest_item] = inventory.get(chest_item, 0) + quantity + else: + print(f"item {item} not found in COOKING_ITEMS.") + print(inventory) + task["recipes"] = new_recipes + # assign inventory to the agents + num_agents = task.get("agent_count", 0) + task.get("human_count", 0) + initial_inventory = {} + for i in range(num_agents): + initial_inventory[i] = {} + items_lst = list(inventory.keys()) + for i in range(len(items_lst)): + agent_num = i % num_agents + initial_inventory[agent_num][items_lst[i]] = inventory[items_lst[i]] + task["initial_inventory"] = initial_inventory + + goals = task.get("goal", {}) + new_goals = {} + blocked_access = task.get("blocked_access", []) + for key, goal in goals.items(): + initial_goal = goal.split("\n")[0] + if key not in blocked_access: + for item, recipe in new_recipes.items(): + initial_goal += f"Recipe for {item}:\n{recipe}" + new_goals[key] = initial_goal + task["goal"] = new_goals + # check each of the recipes and replace with the new recipe + + os.makedirs(os.path.dirname(new_task_path), exist_ok=True) + with open(new_task_path, 'w') as f: + json.dump(tasks, f, indent=4) + +reconfigure_tasks("mindcraft/tasks/cooking_tasks/equal_load_test_tasks/2_agent.json", "mindcraft/tasks/cooking_tasks/require_collab_test/2_agent.json") +reconfigure_tasks("mindcraft/tasks/cooking_tasks/equal_load_test_tasks/3_agent.json", "mindcraft/tasks/cooking_tasks/require_collab_test/3_agent.json") +reconfigure_tasks("mindcraft/tasks/cooking_tasks/equal_load_test_tasks/4_agent.json", "mindcraft/tasks/cooking_tasks/require_collab_test/4_agent.json") +reconfigure_tasks("mindcraft/tasks/cooking_tasks/equal_load_test_tasks/5_agent.json", "mindcraft/tasks/cooking_tasks/require_collab_test/5_agent.json") diff --git a/tasks/cooking_tasks/require_collab_test/2_agent.json b/tasks/cooking_tasks/require_collab_test/2_agent.json new file mode 100644 index 0000000..dc97acc --- /dev/null +++ b/tasks/cooking_tasks/require_collab_test/2_agent.json @@ -0,0 +1,576 @@ +{ + "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_rabbit_stew_2_agents": { + "conversation": "Let's work together to make cooked_beef, baked_potato, cake, rabbit_stew.", + "agent_count": 2, + "target": { + "cooked_beef": 1, + "baked_potato": 1, + "cake": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", + "1": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" + }, + "initial_inventory": { + "0": { + "coal": 16, + "egg": 1 + }, + "1": { + "milk_bucket": 3, + "bowl": 1 + } + } + }, + "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_golden_apple_1_rabbit_stew_2_agent": { + "conversation": "Let's work together to make bread, cake, golden_apple, baked_potato, rabbit_stew.", + "agent_count": 2, + "target": { + "bread": 1, + "cake": 1, + "golden_apple": 1, + "baked_potato": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", + "1": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" + }, + "initial_inventory": { + "0": { + "milk_bucket": 3, + "gold_ingots": 8, + "coal": 8 + }, + "1": { + "egg": 1, + "apple": 1, + "bowl": 1 + } + } + }, + "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_golden_apple_2_agent": { + "conversation": "Let's work together to make baked_potato, bread, cooked_beef, golden_apple.", + "agent_count": 2, + "target": { + "baked_potato": 1, + "bread": 1, + "cooked_beef": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" + }, + "initial_inventory": { + "0": { + "coal": 16, + "apple": 1 + }, + "1": { + "gold_ingots": 8 + } + } + }, + "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_cooked_beef_1_golden_apple": { + "conversation": "Let's work together to make cake, bread, golden_apple, baked_potato, cooked_beef.", + "agent_count": 2, + "target": { + "cake": 1, + "bread": 1, + "golden_apple": 1, + "baked_potato": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "1": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" + }, + "initial_inventory": { + "0": { + "milk_bucket": 3, + "gold_ingots": 8, + "coal": 16 + }, + "1": { + "egg": 1, + "apple": 1 + } + } + }, + "multiagent_cooking_5_1_baked_potato_1_cake_1_golden_apple_1_rabbit_stew_2_agent": { + "conversation": "Let's work together to make rabbit_stew, golden_apple, cake, baked_potato.", + "agent_count": 2, + "target": { + "rabbit_stew": 1, + "golden_apple": 1, + "cake": 1, + "baked_potato": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", + "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']" + }, + "initial_inventory": { + "0": { + "bowl": 1, + "apple": 1, + "egg": 1 + }, + "1": { + "gold_ingots": 8, + "milk_bucket": 3, + "coal": 8 + } + } + }, + "multiagent_cooking_5_1_bread_1_cooked_beef_1_golden_apple_1_rabbit_stew_2_agent": { + "conversation": "Let's work together to make bread, rabbit_stew, golden_apple, cooked_beef.", + "agent_count": 2, + "target": { + "bread": 1, + "rabbit_stew": 1, + "golden_apple": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "1": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" + }, + "initial_inventory": { + "0": { + "bowl": 1, + "apple": 1 + }, + "1": { + "gold_ingots": 8, + "coal": 8 + } + } + }, + "multiagent_cooking_5_1_bread_1_cake_1_golden_apple_1_rabbit_stew_2_agent": { + "conversation": "Let's work together to make cake, rabbit_stew, golden_apple, bread.", + "agent_count": 2, + "target": { + "cake": 1, + "rabbit_stew": 1, + "golden_apple": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "1": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" + }, + "initial_inventory": { + "0": { + "milk_bucket": 3, + "bowl": 1, + "apple": 1 + }, + "1": { + "egg": 1, + "gold_ingots": 8 + } + } + }, + "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_2_agent": { + "conversation": "Let's work together to make cooked_beef, golden_apple, cake, baked_potato, rabbit_stew.", + "agent_count": 2, + "target": { + "cooked_beef": 1, + "golden_apple": 1, + "cake": 1, + "baked_potato": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", + "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" + }, + "initial_inventory": { + "0": { + "coal": 16, + "apple": 1, + "egg": 1 + }, + "1": { + "gold_ingots": 8, + "milk_bucket": 3, + "bowl": 1 + } + } + }, + "multiagent_cooking_5_1_bread_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_2_agent": { + "conversation": "Let's work together to make cooked_beef, golden_apple, rabbit_stew, bread, cake.", + "agent_count": 2, + "target": { + "cooked_beef": 1, + "golden_apple": 1, + "rabbit_stew": 1, + "bread": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" + }, + "initial_inventory": { + "0": { + "coal": 8, + "apple": 1, + "milk_bucket": 3 + }, + "1": { + "gold_ingots": 8, + "bowl": 1, + "egg": 1 + } + } + }, + "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_rabbit_stew_2_agent": { + "conversation": "Let's work together to make bread, cooked_beef, rabbit_stew, baked_potato.", + "agent_count": 2, + "target": { + "bread": 1, + "cooked_beef": 1, + "rabbit_stew": 1, + "baked_potato": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", + "1": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']" + }, + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": { + "bowl": 1 + } + } + } +} \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_test/3_agent.json b/tasks/cooking_tasks/require_collab_test/3_agent.json new file mode 100644 index 0000000..25e01d4 --- /dev/null +++ b/tasks/cooking_tasks/require_collab_test/3_agent.json @@ -0,0 +1,605 @@ +{ + "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_rabbit_stew_3_agent": { + "conversation": "Let's work together to make cooked_beef, baked_potato, cake, rabbit_stew.", + "agent_count": 3, + "target": { + "cooked_beef": 1, + "baked_potato": 1, + "cake": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", + "1": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", + "2": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" + }, + "initial_inventory": { + "0": { + "coal": 16, + "bowl": 1 + }, + "1": { + "milk_bucket": 3 + }, + "2": { + "egg": 1 + } + } + }, + "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_golden_apple_1_rabbit_stew_3_agent": { + "conversation": "Let's work together to make bread, cake, golden_apple, baked_potato, rabbit_stew.", + "agent_count": 3, + "target": { + "bread": 1, + "cake": 1, + "golden_apple": 1, + "baked_potato": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", + "1": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", + "2": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" + }, + "initial_inventory": { + "0": { + "milk_bucket": 3, + "apple": 1 + }, + "1": { + "egg": 1, + "coal": 8 + }, + "2": { + "gold_ingots": 8, + "bowl": 1 + } + } + }, + "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_golden_apple_3_agent": { + "conversation": "Let's work together to make baked_potato, bread, cooked_beef, golden_apple.", + "agent_count": 3, + "target": { + "baked_potato": 1, + "bread": 1, + "cooked_beef": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "2": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" + }, + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": { + "gold_ingots": 8 + }, + "2": { + "apple": 1 + } + } + }, + "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_cooked_beef_1_golden_apple_3_agent": { + "conversation": "Let's work together to make cake, bread, golden_apple, baked_potato, cooked_beef.", + "agent_count": 3, + "target": { + "cake": 1, + "bread": 1, + "golden_apple": 1, + "baked_potato": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "1": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "2": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" + }, + "initial_inventory": { + "0": { + "milk_bucket": 3, + "apple": 1 + }, + "1": { + "egg": 1, + "coal": 16 + }, + "2": { + "gold_ingots": 8 + } + } + }, + "multiagent_cooking_5_1_baked_potato_1_cake_1_golden_apple_1_rabbit_stew_3_agent": { + "conversation": "Let's work together to make rabbit_stew, golden_apple, cake, baked_potato.", + "agent_count": 3, + "target": { + "rabbit_stew": 1, + "golden_apple": 1, + "cake": 1, + "baked_potato": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", + "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", + "2": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']" + }, + "initial_inventory": { + "0": { + "bowl": 1, + "milk_bucket": 3 + }, + "1": { + "gold_ingots": 8, + "egg": 1 + }, + "2": { + "apple": 1, + "coal": 8 + } + } + }, + "multiagent_cooking_5_1_bread_1_cooked_beef_1_golden_apple_1_rabbit_stew_3_agent": { + "conversation": "Let's work together to make bread, rabbit_stew, golden_apple, cooked_beef.", + "agent_count": 3, + "target": { + "bread": 1, + "rabbit_stew": 1, + "golden_apple": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "1": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "2": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" + }, + "initial_inventory": { + "0": { + "bowl": 1, + "coal": 8 + }, + "1": { + "gold_ingots": 8 + }, + "2": { + "apple": 1 + } + } + }, + "multiagent_cooking_5_1_bread_1_cake_1_golden_apple_1_rabbit_stew_3_agent": { + "conversation": "Let's work together to make cake, rabbit_stew, golden_apple, bread.", + "agent_count": 3, + "target": { + "cake": 1, + "rabbit_stew": 1, + "golden_apple": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "1": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "2": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" + }, + "initial_inventory": { + "0": { + "milk_bucket": 3, + "gold_ingots": 8 + }, + "1": { + "egg": 1, + "apple": 1 + }, + "2": { + "bowl": 1 + } + } + }, + "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew": { + "conversation": "Let's work together to make cooked_beef, golden_apple, cake, baked_potato, rabbit_stew.", + "agent_count": 3, + "target": { + "cooked_beef": 1, + "golden_apple": 1, + "cake": 1, + "baked_potato": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", + "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", + "2": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" + }, + "initial_inventory": { + "0": { + "coal": 16, + "milk_bucket": 3 + }, + "1": { + "gold_ingots": 8, + "egg": 1 + }, + "2": { + "apple": 1, + "bowl": 1 + } + } + }, + "multiagent_cooking_5_1_bread_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_3_agent": { + "conversation": "Let's work together to make cooked_beef, golden_apple, rabbit_stew, bread, cake.", + "agent_count": 3, + "target": { + "cooked_beef": 1, + "golden_apple": 1, + "rabbit_stew": 1, + "bread": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "2": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" + }, + "initial_inventory": { + "0": { + "coal": 8, + "bowl": 1 + }, + "1": { + "gold_ingots": 8, + "milk_bucket": 3 + }, + "2": { + "apple": 1, + "egg": 1 + } + } + }, + "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_rabbit_stew_3_agent": { + "conversation": "Let's work together to make bread, cooked_beef, rabbit_stew, baked_potato.", + "agent_count": 3, + "target": { + "bread": 1, + "cooked_beef": 1, + "rabbit_stew": 1, + "baked_potato": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", + "1": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", + "2": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']" + }, + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": { + "bowl": 1 + }, + "2": {} + } + } +} \ No newline at end of file From 31e5b6f9fbb1726de27dc8dfd1919061c9bb07c5 Mon Sep 17 00:00:00 2001 From: Isadora White Date: Mon, 5 May 2025 17:30:05 -0700 Subject: [PATCH 026/101] 4 and 5 agent examples --- ...ake_collaboration_required_cooking_task.py | 4 +- .../require_collab_test/4_agent.json | 634 +++++++++++++++++ .../require_collab_test/5_agent.json | 659 ++++++++++++++++++ 3 files changed, 1294 insertions(+), 3 deletions(-) create mode 100644 tasks/cooking_tasks/require_collab_test/4_agent.json create mode 100644 tasks/cooking_tasks/require_collab_test/5_agent.json diff --git a/tasks/cooking_tasks/make_collaboration_required_cooking_task.py b/tasks/cooking_tasks/make_collaboration_required_cooking_task.py index 9f69420..3d5697a 100644 --- a/tasks/cooking_tasks/make_collaboration_required_cooking_task.py +++ b/tasks/cooking_tasks/make_collaboration_required_cooking_task.py @@ -292,6 +292,4 @@ def reconfigure_tasks(task_path, new_task_path): reconfigure_tasks("mindcraft/tasks/cooking_tasks/equal_load_test_tasks/2_agent.json", "mindcraft/tasks/cooking_tasks/require_collab_test/2_agent.json") reconfigure_tasks("mindcraft/tasks/cooking_tasks/equal_load_test_tasks/3_agent.json", "mindcraft/tasks/cooking_tasks/require_collab_test/3_agent.json") reconfigure_tasks("mindcraft/tasks/cooking_tasks/equal_load_test_tasks/4_agent.json", "mindcraft/tasks/cooking_tasks/require_collab_test/4_agent.json") -reconfigure_tasks("mindcraft/tasks/cooking_tasks/equal_load_test_tasks/5_agent.json", "mindcraft/tasks/cooking_tasks/require_collab_test/5_agent.json") - -reconfigure_tasks("mindcraft/tasks/cooking_tasks/") \ No newline at end of file +reconfigure_tasks("mindcraft/tasks/cooking_tasks/equal_load_test_tasks/5_agent.json", "mindcraft/tasks/cooking_tasks/require_collab_test/5_agent.json") \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_test/4_agent.json b/tasks/cooking_tasks/require_collab_test/4_agent.json new file mode 100644 index 0000000..dfc1ac4 --- /dev/null +++ b/tasks/cooking_tasks/require_collab_test/4_agent.json @@ -0,0 +1,634 @@ +{ + "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_rabbit_stew_4_agent": { + "conversation": "Let's work together to make cooked_beef, baked_potato, cake, rabbit_stew.", + "agent_count": 4, + "target": { + "cooked_beef": 1, + "baked_potato": 1, + "cake": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", + "1": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", + "2": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", + "3": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" + }, + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": { + "milk_bucket": 3 + }, + "2": { + "egg": 1 + }, + "3": { + "bowl": 1 + } + } + }, + "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_golden_apple_1_rabbit_stew_4_agent": { + "conversation": "Let's work together to make bread, cake, golden_apple, baked_potato, rabbit_stew.", + "agent_count": 4, + "target": { + "bread": 1, + "cake": 1, + "golden_apple": 1, + "baked_potato": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", + "1": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", + "2": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", + "3": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" + }, + "initial_inventory": { + "0": { + "milk_bucket": 3, + "coal": 8 + }, + "1": { + "egg": 1, + "bowl": 1 + }, + "2": { + "gold_ingots": 8 + }, + "3": { + "apple": 1 + } + } + }, + "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_golden_apple_4_agent": { + "conversation": "Let's work together to make baked_potato, bread, cooked_beef, golden_apple.", + "agent_count": 4, + "target": { + "baked_potato": 1, + "bread": 1, + "cooked_beef": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "2": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "3": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" + }, + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": { + "gold_ingots": 8 + }, + "2": { + "apple": 1 + }, + "3": {} + } + }, + "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_cooked_beef_1_golden_apple_4_agent": { + "conversation": "Let's work together to make cake, bread, golden_apple, baked_potato, cooked_beef.", + "agent_count": 4, + "target": { + "cake": 1, + "bread": 1, + "golden_apple": 1, + "baked_potato": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "1": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "2": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "3": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" + }, + "initial_inventory": { + "0": { + "milk_bucket": 3, + "coal": 16 + }, + "1": { + "egg": 1 + }, + "2": { + "gold_ingots": 8 + }, + "3": { + "apple": 1 + } + } + }, + "multiagent_cooking_5_1_baked_potato_1_cake_1_golden_apple_1_rabbit_stew_4_agent": { + "conversation": "Let's work together to make rabbit_stew, golden_apple, cake, baked_potato.", + "agent_count": 4, + "target": { + "rabbit_stew": 1, + "golden_apple": 1, + "cake": 1, + "baked_potato": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", + "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", + "2": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", + "3": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']" + }, + "initial_inventory": { + "0": { + "bowl": 1, + "egg": 1 + }, + "1": { + "gold_ingots": 8, + "coal": 8 + }, + "2": { + "apple": 1 + }, + "3": { + "milk_bucket": 3 + } + } + }, + "multiagent_cooking_5_1_bread_1_cooked_beef_1_golden_apple_1_rabbit_stew_4_agent": { + "conversation": "Let's work together to make bread, rabbit_stew, golden_apple, cooked_beef.", + "agent_count": 5, + "target": { + "bread": 1, + "rabbit_stew": 1, + "golden_apple": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "1": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "2": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "3": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "gold_ingots": 8 + }, + "2": { + "apple": 1 + }, + "3": { + "coal": 8 + }, + "4": {} + } + }, + "multiagent_cooking_5_1_bread_1_cake_1_golden_apple_1_rabbit_stew_4_agent": { + "conversation": "Let's work together to make cake, rabbit_stew, golden_apple, bread.", + "agent_count": 4, + "target": { + "cake": 1, + "rabbit_stew": 1, + "golden_apple": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "1": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "2": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "3": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" + }, + "initial_inventory": { + "0": { + "milk_bucket": 3, + "apple": 1 + }, + "1": { + "egg": 1 + }, + "2": { + "bowl": 1 + }, + "3": { + "gold_ingots": 8 + } + } + }, + "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_4_agent": { + "conversation": "Let's work together to make cooked_beef, golden_apple, cake, baked_potato, rabbit_stew.", + "agent_count": 4, + "target": { + "cooked_beef": 1, + "golden_apple": 1, + "cake": 1, + "baked_potato": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", + "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", + "2": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", + "3": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" + }, + "initial_inventory": { + "0": { + "coal": 16, + "egg": 1 + }, + "1": { + "gold_ingots": 8, + "bowl": 1 + }, + "2": { + "apple": 1 + }, + "3": { + "milk_bucket": 3 + } + } + }, + "multiagent_cooking_5_1_bread_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_4_agent": { + "conversation": "Let's work together to make cooked_beef, golden_apple, rabbit_stew, bread, cake.", + "agent_count": 4, + "target": { + "cooked_beef": 1, + "golden_apple": 1, + "rabbit_stew": 1, + "bread": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "2": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "3": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" + }, + "initial_inventory": { + "0": { + "coal": 8, + "milk_bucket": 3 + }, + "1": { + "gold_ingots": 8, + "egg": 1 + }, + "2": { + "apple": 1 + }, + "3": { + "bowl": 1 + } + } + }, + "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_rabbit_stew_4_agent": { + "conversation": "Let's work together to make bread, cooked_beef, rabbit_stew, baked_potato.", + "agent_count": 4, + "target": { + "bread": 1, + "cooked_beef": 1, + "rabbit_stew": 1, + "baked_potato": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", + "1": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", + "2": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", + "3": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']" + }, + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": { + "bowl": 1 + }, + "2": {}, + "3": {} + } + } +} \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_test/5_agent.json b/tasks/cooking_tasks/require_collab_test/5_agent.json new file mode 100644 index 0000000..7b37fb9 --- /dev/null +++ b/tasks/cooking_tasks/require_collab_test/5_agent.json @@ -0,0 +1,659 @@ +{ + "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_rabbit_stew": { + "conversation": "Let's work together to make cooked_beef, baked_potato, cake, rabbit_stew.", + "agent_count": 5, + "target": { + "cooked_beef": 1, + "baked_potato": 1, + "cake": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", + "1": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", + "2": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", + "3": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", + "4": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" + }, + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": { + "milk_bucket": 3 + }, + "2": { + "egg": 1 + }, + "3": { + "bowl": 1 + }, + "4": {} + } + }, + "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_golden_apple_1_rabbit_stew": { + "conversation": "Let's work together to make bread, cake, golden_apple, baked_potato, rabbit_stew.", + "agent_count": 5, + "target": { + "bread": 1, + "cake": 1, + "golden_apple": 1, + "baked_potato": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", + "1": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", + "2": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", + "3": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", + "4": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" + }, + "initial_inventory": { + "0": { + "milk_bucket": 3, + "bowl": 1 + }, + "1": { + "egg": 1 + }, + "2": { + "gold_ingots": 8 + }, + "3": { + "apple": 1 + }, + "4": { + "coal": 8 + } + } + }, + "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_golden_apple": { + "conversation": "Let's work together to make baked_potato, bread, cooked_beef, golden_apple.", + "agent_count": 5, + "target": { + "baked_potato": 1, + "bread": 1, + "cooked_beef": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "2": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "3": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "4": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" + }, + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": { + "gold_ingots": 8 + }, + "2": { + "apple": 1 + }, + "3": {}, + "4": {} + } + }, + "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_cooked_beef_1_golden_apple": { + "conversation": "Let's work together to make cake, bread, golden_apple, baked_potato, cooked_beef.", + "agent_count": 5, + "target": { + "cake": 1, + "bread": 1, + "golden_apple": 1, + "baked_potato": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "1": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "2": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "3": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "4": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" + }, + "initial_inventory": { + "0": { + "milk_bucket": 3 + }, + "1": { + "egg": 1 + }, + "2": { + "gold_ingots": 8 + }, + "3": { + "apple": 1 + }, + "4": { + "coal": 16 + } + } + }, + "multiagent_cooking_5_1_baked_potato_1_cake_1_golden_apple_1_rabbit_stew": { + "conversation": "Let's work together to make rabbit_stew, golden_apple, cake, baked_potato.", + "agent_count": 5, + "target": { + "rabbit_stew": 1, + "golden_apple": 1, + "cake": 1, + "baked_potato": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", + "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", + "2": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", + "3": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", + "4": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']" + }, + "initial_inventory": { + "0": { + "bowl": 1, + "coal": 8 + }, + "1": { + "gold_ingots": 8 + }, + "2": { + "apple": 1 + }, + "3": { + "milk_bucket": 3 + }, + "4": { + "egg": 1 + } + } + }, + "multiagent_cooking_5_1_bread_1_cooked_beef_1_golden_apple_1_rabbit_stew": { + "conversation": "Let's work together to make bread, rabbit_stew, golden_apple, cooked_beef.", + "agent_count": 5, + "target": { + "bread": 1, + "rabbit_stew": 1, + "golden_apple": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "1": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "2": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "3": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "4": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "gold_ingots": 8 + }, + "2": { + "apple": 1 + }, + "3": { + "coal": 8 + }, + "4": {} + } + }, + "multiagent_cooking_5_1_bread_1_cake_1_golden_apple_1_rabbit_stew": { + "conversation": "Let's work together to make cake, rabbit_stew, golden_apple, bread.", + "agent_count": 5, + "target": { + "cake": 1, + "rabbit_stew": 1, + "golden_apple": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "1": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "2": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "3": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "4": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" + }, + "initial_inventory": { + "0": { + "milk_bucket": 3 + }, + "1": { + "egg": 1 + }, + "2": { + "bowl": 1 + }, + "3": { + "gold_ingots": 8 + }, + "4": { + "apple": 1 + } + } + }, + "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew": { + "conversation": "Let's work together to make cooked_beef, golden_apple, cake, baked_potato, rabbit_stew.", + "agent_count": 5, + "target": { + "cooked_beef": 1, + "golden_apple": 1, + "cake": 1, + "baked_potato": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", + "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", + "2": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", + "3": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", + "4": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" + }, + "initial_inventory": { + "0": { + "coal": 16, + "bowl": 1 + }, + "1": { + "gold_ingots": 8 + }, + "2": { + "apple": 1 + }, + "3": { + "milk_bucket": 3 + }, + "4": { + "egg": 1 + } + } + }, + "multiagent_cooking_5_1_bread_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew": { + "conversation": "Let's work together to make cooked_beef, golden_apple, rabbit_stew, bread, cake.", + "agent_count": 5, + "target": { + "cooked_beef": 1, + "golden_apple": 1, + "rabbit_stew": 1, + "bread": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "2": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "3": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "4": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" + }, + "initial_inventory": { + "0": { + "coal": 8, + "egg": 1 + }, + "1": { + "gold_ingots": 8 + }, + "2": { + "apple": 1 + }, + "3": { + "bowl": 1 + }, + "4": { + "milk_bucket": 3 + } + } + }, + "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_rabbit_stew": { + "conversation": "Let's work together to make bread, cooked_beef, rabbit_stew, baked_potato.", + "agent_count": 5, + "target": { + "bread": 1, + "cooked_beef": 1, + "rabbit_stew": 1, + "baked_potato": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", + "1": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", + "2": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", + "3": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", + "4": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']" + }, + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": { + "bowl": 1 + }, + "2": {}, + "3": {}, + "4": {} + } + } +} \ No newline at end of file From 057faa6046a99626cc6677494c1681a61a0a1256 Mon Sep 17 00:00:00 2001 From: Isadora White Date: Mon, 5 May 2025 21:08:34 -0700 Subject: [PATCH 027/101] make train tasks --- ...ake_collaboration_required_cooking_task.py | 25 +- .../require_collab_train/2_agent.json | 1615 ++++++ .../2_agent_blocked_access.json | 3046 ++++++++++ .../2_agent_cooking_train_tasks.json | 1615 ++++++ .../require_collab_train/3_agent.json | 3729 ++++++++++++ .../3_agent_cooking_train_tasks.json | 4293 ++++++++++++++ .../require_collab_train/4_agent.json | 4410 +++++++++++++++ .../require_collab_train/5_agent.json | 5018 +++++++++++++++++ .../train_tasks/train_tasks_3_agents.json | 140 +- .../train_tasks/train_tasks_4_agents.json | 140 +- .../train_tasks/train_tasks_5_agents.json | 140 +- 11 files changed, 23953 insertions(+), 218 deletions(-) create mode 100644 tasks/cooking_tasks/require_collab_train/2_agent.json create mode 100644 tasks/cooking_tasks/require_collab_train/2_agent_blocked_access.json create mode 100644 tasks/cooking_tasks/require_collab_train/2_agent_cooking_train_tasks.json create mode 100644 tasks/cooking_tasks/require_collab_train/3_agent.json create mode 100644 tasks/cooking_tasks/require_collab_train/3_agent_cooking_train_tasks.json create mode 100644 tasks/cooking_tasks/require_collab_train/4_agent.json create mode 100644 tasks/cooking_tasks/require_collab_train/5_agent.json diff --git a/tasks/cooking_tasks/make_collaboration_required_cooking_task.py b/tasks/cooking_tasks/make_collaboration_required_cooking_task.py index 3d5697a..8482332 100644 --- a/tasks/cooking_tasks/make_collaboration_required_cooking_task.py +++ b/tasks/cooking_tasks/make_collaboration_required_cooking_task.py @@ -150,7 +150,7 @@ COOKING_ITEMS = { "Step 2: Go to the crafting table and use the wheat to craft bread." ], "description": "Fresh bread", - "complexity": "medium", + "complexity": "medium" }, "cake": { "recipe": [ @@ -216,7 +216,9 @@ COOKING_ITEMS = { ], "description": "A magical golden carrot", "complexity": "hard", - "required_chest_items": ["gold_ingots"] + "required_chest_items": { + "gold_ingots": 8, + } }, } @@ -275,10 +277,11 @@ def reconfigure_tasks(task_path, new_task_path): goals = task.get("goal", {}) new_goals = {} - blocked_access = task.get("blocked_access", []) + blocked_access = task.get("blocked_access_to_recipe", []) + print(blocked_access) for key, goal in goals.items(): initial_goal = goal.split("\n")[0] - if key not in blocked_access: + if str(key) not in blocked_access: for item, recipe in new_recipes.items(): initial_goal += f"Recipe for {item}:\n{recipe}" new_goals[key] = initial_goal @@ -289,7 +292,13 @@ def reconfigure_tasks(task_path, new_task_path): with open(new_task_path, 'w') as f: json.dump(tasks, f, indent=4) -reconfigure_tasks("mindcraft/tasks/cooking_tasks/equal_load_test_tasks/2_agent.json", "mindcraft/tasks/cooking_tasks/require_collab_test/2_agent.json") -reconfigure_tasks("mindcraft/tasks/cooking_tasks/equal_load_test_tasks/3_agent.json", "mindcraft/tasks/cooking_tasks/require_collab_test/3_agent.json") -reconfigure_tasks("mindcraft/tasks/cooking_tasks/equal_load_test_tasks/4_agent.json", "mindcraft/tasks/cooking_tasks/require_collab_test/4_agent.json") -reconfigure_tasks("mindcraft/tasks/cooking_tasks/equal_load_test_tasks/5_agent.json", "mindcraft/tasks/cooking_tasks/require_collab_test/5_agent.json") \ No newline at end of file +# reconfigure_tasks("mindcraft/tasks/cooking_tasks/equal_load_test_tasks/2_agent.json", "mindcraft/tasks/cooking_tasks/require_collab_test/2_agent.json") +# reconfigure_tasks("mindcraft/tasks/cooking_tasks/equal_load_test_tasks/3_agent.json", "mindcraft/tasks/cooking_tasks/require_collab_test/3_agent.json") +# reconfigure_tasks("mindcraft/tasks/cooking_tasks/equal_load_test_tasks/4_agent.json", "mindcraft/tasks/cooking_tasks/require_collab_test/4_agent.json") +# reconfigure_tasks("mindcraft/tasks/cooking_tasks/equal_load_test_tasks/5_agent.json", "mindcraft/tasks/cooking_tasks/require_collab_test/5_agent.json") + +# reconfigure_tasks("mindcraft/tasks/cooking_tasks/train_tasks/2_agent_cooking_train_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_train/2_agent.json") +reconfigure_tasks("mindcraft/tasks/cooking_tasks/train_tasks/train_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_train/2_agent_blocked_access.json") +# reconfigure_tasks("mindcraft/tasks/cooking_tasks/train_tasks/train_tasks_3_agents.json", "mindcraft/tasks/cooking_tasks/require_collab_train/3_agent.json") +# reconfigure_tasks("mindcraft/tasks/cooking_tasks/train_tasks/train_tasks_4_agents.json", "mindcraft/tasks/cooking_tasks/require_collab_train/4_agent.json") +# reconfigure_tasks("mindcraft/tasks/cooking_tasks/train_tasks/train_tasks_5_agents.json", "mindcraft/tasks/cooking_tasks/require_collab_train/5_agent.json") \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_train/2_agent.json b/tasks/cooking_tasks/require_collab_train/2_agent.json new file mode 100644 index 0000000..1a2c00b --- /dev/null +++ b/tasks/cooking_tasks/require_collab_train/2_agent.json @@ -0,0 +1,1615 @@ +{ + "multiagent_cooking_2_1_cooked_chicken_1_golden_carrot": { + "conversation": "Let's work together to make cooked_chicken, golden_carrot.", + "agent_count": 2, + "target": { + "cooked_chicken": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "initial_inventory": { + "0": { + "coal": 8 + }, + "1": { + "gold_ingots": 8 + } + } + }, + "multiagent_cooking_2_1_cooked_mutton_1_golden_carrot": { + "conversation": "Let's work together to make golden_carrot, cooked_mutton.", + "agent_count": 2, + "target": { + "golden_carrot": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" + }, + "initial_inventory": { + "0": { + "gold_ingots": 8 + }, + "1": { + "coal": 8 + } + } + }, + "multiagent_cooking_2_1_cookie_1_mushroom_stew": { + "conversation": "Let's work together to make cookie, mushroom_stew.", + "agent_count": 2, + "target": { + "cookie": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "1": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" + }, + "initial_inventory": { + "0": { + "cocoa_beans": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_2_1_cookie_1_golden_carrot": { + "conversation": "Let's work together to make golden_carrot, cookie.", + "agent_count": 2, + "target": { + "golden_carrot": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cookie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cookie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" + }, + "initial_inventory": { + "0": { + "gold_ingots": 8 + }, + "1": { + "cocoa_beans": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_mutton_1_cooked_porkchop": { + "conversation": "Let's work together to make cooked_porkchop, cooked_mutton.", + "agent_count": 2, + "target": { + "cooked_porkchop": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" + }, + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": {} + } + }, + "multiagent_cooking_2_1_cookie_1_suspicious_stew": { + "conversation": "Let's work together to make suspicious_stew, cookie.", + "agent_count": 2, + "target": { + "suspicious_stew": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cookie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cookie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" + }, + "initial_inventory": { + "0": { + "bowl": 1, + "cocoa_beans": 1 + }, + "1": { + "dandelion": 1 + } + } + }, + "multiagent_cooking_2_1_mushroom_stew_1_suspicious_stew": { + "conversation": "Let's work together to make mushroom_stew, suspicious_stew.", + "agent_count": 2, + "target": { + "mushroom_stew": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + }, + "initial_inventory": { + "0": { + "bowl": 2 + }, + "1": { + "dandelion": 1 + } + } + }, + "multiagent_cooking_2_1_cookie_1_pumpkin_pie": { + "conversation": "Let's work together to make pumpkin_pie, cookie.", + "agent_count": 2, + "target": { + "pumpkin_pie": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" + }, + "initial_inventory": { + "0": { + "egg": 1 + }, + "1": { + "cocoa_beans": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_chicken_1_suspicious_stew": { + "conversation": "Let's work together to make suspicious_stew, cooked_chicken.", + "agent_count": 2, + "target": { + "suspicious_stew": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + }, + "initial_inventory": { + "0": { + "bowl": 1, + "coal": 8 + }, + "1": { + "dandelion": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_chicken_1_mushroom_stew": { + "conversation": "Let's work together to make mushroom_stew, cooked_chicken.", + "agent_count": 2, + "target": { + "mushroom_stew": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 8 + } + } + }, + "multiagent_cooking_2_1_cooked_rabbit_1_golden_carrot": { + "conversation": "Let's work together to make golden_carrot, cooked_rabbit.", + "agent_count": 2, + "target": { + "golden_carrot": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_rabbit. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_rabbit. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" + }, + "initial_inventory": { + "0": { + "gold_ingots": 8 + }, + "1": { + "coal": 8 + } + } + }, + "multiagent_cooking_2_1_golden_carrot_1_mushroom_stew": { + "conversation": "Let's work together to make golden_carrot, mushroom_stew.", + "agent_count": 2, + "target": { + "golden_carrot": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" + }, + "initial_inventory": { + "0": { + "gold_ingots": 8 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_2_1_golden_carrot_1_pumpkin_pie": { + "conversation": "Let's work together to make pumpkin_pie, golden_carrot.", + "agent_count": 2, + "target": { + "pumpkin_pie": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "initial_inventory": { + "0": { + "egg": 1 + }, + "1": { + "gold_ingots": 8 + } + } + }, + "multiagent_cooking_2_1_cooked_chicken_1_cooked_porkchop": { + "conversation": "Let's work together to make cooked_chicken, cooked_porkchop.", + "agent_count": 2, + "target": { + "cooked_chicken": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + }, + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": {} + } + }, + "multiagent_cooking_2_1_beetroot_soup_1_cooked_porkchop": { + "conversation": "Let's work together to make beetroot_soup, cooked_porkchop.", + "agent_count": 2, + "target": { + "beetroot_soup": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 8 + } + } + }, + "multiagent_cooking_2_1_cooked_porkchop_1_mushroom_stew": { + "conversation": "Let's work together to make mushroom_stew, cooked_porkchop.", + "agent_count": 2, + "target": { + "mushroom_stew": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 8 + } + } + }, + "multiagent_cooking_2_1_cooked_porkchop_1_golden_carrot": { + "conversation": "Let's work together to make cooked_porkchop, golden_carrot.", + "agent_count": 2, + "target": { + "cooked_porkchop": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "initial_inventory": { + "0": { + "coal": 8 + }, + "1": { + "gold_ingots": 8 + } + } + }, + "multiagent_cooking_2_1_cooked_porkchop_1_pumpkin_pie": { + "conversation": "Let's work together to make cooked_porkchop, pumpkin_pie.", + "agent_count": 2, + "target": { + "cooked_porkchop": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" + }, + "initial_inventory": { + "0": { + "coal": 8 + }, + "1": { + "egg": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_mutton_1_suspicious_stew": { + "conversation": "Let's work together to make cooked_mutton, suspicious_stew.", + "agent_count": 2, + "target": { + "cooked_mutton": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 suspicious_stew. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 suspicious_stew. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + }, + "initial_inventory": { + "0": { + "coal": 8, + "dandelion": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_2_1_mushroom_stew_1_pumpkin_pie": { + "conversation": "Let's work together to make pumpkin_pie, mushroom_stew.", + "agent_count": 2, + "target": { + "pumpkin_pie": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" + }, + "initial_inventory": { + "0": { + "egg": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_rabbit_1_mushroom_stew": { + "conversation": "Let's work together to make cooked_rabbit, mushroom_stew.", + "agent_count": 2, + "target": { + "cooked_rabbit": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" + }, + "initial_inventory": { + "0": { + "coal": 8 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_chicken_1_cookie": { + "conversation": "Let's work together to make cookie, cooked_chicken.", + "agent_count": 2, + "target": { + "cookie": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_chicken. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_chicken. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + }, + "initial_inventory": { + "0": { + "cocoa_beans": 1 + }, + "1": { + "coal": 8 + } + } + }, + "multiagent_cooking_2_1_cooked_chicken_1_pumpkin_pie": { + "conversation": "Let's work together to make pumpkin_pie, cooked_chicken.", + "agent_count": 2, + "target": { + "pumpkin_pie": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + }, + "initial_inventory": { + "0": { + "egg": 1 + }, + "1": { + "coal": 8 + } + } + }, + "multiagent_cooking_2_1_cooked_mutton_1_mushroom_stew": { + "conversation": "Let's work together to make mushroom_stew, cooked_mutton.", + "agent_count": 2, + "target": { + "mushroom_stew": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 8 + } + } + }, + "multiagent_cooking_2_1_cooked_porkchop_1_cooked_rabbit": { + "conversation": "Let's work together to make cooked_rabbit, cooked_porkchop.", + "agent_count": 2, + "target": { + "cooked_rabbit": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + }, + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": {} + } + }, + "multiagent_cooking_2_1_cooked_porkchop_1_suspicious_stew": { + "conversation": "Let's work together to make suspicious_stew, cooked_porkchop.", + "agent_count": 2, + "target": { + "suspicious_stew": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + }, + "initial_inventory": { + "0": { + "bowl": 1, + "coal": 8 + }, + "1": { + "dandelion": 1 + } + } + }, + "multiagent_cooking_2_1_beetroot_soup_1_suspicious_stew": { + "conversation": "Let's work together to make suspicious_stew, beetroot_soup.", + "agent_count": 2, + "target": { + "suspicious_stew": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" + }, + "initial_inventory": { + "0": { + "bowl": 2 + }, + "1": { + "dandelion": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_rabbit_1_cookie": { + "conversation": "Let's work together to make cookie, cooked_rabbit.", + "agent_count": 2, + "target": { + "cookie": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" + }, + "initial_inventory": { + "0": { + "cocoa_beans": 1 + }, + "1": { + "coal": 8 + } + } + }, + "multiagent_cooking_2_1_golden_carrot_1_suspicious_stew": { + "conversation": "Let's work together to make golden_carrot, suspicious_stew.", + "agent_count": 2, + "target": { + "golden_carrot": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + }, + "initial_inventory": { + "0": { + "gold_ingots": 8, + "dandelion": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_2_1_pumpkin_pie_1_suspicious_stew": { + "conversation": "Let's work together to make suspicious_stew, pumpkin_pie.", + "agent_count": 2, + "target": { + "suspicious_stew": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" + }, + "initial_inventory": { + "0": { + "bowl": 1, + "egg": 1 + }, + "1": { + "dandelion": 1 + } + } + }, + "multiagent_cooking_2_1_beetroot_soup_1_cookie": { + "conversation": "Let's work together to make beetroot_soup, cookie.", + "agent_count": 2, + "target": { + "beetroot_soup": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "cocoa_beans": 1 + } + } + }, + "multiagent_cooking_2_1_beetroot_soup_1_cooked_mutton": { + "conversation": "Let's work together to make cooked_mutton, beetroot_soup.", + "agent_count": 2, + "target": { + "cooked_mutton": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" + }, + "initial_inventory": { + "0": { + "coal": 8 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_2_1_beetroot_soup_1_pumpkin_pie": { + "conversation": "Let's work together to make beetroot_soup, pumpkin_pie.", + "agent_count": 2, + "target": { + "beetroot_soup": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "egg": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_chicken_1_cooked_rabbit": { + "conversation": "Let's work together to make cooked_chicken, cooked_rabbit.", + "agent_count": 2, + "target": { + "cooked_chicken": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" + }, + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": {} + } + }, + "multiagent_cooking_2_1_cooked_porkchop_1_cookie": { + "conversation": "Let's work together to make cooked_porkchop, cookie.", + "agent_count": 2, + "target": { + "cooked_porkchop": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cookie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cookie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" + }, + "initial_inventory": { + "0": { + "coal": 8 + }, + "1": { + "cocoa_beans": 1 + } + } + }, + "multiagent_cooking_2_1_beetroot_soup_1_golden_carrot": { + "conversation": "Let's work together to make beetroot_soup, golden_carrot.", + "agent_count": 2, + "target": { + "beetroot_soup": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 golden_carrot. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 golden_carrot. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "gold_ingots": 8 + } + } + }, + "multiagent_cooking_2_1_cooked_rabbit_1_suspicious_stew": { + "conversation": "Let's work together to make cooked_rabbit, suspicious_stew.", + "agent_count": 2, + "target": { + "cooked_rabbit": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + }, + "initial_inventory": { + "0": { + "coal": 8, + "dandelion": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_mutton_1_cooked_rabbit": { + "conversation": "Let's work together to make cooked_rabbit, cooked_mutton.", + "agent_count": 2, + "target": { + "cooked_rabbit": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_mutton. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_mutton. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" + }, + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": {} + } + }, + "multiagent_cooking_2_1_cooked_chicken_1_cooked_mutton": { + "conversation": "Let's work together to make cooked_mutton, cooked_chicken.", + "agent_count": 2, + "target": { + "cooked_mutton": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_chicken. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_chicken. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + }, + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": {} + } + }, + "multiagent_cooking_2_1_beetroot_soup_1_cooked_rabbit": { + "conversation": "Let's work together to make beetroot_soup, cooked_rabbit.", + "agent_count": 2, + "target": { + "beetroot_soup": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_rabbit. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_rabbit. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 8 + } + } + }, + "multiagent_cooking_2_1_cooked_mutton_1_cookie": { + "conversation": "Let's work together to make cookie, cooked_mutton.", + "agent_count": 2, + "target": { + "cookie": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_mutton. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_mutton. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" + }, + "initial_inventory": { + "0": { + "cocoa_beans": 1 + }, + "1": { + "coal": 8 + } + } + }, + "multiagent_cooking_2_1_beetroot_soup_1_mushroom_stew": { + "conversation": "Let's work together to make mushroom_stew, beetroot_soup.", + "agent_count": 2, + "target": { + "mushroom_stew": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" + }, + "initial_inventory": { + "0": { + "bowl": 2 + }, + "1": {} + } + }, + "multiagent_cooking_2_1_cooked_rabbit_1_pumpkin_pie": { + "conversation": "Let's work together to make pumpkin_pie, cooked_rabbit.", + "agent_count": 2, + "target": { + "pumpkin_pie": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_rabbit. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_rabbit. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" + }, + "initial_inventory": { + "0": { + "egg": 1 + }, + "1": { + "coal": 8 + } + } + }, + "multiagent_cooking_2_1_beetroot_soup_1_cooked_chicken": { + "conversation": "Let's work together to make beetroot_soup, cooked_chicken.", + "agent_count": 2, + "target": { + "beetroot_soup": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 8 + } + } + }, + "multiagent_cooking_2_1_cooked_mutton_1_pumpkin_pie": { + "conversation": "Let's work together to make cooked_mutton, pumpkin_pie.", + "agent_count": 2, + "target": { + "cooked_mutton": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" + }, + "initial_inventory": { + "0": { + "coal": 8 + }, + "1": { + "egg": 1 + } + } + } +} \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_train/2_agent_blocked_access.json b/tasks/cooking_tasks/require_collab_train/2_agent_blocked_access.json new file mode 100644 index 0000000..b863b49 --- /dev/null +++ b/tasks/cooking_tasks/require_collab_train/2_agent_blocked_access.json @@ -0,0 +1,3046 @@ +{ + "multiagent_cooking_1_cooked_porkchop_1_cooked_rabbit_blocked_access_0": { + "conversation": "Let's collaborate to make cooked_rabbit and cooked_porkchop.", + "agent_count": 2, + "target": { + "cooked_rabbit": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [ + "0" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop. ", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 4, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": {} + } + }, + "multiagent_cooking_1_cooked_mutton_blocked_access_1": { + "conversation": "Let's work together to make cooked_mutton.", + "agent_count": 2, + "target": { + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [ + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 cooked_mutton. " + }, + "difficulty_metrics": { + "total_recipe_steps": 2, + "blocked_agents_count": 1, + "unique_target_items": 1, + "overall_difficulty_score": 3, + "difficulty_category": "easy" + }, + "difficulty": "easy", + "initial_inventory": { + "0": { + "coal": 8 + }, + "1": {} + } + }, + "multiagent_cooking_1_cookie_1_mushroom_stew": { + "conversation": "Let's collaborate to make cookie and mushroom_stew.", + "agent_count": 2, + "target": { + "cookie": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "1": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 6, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "cocoa_beans": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_1_beetroot_soup_1_golden_carrot_blocked_access_1": { + "conversation": "Let's collaborate to make beetroot_soup and golden_carrot.", + "agent_count": 2, + "target": { + "beetroot_soup": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [ + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 golden_carrot. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 golden_carrot. " + }, + "difficulty_metrics": { + "total_recipe_steps": 6, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "gold_ingots": 8 + } + } + }, + "multiagent_cooking_1_beetroot_soup_1_cooked_mutton": { + "conversation": "Let's collaborate to make cooked_mutton and beetroot_soup.", + "agent_count": 2, + "target": { + "cooked_mutton": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 5, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 8 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_1_cooked_porkchop": { + "conversation": "Let's work together to make cooked_porkchop.", + "agent_count": 2, + "target": { + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "1": "Collaborate with agents around you to make 1 cooked_porkchop. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 2, + "blocked_agents_count": 0, + "unique_target_items": 1, + "overall_difficulty_score": 2, + "difficulty_category": "easy" + }, + "difficulty": "easy", + "initial_inventory": { + "0": { + "coal": 8 + }, + "1": {} + } + }, + "multiagent_cooking_1_cooked_porkchop_1_pumpkin_pie": { + "conversation": "Let's collaborate to make pumpkin_pie and cooked_porkchop.", + "agent_count": 2, + "target": { + "pumpkin_pie": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_porkchop. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_porkchop. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 6, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "egg": 1 + }, + "1": { + "coal": 8 + } + } + }, + "multiagent_cooking_1_cooked_chicken_1_suspicious_stew": { + "conversation": "Let's collaborate to make cooked_chicken and suspicious_stew.", + "agent_count": 2, + "target": { + "cooked_chicken": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 5, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 8, + "dandelion": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_1_beetroot_soup_1_cooked_rabbit_blocked_access_0": { + "conversation": "Let's collaborate to make beetroot_soup and cooked_rabbit.", + "agent_count": 2, + "target": { + "beetroot_soup": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [ + "0" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_rabbit. ", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_rabbit. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 5, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 8 + } + } + }, + "multiagent_cooking_1_cooked_chicken_1_cooked_rabbit_blocked_access_0_1": { + "conversation": "Let's collaborate to make cooked_rabbit and cooked_chicken.", + "agent_count": 2, + "target": { + "cooked_rabbit": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken. ", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken. " + }, + "difficulty_metrics": { + "total_recipe_steps": 4, + "blocked_agents_count": 2, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": {} + } + }, + "multiagent_cooking_1_cooked_mutton_1_cookie_blocked_access_1": { + "conversation": "Let's collaborate to make cookie and cooked_mutton.", + "agent_count": 2, + "target": { + "cookie": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [ + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_mutton. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_mutton. " + }, + "difficulty_metrics": { + "total_recipe_steps": 5, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "cocoa_beans": 1 + }, + "1": { + "coal": 8 + } + } + }, + "multiagent_cooking_1_beetroot_soup_1_mushroom_stew_blocked_access_0_1": { + "conversation": "Let's collaborate to make mushroom_stew and beetroot_soup.", + "agent_count": 2, + "target": { + "mushroom_stew": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup. ", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup. " + }, + "difficulty_metrics": { + "total_recipe_steps": 6, + "blocked_agents_count": 2, + "unique_target_items": 2, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "bowl": 2 + }, + "1": {} + } + }, + "multiagent_cooking_1_beetroot_soup_1_suspicious_stew": { + "conversation": "Let's collaborate to make suspicious_stew and beetroot_soup.", + "agent_count": 2, + "target": { + "suspicious_stew": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 6, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 2 + }, + "1": { + "dandelion": 1 + } + } + }, + "multiagent_cooking_1_beetroot_soup_1_cooked_porkchop_blocked_access_0_1": { + "conversation": "Let's collaborate to make beetroot_soup and cooked_porkchop.", + "agent_count": 2, + "target": { + "beetroot_soup": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop. ", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop. " + }, + "difficulty_metrics": { + "total_recipe_steps": 5, + "blocked_agents_count": 2, + "unique_target_items": 2, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 8 + } + } + }, + "multiagent_cooking_1_beetroot_soup_1_pumpkin_pie_blocked_access_0": { + "conversation": "Let's collaborate to make beetroot_soup and pumpkin_pie.", + "agent_count": 2, + "target": { + "beetroot_soup": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [ + "0" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie. ", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 7, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "egg": 1 + } + } + }, + "multiagent_cooking_1_beetroot_soup_1_mushroom_stew": { + "conversation": "Let's collaborate to make mushroom_stew and beetroot_soup.", + "agent_count": 2, + "target": { + "mushroom_stew": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 6, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 2 + }, + "1": {} + } + }, + "multiagent_cooking_1_cookie_1_suspicious_stew": { + "conversation": "Let's collaborate to make cookie and suspicious_stew.", + "agent_count": 2, + "target": { + "cookie": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 suspicious_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 cookie, 1 suspicious_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 6, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "cocoa_beans": 1, + "dandelion": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_1_beetroot_soup_1_cookie": { + "conversation": "Let's collaborate to make beetroot_soup and cookie.", + "agent_count": 2, + "target": { + "beetroot_soup": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 6, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "cocoa_beans": 1 + } + } + }, + "multiagent_cooking_1_golden_carrot_1_pumpkin_pie_blocked_access_0": { + "conversation": "Let's collaborate to make pumpkin_pie and golden_carrot.", + "agent_count": 2, + "target": { + "pumpkin_pie": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [ + "0" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot. ", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 7, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "egg": 1 + }, + "1": { + "gold_ingots": 8 + } + } + }, + "multiagent_cooking_1_golden_carrot_1_suspicious_stew_blocked_access_0_1": { + "conversation": "Let's collaborate to make suspicious_stew and golden_carrot.", + "agent_count": 2, + "target": { + "suspicious_stew": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 golden_carrot. ", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 golden_carrot. " + }, + "difficulty_metrics": { + "total_recipe_steps": 6, + "blocked_agents_count": 2, + "unique_target_items": 2, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "bowl": 1, + "gold_ingots": 8 + }, + "1": { + "dandelion": 1 + } + } + }, + "multiagent_cooking_1_cooked_porkchop_1_cooked_rabbit_blocked_access_0_1": { + "conversation": "Let's collaborate to make cooked_porkchop and cooked_rabbit.", + "agent_count": 2, + "target": { + "cooked_porkchop": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_rabbit. ", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_rabbit. " + }, + "difficulty_metrics": { + "total_recipe_steps": 4, + "blocked_agents_count": 2, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": {} + } + }, + "multiagent_cooking_1_cooked_porkchop_1_cookie_blocked_access_0": { + "conversation": "Let's collaborate to make cookie and cooked_porkchop.", + "agent_count": 2, + "target": { + "cookie": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [ + "0" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop. ", + "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 5, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "cocoa_beans": 1 + }, + "1": { + "coal": 8 + } + } + }, + "multiagent_cooking_1_cooked_chicken_1_mushroom_stew": { + "conversation": "Let's collaborate to make mushroom_stew and cooked_chicken.", + "agent_count": 2, + "target": { + "mushroom_stew": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 5, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 8 + } + } + }, + "multiagent_cooking_1_cooked_porkchop_1_cooked_rabbit": { + "conversation": "Let's collaborate to make cooked_rabbit and cooked_porkchop.", + "agent_count": 2, + "target": { + "cooked_rabbit": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 4, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 3, + "difficulty_category": "easy" + }, + "difficulty": "easy", + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": {} + } + }, + "multiagent_cooking_1_cooked_chicken_1_mushroom_stew_blocked_access_1": { + "conversation": "Let's collaborate to make cooked_chicken and mushroom_stew.", + "agent_count": 2, + "target": { + "cooked_chicken": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [ + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 mushroom_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 mushroom_stew. " + }, + "difficulty_metrics": { + "total_recipe_steps": 5, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 8 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_1_cookie_blocked_access_0_1": { + "conversation": "Let's work together to make cookie.", + "agent_count": 2, + "target": { + "cookie": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie. ", + "1": "Collaborate with agents around you to make 1 cookie. " + }, + "difficulty_metrics": { + "total_recipe_steps": 3, + "blocked_agents_count": 2, + "unique_target_items": 1, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "cocoa_beans": 1 + }, + "1": {} + } + }, + "multiagent_cooking_1_suspicious_stew_blocked_access_1": { + "conversation": "Let's work together to make suspicious_stew.", + "agent_count": 2, + "target": { + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [ + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew. " + }, + "difficulty_metrics": { + "total_recipe_steps": 3, + "blocked_agents_count": 1, + "unique_target_items": 1, + "overall_difficulty_score": 3, + "difficulty_category": "easy" + }, + "difficulty": "easy", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "dandelion": 1 + } + } + }, + "multiagent_cooking_1_cooked_porkchop_1_suspicious_stew_blocked_access_0": { + "conversation": "Let's collaborate to make suspicious_stew and cooked_porkchop.", + "agent_count": 2, + "target": { + "suspicious_stew": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [ + "0" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop. ", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 5, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1, + "coal": 8 + }, + "1": { + "dandelion": 1 + } + } + }, + "multiagent_cooking_1_cooked_rabbit_1_mushroom_stew_blocked_access_0_1": { + "conversation": "Let's collaborate to make cooked_rabbit and mushroom_stew.", + "agent_count": 2, + "target": { + "cooked_rabbit": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew. ", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew. " + }, + "difficulty_metrics": { + "total_recipe_steps": 5, + "blocked_agents_count": 2, + "unique_target_items": 2, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 8 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_1_cooked_rabbit_1_cookie": { + "conversation": "Let's collaborate to make cooked_rabbit and cookie.", + "agent_count": 2, + "target": { + "cooked_rabbit": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cookie. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cookie. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 5, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 8 + }, + "1": { + "cocoa_beans": 1 + } + } + }, + "multiagent_cooking_1_cooked_mutton_blocked_access_0_1": { + "conversation": "Let's work together to make cooked_mutton.", + "agent_count": 2, + "target": { + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton. ", + "1": "Collaborate with agents around you to make 1 cooked_mutton. " + }, + "difficulty_metrics": { + "total_recipe_steps": 2, + "blocked_agents_count": 2, + "unique_target_items": 1, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 8 + }, + "1": {} + } + }, + "multiagent_cooking_1_cooked_mutton_1_mushroom_stew": { + "conversation": "Let's collaborate to make mushroom_stew and cooked_mutton.", + "agent_count": 2, + "target": { + "mushroom_stew": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 5, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 8 + } + } + }, + "multiagent_cooking_1_beetroot_soup_1_cooked_porkchop": { + "conversation": "Let's collaborate to make beetroot_soup and cooked_porkchop.", + "agent_count": 2, + "target": { + "beetroot_soup": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 5, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 8 + } + } + }, + "multiagent_cooking_1_cooked_chicken_1_cooked_rabbit_blocked_access_1": { + "conversation": "Let's collaborate to make cooked_chicken and cooked_rabbit.", + "agent_count": 2, + "target": { + "cooked_chicken": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [ + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit. " + }, + "difficulty_metrics": { + "total_recipe_steps": 4, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": {} + } + }, + "multiagent_cooking_1_cooked_chicken_1_cooked_porkchop": { + "conversation": "Let's collaborate to make cooked_porkchop and cooked_chicken.", + "agent_count": 2, + "target": { + "cooked_porkchop": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 4, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 3, + "difficulty_category": "easy" + }, + "difficulty": "easy", + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": {} + } + }, + "multiagent_cooking_1_suspicious_stew": { + "conversation": "Let's work together to make suspicious_stew.", + "agent_count": 2, + "target": { + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 3, + "blocked_agents_count": 0, + "unique_target_items": 1, + "overall_difficulty_score": 2, + "difficulty_category": "easy" + }, + "difficulty": "easy", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "dandelion": 1 + } + } + }, + "multiagent_cooking_1_pumpkin_pie_1_suspicious_stew": { + "conversation": "Let's collaborate to make pumpkin_pie and suspicious_stew.", + "agent_count": 2, + "target": { + "pumpkin_pie": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 7, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "egg": 1, + "dandelion": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_1_cooked_chicken_1_mushroom_stew_blocked_access_0_1": { + "conversation": "Let's collaborate to make mushroom_stew and cooked_chicken.", + "agent_count": 2, + "target": { + "mushroom_stew": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken. ", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken. " + }, + "difficulty_metrics": { + "total_recipe_steps": 5, + "blocked_agents_count": 2, + "unique_target_items": 2, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 8 + } + } + }, + "multiagent_cooking_1_cookie": { + "conversation": "Let's work together to make cookie.", + "agent_count": 2, + "target": { + "cookie": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "1": "Collaborate with agents around you to make 1 cookie. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 3, + "blocked_agents_count": 0, + "unique_target_items": 1, + "overall_difficulty_score": 2, + "difficulty_category": "easy" + }, + "difficulty": "easy", + "initial_inventory": { + "0": { + "cocoa_beans": 1 + }, + "1": {} + } + }, + "multiagent_cooking_1_cookie_1_golden_carrot": { + "conversation": "Let's collaborate to make cookie and golden_carrot.", + "agent_count": 2, + "target": { + "cookie": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 golden_carrot. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 cookie, 1 golden_carrot. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 6, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "cocoa_beans": 1 + }, + "1": { + "gold_ingots": 8 + } + } + }, + "multiagent_cooking_1_beetroot_soup_1_golden_carrot": { + "conversation": "Let's collaborate to make golden_carrot and beetroot_soup.", + "agent_count": 2, + "target": { + "golden_carrot": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 6, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "gold_ingots": 8 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_1_cooked_rabbit_1_suspicious_stew_blocked_access_1": { + "conversation": "Let's collaborate to make cooked_rabbit and suspicious_stew.", + "agent_count": 2, + "target": { + "cooked_rabbit": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [ + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew. " + }, + "difficulty_metrics": { + "total_recipe_steps": 5, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 8, + "dandelion": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_1_beetroot_soup_1_cookie_blocked_access_1": { + "conversation": "Let's collaborate to make beetroot_soup and cookie.", + "agent_count": 2, + "target": { + "beetroot_soup": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [ + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie. " + }, + "difficulty_metrics": { + "total_recipe_steps": 6, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "cocoa_beans": 1 + } + } + }, + "multiagent_cooking_1_cooked_mutton_blocked_access_0": { + "conversation": "Let's work together to make cooked_mutton.", + "agent_count": 2, + "target": { + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [ + "0" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton. ", + "1": "Collaborate with agents around you to make 1 cooked_mutton. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 2, + "blocked_agents_count": 1, + "unique_target_items": 1, + "overall_difficulty_score": 3, + "difficulty_category": "easy" + }, + "difficulty": "easy", + "initial_inventory": { + "0": { + "coal": 8 + }, + "1": {} + } + }, + "multiagent_cooking_1_cooked_mutton_1_suspicious_stew_blocked_access_1": { + "conversation": "Let's collaborate to make suspicious_stew and cooked_mutton.", + "agent_count": 2, + "target": { + "suspicious_stew": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [ + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton. " + }, + "difficulty_metrics": { + "total_recipe_steps": 5, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1, + "coal": 8 + }, + "1": { + "dandelion": 1 + } + } + }, + "multiagent_cooking_1_cooked_rabbit_1_golden_carrot": { + "conversation": "Let's collaborate to make cooked_rabbit and golden_carrot.", + "agent_count": 2, + "target": { + "cooked_rabbit": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 5, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 8 + }, + "1": { + "gold_ingots": 8 + } + } + }, + "multiagent_cooking_1_pumpkin_pie_blocked_access_1": { + "conversation": "Let's work together to make pumpkin_pie.", + "agent_count": 2, + "target": { + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [ + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "1": "Collaborate with agents around you to make 1 pumpkin_pie. " + }, + "difficulty_metrics": { + "total_recipe_steps": 4, + "blocked_agents_count": 1, + "unique_target_items": 1, + "overall_difficulty_score": 3, + "difficulty_category": "easy" + }, + "difficulty": "easy", + "initial_inventory": { + "0": { + "egg": 1 + }, + "1": {} + } + }, + "multiagent_cooking_1_cooked_porkchop_blocked_access_1": { + "conversation": "Let's work together to make cooked_porkchop.", + "agent_count": 2, + "target": { + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [ + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "1": "Collaborate with agents around you to make 1 cooked_porkchop. " + }, + "difficulty_metrics": { + "total_recipe_steps": 2, + "blocked_agents_count": 1, + "unique_target_items": 1, + "overall_difficulty_score": 3, + "difficulty_category": "easy" + }, + "difficulty": "easy", + "initial_inventory": { + "0": { + "coal": 8 + }, + "1": {} + } + }, + "multiagent_cooking_1_cooked_rabbit_1_pumpkin_pie_blocked_access_0_1": { + "conversation": "Let's collaborate to make cooked_rabbit and pumpkin_pie.", + "agent_count": 2, + "target": { + "cooked_rabbit": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie. ", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie. " + }, + "difficulty_metrics": { + "total_recipe_steps": 6, + "blocked_agents_count": 2, + "unique_target_items": 2, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 8 + }, + "1": { + "egg": 1 + } + } + }, + "multiagent_cooking_1_cooked_rabbit_blocked_access_0_1": { + "conversation": "Let's work together to make cooked_rabbit.", + "agent_count": 2, + "target": { + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit. ", + "1": "Collaborate with agents around you to make 1 cooked_rabbit. " + }, + "difficulty_metrics": { + "total_recipe_steps": 2, + "blocked_agents_count": 2, + "unique_target_items": 1, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 8 + }, + "1": {} + } + }, + "multiagent_cooking_1_cooked_mutton_1_cookie_blocked_access_0_1": { + "conversation": "Let's collaborate to make cooked_mutton and cookie.", + "agent_count": 2, + "target": { + "cooked_mutton": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cookie. ", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cookie. " + }, + "difficulty_metrics": { + "total_recipe_steps": 5, + "blocked_agents_count": 2, + "unique_target_items": 2, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 8 + }, + "1": { + "cocoa_beans": 1 + } + } + }, + "multiagent_cooking_1_golden_carrot_1_suspicious_stew": { + "conversation": "Let's collaborate to make golden_carrot and suspicious_stew.", + "agent_count": 2, + "target": { + "golden_carrot": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 6, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "gold_ingots": 8, + "dandelion": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_1_golden_carrot_1_pumpkin_pie_blocked_access_1": { + "conversation": "Let's collaborate to make pumpkin_pie and golden_carrot.", + "agent_count": 2, + "target": { + "pumpkin_pie": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [ + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot. " + }, + "difficulty_metrics": { + "total_recipe_steps": 7, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "egg": 1 + }, + "1": { + "gold_ingots": 8 + } + } + }, + "multiagent_cooking_1_cooked_mutton_1_cooked_porkchop_blocked_access_1": { + "conversation": "Let's collaborate to make cooked_porkchop and cooked_mutton.", + "agent_count": 2, + "target": { + "cooked_porkchop": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [ + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton. " + }, + "difficulty_metrics": { + "total_recipe_steps": 4, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": {} + } + }, + "multiagent_cooking_1_cooked_porkchop_1_golden_carrot": { + "conversation": "Let's collaborate to make golden_carrot and cooked_porkchop.", + "agent_count": 2, + "target": { + "golden_carrot": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_porkchop. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_porkchop. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 5, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "gold_ingots": 8 + }, + "1": { + "coal": 8 + } + } + }, + "multiagent_cooking_1_cooked_chicken_1_cooked_porkchop_blocked_access_1": { + "conversation": "Let's collaborate to make cooked_chicken and cooked_porkchop.", + "agent_count": 2, + "target": { + "cooked_chicken": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [ + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop. " + }, + "difficulty_metrics": { + "total_recipe_steps": 4, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": {} + } + }, + "multiagent_cooking_1_beetroot_soup_1_suspicious_stew_blocked_access_0_1": { + "conversation": "Let's collaborate to make suspicious_stew and beetroot_soup.", + "agent_count": 2, + "target": { + "suspicious_stew": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup. ", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup. " + }, + "difficulty_metrics": { + "total_recipe_steps": 6, + "blocked_agents_count": 2, + "unique_target_items": 2, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "bowl": 2 + }, + "1": { + "dandelion": 1 + } + } + }, + "multiagent_cooking_1_beetroot_soup_blocked_access_0": { + "conversation": "Let's work together to make beetroot_soup.", + "agent_count": 2, + "target": { + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [ + "0" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup. ", + "1": "Collaborate with agents around you to make 1 beetroot_soup. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 3, + "blocked_agents_count": 1, + "unique_target_items": 1, + "overall_difficulty_score": 3, + "difficulty_category": "easy" + }, + "difficulty": "easy", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": {} + } + }, + "multiagent_cooking_1_cooked_mutton_1_cooked_rabbit": { + "conversation": "Let's collaborate to make cooked_rabbit and cooked_mutton.", + "agent_count": 2, + "target": { + "cooked_rabbit": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_mutton. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_mutton. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 4, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 3, + "difficulty_category": "easy" + }, + "difficulty": "easy", + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": {} + } + }, + "multiagent_cooking_1_beetroot_soup": { + "conversation": "Let's work together to make beetroot_soup.", + "agent_count": 2, + "target": { + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "1": "Collaborate with agents around you to make 1 beetroot_soup. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 3, + "blocked_agents_count": 0, + "unique_target_items": 1, + "overall_difficulty_score": 2, + "difficulty_category": "easy" + }, + "difficulty": "easy", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": {} + } + }, + "multiagent_cooking_1_beetroot_soup_1_cooked_chicken_blocked_access_0": { + "conversation": "Let's collaborate to make beetroot_soup and cooked_chicken.", + "agent_count": 2, + "target": { + "beetroot_soup": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [ + "0" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_chicken. ", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 5, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 8 + } + } + }, + "multiagent_cooking_1_cooked_chicken_1_cooked_mutton_blocked_access_0": { + "conversation": "Let's collaborate to make cooked_chicken and cooked_mutton.", + "agent_count": 2, + "target": { + "cooked_chicken": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [ + "0" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_mutton. ", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_mutton. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 4, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": {} + } + }, + "multiagent_cooking_1_beetroot_soup_1_cooked_mutton_blocked_access_0_1": { + "conversation": "Let's collaborate to make cooked_mutton and beetroot_soup.", + "agent_count": 2, + "target": { + "cooked_mutton": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup. ", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup. " + }, + "difficulty_metrics": { + "total_recipe_steps": 5, + "blocked_agents_count": 2, + "unique_target_items": 2, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 8 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_1_cookie_blocked_access_0": { + "conversation": "Let's work together to make cookie.", + "agent_count": 2, + "target": { + "cookie": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [ + "0" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie. ", + "1": "Collaborate with agents around you to make 1 cookie. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 3, + "blocked_agents_count": 1, + "unique_target_items": 1, + "overall_difficulty_score": 3, + "difficulty_category": "easy" + }, + "difficulty": "easy", + "initial_inventory": { + "0": { + "cocoa_beans": 1 + }, + "1": {} + } + }, + "multiagent_cooking_1_cooked_rabbit_1_suspicious_stew_blocked_access_0": { + "conversation": "Let's collaborate to make suspicious_stew and cooked_rabbit.", + "agent_count": 2, + "target": { + "suspicious_stew": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [ + "0" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_rabbit. ", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_rabbit. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 5, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1, + "coal": 8 + }, + "1": { + "dandelion": 1 + } + } + }, + "multiagent_cooking_1_cooked_mutton_1_cookie": { + "conversation": "Let's collaborate to make cookie and cooked_mutton.", + "agent_count": 2, + "target": { + "cookie": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_mutton. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_mutton. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 5, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "cocoa_beans": 1 + }, + "1": { + "coal": 8 + } + } + }, + "multiagent_cooking_1_cooked_mutton_1_cooked_porkchop": { + "conversation": "Let's collaborate to make cooked_mutton and cooked_porkchop.", + "agent_count": 2, + "target": { + "cooked_mutton": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 4, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 3, + "difficulty_category": "easy" + }, + "difficulty": "easy", + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": {} + } + }, + "multiagent_cooking_1_cooked_chicken_1_cooked_mutton_blocked_access_1": { + "conversation": "Let's collaborate to make cooked_mutton and cooked_chicken.", + "agent_count": 2, + "target": { + "cooked_mutton": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [ + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_chicken. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_chicken. " + }, + "difficulty_metrics": { + "total_recipe_steps": 4, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": {} + } + }, + "multiagent_cooking_1_mushroom_stew_1_suspicious_stew": { + "conversation": "Let's collaborate to make suspicious_stew and mushroom_stew.", + "agent_count": 2, + "target": { + "suspicious_stew": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 mushroom_stew. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 mushroom_stew. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 6, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 2 + }, + "1": { + "dandelion": 1 + } + } + }, + "multiagent_cooking_1_beetroot_soup_1_cooked_rabbit_blocked_access_1": { + "conversation": "Let's collaborate to make cooked_rabbit and beetroot_soup.", + "agent_count": 2, + "target": { + "cooked_rabbit": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [ + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup. " + }, + "difficulty_metrics": { + "total_recipe_steps": 5, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 8 + }, + "1": { + "bowl": 1 + } + } + } +} \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_train/2_agent_cooking_train_tasks.json b/tasks/cooking_tasks/require_collab_train/2_agent_cooking_train_tasks.json new file mode 100644 index 0000000..1a2c00b --- /dev/null +++ b/tasks/cooking_tasks/require_collab_train/2_agent_cooking_train_tasks.json @@ -0,0 +1,1615 @@ +{ + "multiagent_cooking_2_1_cooked_chicken_1_golden_carrot": { + "conversation": "Let's work together to make cooked_chicken, golden_carrot.", + "agent_count": 2, + "target": { + "cooked_chicken": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "initial_inventory": { + "0": { + "coal": 8 + }, + "1": { + "gold_ingots": 8 + } + } + }, + "multiagent_cooking_2_1_cooked_mutton_1_golden_carrot": { + "conversation": "Let's work together to make golden_carrot, cooked_mutton.", + "agent_count": 2, + "target": { + "golden_carrot": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" + }, + "initial_inventory": { + "0": { + "gold_ingots": 8 + }, + "1": { + "coal": 8 + } + } + }, + "multiagent_cooking_2_1_cookie_1_mushroom_stew": { + "conversation": "Let's work together to make cookie, mushroom_stew.", + "agent_count": 2, + "target": { + "cookie": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "1": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" + }, + "initial_inventory": { + "0": { + "cocoa_beans": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_2_1_cookie_1_golden_carrot": { + "conversation": "Let's work together to make golden_carrot, cookie.", + "agent_count": 2, + "target": { + "golden_carrot": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cookie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cookie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" + }, + "initial_inventory": { + "0": { + "gold_ingots": 8 + }, + "1": { + "cocoa_beans": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_mutton_1_cooked_porkchop": { + "conversation": "Let's work together to make cooked_porkchop, cooked_mutton.", + "agent_count": 2, + "target": { + "cooked_porkchop": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" + }, + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": {} + } + }, + "multiagent_cooking_2_1_cookie_1_suspicious_stew": { + "conversation": "Let's work together to make suspicious_stew, cookie.", + "agent_count": 2, + "target": { + "suspicious_stew": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cookie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cookie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" + }, + "initial_inventory": { + "0": { + "bowl": 1, + "cocoa_beans": 1 + }, + "1": { + "dandelion": 1 + } + } + }, + "multiagent_cooking_2_1_mushroom_stew_1_suspicious_stew": { + "conversation": "Let's work together to make mushroom_stew, suspicious_stew.", + "agent_count": 2, + "target": { + "mushroom_stew": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + }, + "initial_inventory": { + "0": { + "bowl": 2 + }, + "1": { + "dandelion": 1 + } + } + }, + "multiagent_cooking_2_1_cookie_1_pumpkin_pie": { + "conversation": "Let's work together to make pumpkin_pie, cookie.", + "agent_count": 2, + "target": { + "pumpkin_pie": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" + }, + "initial_inventory": { + "0": { + "egg": 1 + }, + "1": { + "cocoa_beans": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_chicken_1_suspicious_stew": { + "conversation": "Let's work together to make suspicious_stew, cooked_chicken.", + "agent_count": 2, + "target": { + "suspicious_stew": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + }, + "initial_inventory": { + "0": { + "bowl": 1, + "coal": 8 + }, + "1": { + "dandelion": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_chicken_1_mushroom_stew": { + "conversation": "Let's work together to make mushroom_stew, cooked_chicken.", + "agent_count": 2, + "target": { + "mushroom_stew": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 8 + } + } + }, + "multiagent_cooking_2_1_cooked_rabbit_1_golden_carrot": { + "conversation": "Let's work together to make golden_carrot, cooked_rabbit.", + "agent_count": 2, + "target": { + "golden_carrot": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_rabbit. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_rabbit. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" + }, + "initial_inventory": { + "0": { + "gold_ingots": 8 + }, + "1": { + "coal": 8 + } + } + }, + "multiagent_cooking_2_1_golden_carrot_1_mushroom_stew": { + "conversation": "Let's work together to make golden_carrot, mushroom_stew.", + "agent_count": 2, + "target": { + "golden_carrot": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" + }, + "initial_inventory": { + "0": { + "gold_ingots": 8 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_2_1_golden_carrot_1_pumpkin_pie": { + "conversation": "Let's work together to make pumpkin_pie, golden_carrot.", + "agent_count": 2, + "target": { + "pumpkin_pie": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "initial_inventory": { + "0": { + "egg": 1 + }, + "1": { + "gold_ingots": 8 + } + } + }, + "multiagent_cooking_2_1_cooked_chicken_1_cooked_porkchop": { + "conversation": "Let's work together to make cooked_chicken, cooked_porkchop.", + "agent_count": 2, + "target": { + "cooked_chicken": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + }, + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": {} + } + }, + "multiagent_cooking_2_1_beetroot_soup_1_cooked_porkchop": { + "conversation": "Let's work together to make beetroot_soup, cooked_porkchop.", + "agent_count": 2, + "target": { + "beetroot_soup": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 8 + } + } + }, + "multiagent_cooking_2_1_cooked_porkchop_1_mushroom_stew": { + "conversation": "Let's work together to make mushroom_stew, cooked_porkchop.", + "agent_count": 2, + "target": { + "mushroom_stew": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 8 + } + } + }, + "multiagent_cooking_2_1_cooked_porkchop_1_golden_carrot": { + "conversation": "Let's work together to make cooked_porkchop, golden_carrot.", + "agent_count": 2, + "target": { + "cooked_porkchop": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "initial_inventory": { + "0": { + "coal": 8 + }, + "1": { + "gold_ingots": 8 + } + } + }, + "multiagent_cooking_2_1_cooked_porkchop_1_pumpkin_pie": { + "conversation": "Let's work together to make cooked_porkchop, pumpkin_pie.", + "agent_count": 2, + "target": { + "cooked_porkchop": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" + }, + "initial_inventory": { + "0": { + "coal": 8 + }, + "1": { + "egg": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_mutton_1_suspicious_stew": { + "conversation": "Let's work together to make cooked_mutton, suspicious_stew.", + "agent_count": 2, + "target": { + "cooked_mutton": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 suspicious_stew. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 suspicious_stew. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + }, + "initial_inventory": { + "0": { + "coal": 8, + "dandelion": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_2_1_mushroom_stew_1_pumpkin_pie": { + "conversation": "Let's work together to make pumpkin_pie, mushroom_stew.", + "agent_count": 2, + "target": { + "pumpkin_pie": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" + }, + "initial_inventory": { + "0": { + "egg": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_rabbit_1_mushroom_stew": { + "conversation": "Let's work together to make cooked_rabbit, mushroom_stew.", + "agent_count": 2, + "target": { + "cooked_rabbit": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" + }, + "initial_inventory": { + "0": { + "coal": 8 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_chicken_1_cookie": { + "conversation": "Let's work together to make cookie, cooked_chicken.", + "agent_count": 2, + "target": { + "cookie": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_chicken. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_chicken. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + }, + "initial_inventory": { + "0": { + "cocoa_beans": 1 + }, + "1": { + "coal": 8 + } + } + }, + "multiagent_cooking_2_1_cooked_chicken_1_pumpkin_pie": { + "conversation": "Let's work together to make pumpkin_pie, cooked_chicken.", + "agent_count": 2, + "target": { + "pumpkin_pie": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + }, + "initial_inventory": { + "0": { + "egg": 1 + }, + "1": { + "coal": 8 + } + } + }, + "multiagent_cooking_2_1_cooked_mutton_1_mushroom_stew": { + "conversation": "Let's work together to make mushroom_stew, cooked_mutton.", + "agent_count": 2, + "target": { + "mushroom_stew": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 8 + } + } + }, + "multiagent_cooking_2_1_cooked_porkchop_1_cooked_rabbit": { + "conversation": "Let's work together to make cooked_rabbit, cooked_porkchop.", + "agent_count": 2, + "target": { + "cooked_rabbit": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + }, + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": {} + } + }, + "multiagent_cooking_2_1_cooked_porkchop_1_suspicious_stew": { + "conversation": "Let's work together to make suspicious_stew, cooked_porkchop.", + "agent_count": 2, + "target": { + "suspicious_stew": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + }, + "initial_inventory": { + "0": { + "bowl": 1, + "coal": 8 + }, + "1": { + "dandelion": 1 + } + } + }, + "multiagent_cooking_2_1_beetroot_soup_1_suspicious_stew": { + "conversation": "Let's work together to make suspicious_stew, beetroot_soup.", + "agent_count": 2, + "target": { + "suspicious_stew": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" + }, + "initial_inventory": { + "0": { + "bowl": 2 + }, + "1": { + "dandelion": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_rabbit_1_cookie": { + "conversation": "Let's work together to make cookie, cooked_rabbit.", + "agent_count": 2, + "target": { + "cookie": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" + }, + "initial_inventory": { + "0": { + "cocoa_beans": 1 + }, + "1": { + "coal": 8 + } + } + }, + "multiagent_cooking_2_1_golden_carrot_1_suspicious_stew": { + "conversation": "Let's work together to make golden_carrot, suspicious_stew.", + "agent_count": 2, + "target": { + "golden_carrot": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + }, + "initial_inventory": { + "0": { + "gold_ingots": 8, + "dandelion": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_2_1_pumpkin_pie_1_suspicious_stew": { + "conversation": "Let's work together to make suspicious_stew, pumpkin_pie.", + "agent_count": 2, + "target": { + "suspicious_stew": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" + }, + "initial_inventory": { + "0": { + "bowl": 1, + "egg": 1 + }, + "1": { + "dandelion": 1 + } + } + }, + "multiagent_cooking_2_1_beetroot_soup_1_cookie": { + "conversation": "Let's work together to make beetroot_soup, cookie.", + "agent_count": 2, + "target": { + "beetroot_soup": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "cocoa_beans": 1 + } + } + }, + "multiagent_cooking_2_1_beetroot_soup_1_cooked_mutton": { + "conversation": "Let's work together to make cooked_mutton, beetroot_soup.", + "agent_count": 2, + "target": { + "cooked_mutton": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" + }, + "initial_inventory": { + "0": { + "coal": 8 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_2_1_beetroot_soup_1_pumpkin_pie": { + "conversation": "Let's work together to make beetroot_soup, pumpkin_pie.", + "agent_count": 2, + "target": { + "beetroot_soup": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "egg": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_chicken_1_cooked_rabbit": { + "conversation": "Let's work together to make cooked_chicken, cooked_rabbit.", + "agent_count": 2, + "target": { + "cooked_chicken": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" + }, + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": {} + } + }, + "multiagent_cooking_2_1_cooked_porkchop_1_cookie": { + "conversation": "Let's work together to make cooked_porkchop, cookie.", + "agent_count": 2, + "target": { + "cooked_porkchop": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cookie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cookie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" + }, + "initial_inventory": { + "0": { + "coal": 8 + }, + "1": { + "cocoa_beans": 1 + } + } + }, + "multiagent_cooking_2_1_beetroot_soup_1_golden_carrot": { + "conversation": "Let's work together to make beetroot_soup, golden_carrot.", + "agent_count": 2, + "target": { + "beetroot_soup": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 golden_carrot. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 golden_carrot. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "gold_ingots": 8 + } + } + }, + "multiagent_cooking_2_1_cooked_rabbit_1_suspicious_stew": { + "conversation": "Let's work together to make cooked_rabbit, suspicious_stew.", + "agent_count": 2, + "target": { + "cooked_rabbit": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + }, + "initial_inventory": { + "0": { + "coal": 8, + "dandelion": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_mutton_1_cooked_rabbit": { + "conversation": "Let's work together to make cooked_rabbit, cooked_mutton.", + "agent_count": 2, + "target": { + "cooked_rabbit": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_mutton. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_mutton. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" + }, + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": {} + } + }, + "multiagent_cooking_2_1_cooked_chicken_1_cooked_mutton": { + "conversation": "Let's work together to make cooked_mutton, cooked_chicken.", + "agent_count": 2, + "target": { + "cooked_mutton": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_chicken. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_chicken. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + }, + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": {} + } + }, + "multiagent_cooking_2_1_beetroot_soup_1_cooked_rabbit": { + "conversation": "Let's work together to make beetroot_soup, cooked_rabbit.", + "agent_count": 2, + "target": { + "beetroot_soup": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_rabbit. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_rabbit. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 8 + } + } + }, + "multiagent_cooking_2_1_cooked_mutton_1_cookie": { + "conversation": "Let's work together to make cookie, cooked_mutton.", + "agent_count": 2, + "target": { + "cookie": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_mutton. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_mutton. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" + }, + "initial_inventory": { + "0": { + "cocoa_beans": 1 + }, + "1": { + "coal": 8 + } + } + }, + "multiagent_cooking_2_1_beetroot_soup_1_mushroom_stew": { + "conversation": "Let's work together to make mushroom_stew, beetroot_soup.", + "agent_count": 2, + "target": { + "mushroom_stew": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" + }, + "initial_inventory": { + "0": { + "bowl": 2 + }, + "1": {} + } + }, + "multiagent_cooking_2_1_cooked_rabbit_1_pumpkin_pie": { + "conversation": "Let's work together to make pumpkin_pie, cooked_rabbit.", + "agent_count": 2, + "target": { + "pumpkin_pie": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_rabbit. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_rabbit. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" + }, + "initial_inventory": { + "0": { + "egg": 1 + }, + "1": { + "coal": 8 + } + } + }, + "multiagent_cooking_2_1_beetroot_soup_1_cooked_chicken": { + "conversation": "Let's work together to make beetroot_soup, cooked_chicken.", + "agent_count": 2, + "target": { + "beetroot_soup": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 8 + } + } + }, + "multiagent_cooking_2_1_cooked_mutton_1_pumpkin_pie": { + "conversation": "Let's work together to make cooked_mutton, pumpkin_pie.", + "agent_count": 2, + "target": { + "cooked_mutton": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" + }, + "initial_inventory": { + "0": { + "coal": 8 + }, + "1": { + "egg": 1 + } + } + } +} \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_train/3_agent.json b/tasks/cooking_tasks/require_collab_train/3_agent.json new file mode 100644 index 0000000..04d9d83 --- /dev/null +++ b/tasks/cooking_tasks/require_collab_train/3_agent.json @@ -0,0 +1,3729 @@ +{ + "multiagent_cooking_3_1_cooked_mutton_1_golden_carrot_1_pumpkin_pie_blocked_access_0": { + "conversation": "Let's work together to make golden_carrot, cooked_mutton, pumpkin_pie.", + "agent_count": 3, + "target": { + "golden_carrot": 1, + "cooked_mutton": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [ + "0" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton, 1 pumpkin_pie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton, 1 pumpkin_pie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "2": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton, 1 pumpkin_pie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 9, + "blocked_agents_count": 1, + "unique_target_items": 3, + "overall_difficulty_score": 7, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "gold_ingots": 8 + }, + "1": { + "coal": 8 + }, + "2": { + "egg": 1 + } + } + }, + "multiagent_cooking_3_1_cooked_chicken_1_cooked_rabbit_1_mushroom_stew_blocked_access_0_1_2": { + "conversation": "Let's work together to make mushroom_stew, cooked_chicken, cooked_rabbit.", + "agent_count": 3, + "target": { + "mushroom_stew": 1, + "cooked_chicken": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1", + "2" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken, 1 cooked_rabbit. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken, 1 cooked_rabbit. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken, 1 cooked_rabbit. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 7, + "blocked_agents_count": 3, + "unique_target_items": 3, + "overall_difficulty_score": 8, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 16 + }, + "2": {} + } + }, + "multiagent_cooking_3_1_cookie_1_suspicious_stew_blocked_access_1": { + "conversation": "Let's work together to make cookie, suspicious_stew.", + "agent_count": 3, + "target": { + "cookie": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [ + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 suspicious_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 cookie, 1 suspicious_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "2": "Collaborate with agents around you to make 1 cookie, 1 suspicious_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 6, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "cocoa_beans": 1 + }, + "1": { + "bowl": 1 + }, + "2": { + "dandelion": 1 + } + } + }, + "multiagent_cooking_3_1_cookie_1_golden_carrot_1_suspicious_stew_blocked_access_1": { + "conversation": "Let's work together to make golden_carrot, cookie, suspicious_stew.", + "agent_count": 3, + "target": { + "golden_carrot": 1, + "cookie": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [ + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cookie, 1 suspicious_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cookie, 1 suspicious_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "2": "Collaborate with agents around you to make 1 golden_carrot, 1 cookie, 1 suspicious_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 9, + "blocked_agents_count": 1, + "unique_target_items": 3, + "overall_difficulty_score": 7, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "gold_ingots": 8, + "dandelion": 1 + }, + "1": { + "cocoa_beans": 1 + }, + "2": { + "bowl": 1 + } + } + }, + "multiagent_cooking_3_1_cooked_chicken_1_cookie_1_pumpkin_pie": { + "conversation": "Let's work together to make cooked_chicken, cookie, pumpkin_pie.", + "agent_count": 3, + "target": { + "cooked_chicken": 1, + "cookie": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cookie, 1 pumpkin_pie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cookie, 1 pumpkin_pie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 cookie, 1 pumpkin_pie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 9, + "blocked_agents_count": 0, + "unique_target_items": 3, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 8 + }, + "1": { + "cocoa_beans": 1 + }, + "2": { + "egg": 1 + } + } + }, + "multiagent_cooking_3_1_beetroot_soup_1_cooked_porkchop_1_golden_carrot_blocked_access_0_1_2": { + "conversation": "Let's work together to make golden_carrot, cooked_porkchop, beetroot_soup.", + "agent_count": 3, + "target": { + "golden_carrot": 1, + "cooked_porkchop": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1", + "2" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_porkchop, 1 beetroot_soup. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_porkchop, 1 beetroot_soup. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "2": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_porkchop, 1 beetroot_soup. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 8, + "blocked_agents_count": 3, + "unique_target_items": 3, + "overall_difficulty_score": 8, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "gold_ingots": 8 + }, + "1": { + "coal": 8 + }, + "2": { + "bowl": 1 + } + } + }, + "multiagent_cooking_3_1_cooked_rabbit_1_pumpkin_pie_1_suspicious_stew": { + "conversation": "Let's work together to make cooked_rabbit, suspicious_stew, pumpkin_pie.", + "agent_count": 3, + "target": { + "cooked_rabbit": 1, + "suspicious_stew": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew, 1 pumpkin_pie. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew, 1 pumpkin_pie. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew, 1 pumpkin_pie. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 9, + "blocked_agents_count": 0, + "unique_target_items": 3, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 8, + "egg": 1 + }, + "1": { + "bowl": 1 + }, + "2": { + "dandelion": 1 + } + } + }, + "multiagent_cooking_3_1_cooked_porkchop_1_cooked_rabbit_1_pumpkin_pie_blocked_access_1": { + "conversation": "Let's work together to make cooked_porkchop, pumpkin_pie, cooked_rabbit.", + "agent_count": 3, + "target": { + "cooked_porkchop": 1, + "pumpkin_pie": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [ + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie, 1 cooked_rabbit. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie, 1 cooked_rabbit. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie, 1 cooked_rabbit. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 8, + "blocked_agents_count": 1, + "unique_target_items": 3, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": { + "egg": 1 + }, + "2": {} + } + }, + "multiagent_cooking_3_1_cooked_chicken_1_golden_carrot_blocked_access_2": { + "conversation": "Let's work together to make cooked_chicken, golden_carrot.", + "agent_count": 3, + "target": { + "cooked_chicken": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [ + "2" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 5, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 8 + }, + "1": { + "gold_ingots": 8 + }, + "2": {} + } + }, + "multiagent_cooking_3_1_cooked_mutton_1_cooked_rabbit_1_mushroom_stew_blocked_access_0_1_2": { + "conversation": "Let's work together to make cooked_rabbit, mushroom_stew, cooked_mutton.", + "agent_count": 3, + "target": { + "cooked_rabbit": 1, + "mushroom_stew": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1", + "2" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew, 1 cooked_mutton. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew, 1 cooked_mutton. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew, 1 cooked_mutton. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 7, + "blocked_agents_count": 3, + "unique_target_items": 3, + "overall_difficulty_score": 8, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": { + "bowl": 1 + }, + "2": {} + } + }, + "multiagent_cooking_3_1_cooked_porkchop_1_mushroom_stew_1_pumpkin_pie": { + "conversation": "Let's work together to make pumpkin_pie, mushroom_stew, cooked_porkchop.", + "agent_count": 3, + "target": { + "pumpkin_pie": 1, + "mushroom_stew": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 cooked_porkchop. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 cooked_porkchop. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 cooked_porkchop. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 9, + "blocked_agents_count": 0, + "unique_target_items": 3, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "egg": 1 + }, + "1": { + "bowl": 1 + }, + "2": { + "coal": 8 + } + } + }, + "multiagent_cooking_3_1_cooked_porkchop_1_mushroom_stew_1_suspicious_stew": { + "conversation": "Let's work together to make suspicious_stew, mushroom_stew, cooked_porkchop.", + "agent_count": 3, + "target": { + "suspicious_stew": 1, + "mushroom_stew": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 mushroom_stew, 1 cooked_porkchop. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 mushroom_stew, 1 cooked_porkchop. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 mushroom_stew, 1 cooked_porkchop. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 8, + "blocked_agents_count": 0, + "unique_target_items": 3, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 2 + }, + "1": { + "dandelion": 1 + }, + "2": { + "coal": 8 + } + } + }, + "multiagent_cooking_3_1_cookie_1_mushroom_stew_1_suspicious_stew_blocked_access_0_1_2": { + "conversation": "Let's work together to make mushroom_stew, cookie, suspicious_stew.", + "agent_count": 3, + "target": { + "mushroom_stew": 1, + "cookie": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1", + "2" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cookie, 1 suspicious_stew. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cookie, 1 suspicious_stew. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cookie, 1 suspicious_stew. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 9, + "blocked_agents_count": 3, + "unique_target_items": 3, + "overall_difficulty_score": 9, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "bowl": 2 + }, + "1": { + "cocoa_beans": 1 + }, + "2": { + "dandelion": 1 + } + } + }, + "multiagent_cooking_3_1_cooked_chicken_1_cooked_mutton_1_mushroom_stew_blocked_access_0": { + "conversation": "Let's work together to make cooked_chicken, mushroom_stew, cooked_mutton.", + "agent_count": 3, + "target": { + "cooked_chicken": 1, + "mushroom_stew": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [ + "0" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 mushroom_stew, 1 cooked_mutton. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 mushroom_stew, 1 cooked_mutton. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 mushroom_stew, 1 cooked_mutton. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 7, + "blocked_agents_count": 1, + "unique_target_items": 3, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": { + "bowl": 1 + }, + "2": {} + } + }, + "multiagent_cooking_3_1_beetroot_soup_1_cooked_mutton_1_cooked_porkchop_blocked_access_0": { + "conversation": "Let's work together to make cooked_porkchop, cooked_mutton, beetroot_soup.", + "agent_count": 3, + "target": { + "cooked_porkchop": 1, + "cooked_mutton": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [ + "0" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton, 1 beetroot_soup. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton, 1 beetroot_soup. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton, 1 beetroot_soup. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 7, + "blocked_agents_count": 1, + "unique_target_items": 3, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": { + "bowl": 1 + }, + "2": {} + } + }, + "multiagent_cooking_3_1_cooked_rabbit_1_golden_carrot_1_suspicious_stew": { + "conversation": "Let's work together to make suspicious_stew, cooked_rabbit, golden_carrot.", + "agent_count": 3, + "target": { + "suspicious_stew": 1, + "cooked_rabbit": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_rabbit, 1 golden_carrot. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_rabbit, 1 golden_carrot. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_rabbit, 1 golden_carrot. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 8, + "blocked_agents_count": 0, + "unique_target_items": 3, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1, + "gold_ingots": 8 + }, + "1": { + "dandelion": 1 + }, + "2": { + "coal": 8 + } + } + }, + "multiagent_cooking_3_1_cooked_mutton_1_cooked_rabbit_1_golden_carrot": { + "conversation": "Let's work together to make golden_carrot, cooked_rabbit, cooked_mutton.", + "agent_count": 3, + "target": { + "golden_carrot": 1, + "cooked_rabbit": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_rabbit, 1 cooked_mutton. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_rabbit, 1 cooked_mutton. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "2": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_rabbit, 1 cooked_mutton. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 7, + "blocked_agents_count": 0, + "unique_target_items": 3, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "gold_ingots": 8 + }, + "1": { + "coal": 16 + }, + "2": {} + } + }, + "multiagent_cooking_3_1_cooked_porkchop_1_pumpkin_pie_blocked_access_0_1_2": { + "conversation": "Let's work together to make cooked_porkchop, pumpkin_pie.", + "agent_count": 3, + "target": { + "cooked_porkchop": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1", + "2" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 6, + "blocked_agents_count": 3, + "unique_target_items": 2, + "overall_difficulty_score": 7, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 8 + }, + "1": { + "egg": 1 + }, + "2": {} + } + }, + "multiagent_cooking_3_1_beetroot_soup_1_cooked_mutton_1_mushroom_stew_blocked_access_1": { + "conversation": "Let's work together to make beetroot_soup, cooked_mutton, mushroom_stew.", + "agent_count": 3, + "target": { + "beetroot_soup": 1, + "cooked_mutton": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [ + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 mushroom_stew. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 mushroom_stew. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 mushroom_stew. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 8, + "blocked_agents_count": 1, + "unique_target_items": 3, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "bowl": 2 + }, + "1": { + "coal": 8 + }, + "2": {} + } + }, + "multiagent_cooking_3_1_cooked_mutton_1_cooked_porkchop_1_pumpkin_pie_blocked_access_0": { + "conversation": "Let's work together to make cooked_mutton, cooked_porkchop, pumpkin_pie.", + "agent_count": 3, + "target": { + "cooked_mutton": 1, + "cooked_porkchop": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [ + "0" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 pumpkin_pie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 pumpkin_pie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 pumpkin_pie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 8, + "blocked_agents_count": 1, + "unique_target_items": 3, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": { + "egg": 1 + }, + "2": {} + } + }, + "multiagent_cooking_3_1_golden_carrot_1_mushroom_stew_1_suspicious_stew_blocked_access_0": { + "conversation": "Let's work together to make suspicious_stew, golden_carrot, mushroom_stew.", + "agent_count": 3, + "target": { + "suspicious_stew": 1, + "golden_carrot": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [ + "0" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 golden_carrot, 1 mushroom_stew. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 golden_carrot, 1 mushroom_stew. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 golden_carrot, 1 mushroom_stew. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 9, + "blocked_agents_count": 1, + "unique_target_items": 3, + "overall_difficulty_score": 7, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "bowl": 2 + }, + "1": { + "dandelion": 1 + }, + "2": { + "gold_ingots": 8 + } + } + }, + "multiagent_cooking_3_1_beetroot_soup_1_cooked_porkchop_1_suspicious_stew_blocked_access_1": { + "conversation": "Let's work together to make cooked_porkchop, suspicious_stew, beetroot_soup.", + "agent_count": 3, + "target": { + "cooked_porkchop": 1, + "suspicious_stew": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [ + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 beetroot_soup. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 beetroot_soup. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 beetroot_soup. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 8, + "blocked_agents_count": 1, + "unique_target_items": 3, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 8 + }, + "1": { + "bowl": 2 + }, + "2": { + "dandelion": 1 + } + } + }, + "multiagent_cooking_3_1_cooked_chicken_1_golden_carrot_1_pumpkin_pie_blocked_access_0_1_2": { + "conversation": "Let's work together to make cooked_chicken, golden_carrot, pumpkin_pie.", + "agent_count": 3, + "target": { + "cooked_chicken": 1, + "golden_carrot": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1", + "2" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 pumpkin_pie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 pumpkin_pie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 pumpkin_pie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 9, + "blocked_agents_count": 3, + "unique_target_items": 3, + "overall_difficulty_score": 9, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 8 + }, + "1": { + "gold_ingots": 8 + }, + "2": { + "egg": 1 + } + } + }, + "multiagent_cooking_3_1_cooked_rabbit_1_mushroom_stew_blocked_access_2": { + "conversation": "Let's work together to make mushroom_stew, cooked_rabbit.", + "agent_count": 3, + "target": { + "mushroom_stew": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [ + "2" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_rabbit. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_rabbit. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_rabbit. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 5, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 8 + }, + "2": {} + } + }, + "multiagent_cooking_3_1_cooked_chicken_1_cooked_porkchop_1_mushroom_stew_blocked_access_0": { + "conversation": "Let's work together to make mushroom_stew, cooked_porkchop, cooked_chicken.", + "agent_count": 3, + "target": { + "mushroom_stew": 1, + "cooked_porkchop": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [ + "0" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop, 1 cooked_chicken. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop, 1 cooked_chicken. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop, 1 cooked_chicken. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 7, + "blocked_agents_count": 1, + "unique_target_items": 3, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 16 + }, + "2": {} + } + }, + "multiagent_cooking_3_1_cooked_chicken_1_cooked_rabbit_blocked_access_0_1_2": { + "conversation": "Let's work together to make cooked_rabbit, cooked_chicken.", + "agent_count": 3, + "target": { + "cooked_rabbit": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1", + "2" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 4, + "blocked_agents_count": 3, + "unique_target_items": 2, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": {}, + "2": {} + } + }, + "multiagent_cooking_3_1_cooked_mutton_1_cooked_porkchop_blocked_access_0_1_2": { + "conversation": "Let's work together to make cooked_porkchop, cooked_mutton.", + "agent_count": 3, + "target": { + "cooked_porkchop": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1", + "2" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 4, + "blocked_agents_count": 3, + "unique_target_items": 2, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": {}, + "2": {} + } + }, + "multiagent_cooking_3_1_mushroom_stew_1_pumpkin_pie_1_suspicious_stew": { + "conversation": "Let's work together to make mushroom_stew, suspicious_stew, pumpkin_pie.", + "agent_count": 3, + "target": { + "mushroom_stew": 1, + "suspicious_stew": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 pumpkin_pie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 pumpkin_pie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 pumpkin_pie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 10, + "blocked_agents_count": 0, + "unique_target_items": 3, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "bowl": 2 + }, + "1": { + "dandelion": 1 + }, + "2": { + "egg": 1 + } + } + }, + "multiagent_cooking_3_1_cooked_porkchop_1_pumpkin_pie": { + "conversation": "Let's work together to make cooked_porkchop, pumpkin_pie.", + "agent_count": 3, + "target": { + "cooked_porkchop": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 6, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 8 + }, + "1": { + "egg": 1 + }, + "2": {} + } + }, + "multiagent_cooking_3_1_cooked_porkchop_1_suspicious_stew_blocked_access_1": { + "conversation": "Let's work together to make suspicious_stew, cooked_porkchop.", + "agent_count": 3, + "target": { + "suspicious_stew": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [ + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 5, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "dandelion": 1 + }, + "2": { + "coal": 8 + } + } + }, + "multiagent_cooking_3_1_beetroot_soup_1_cooked_chicken_1_cooked_rabbit_blocked_access_2": { + "conversation": "Let's work together to make beetroot_soup, cooked_rabbit, cooked_chicken.", + "agent_count": 3, + "target": { + "beetroot_soup": 1, + "cooked_rabbit": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [ + "2" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_rabbit, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_rabbit, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_rabbit, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 7, + "blocked_agents_count": 1, + "unique_target_items": 3, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 16 + }, + "2": {} + } + }, + "multiagent_cooking_3_1_cooked_porkchop_1_golden_carrot_1_pumpkin_pie_blocked_access_2": { + "conversation": "Let's work together to make golden_carrot, pumpkin_pie, cooked_porkchop.", + "agent_count": 3, + "target": { + "golden_carrot": 1, + "pumpkin_pie": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [ + "2" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie, 1 cooked_porkchop. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie, 1 cooked_porkchop. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "2": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie, 1 cooked_porkchop. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 9, + "blocked_agents_count": 1, + "unique_target_items": 3, + "overall_difficulty_score": 7, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "gold_ingots": 8 + }, + "1": { + "egg": 1 + }, + "2": { + "coal": 8 + } + } + }, + "multiagent_cooking_3_1_cooked_rabbit_1_pumpkin_pie_1_suspicious_stew_blocked_access_2": { + "conversation": "Let's work together to make suspicious_stew, cooked_rabbit, pumpkin_pie.", + "agent_count": 3, + "target": { + "suspicious_stew": 1, + "cooked_rabbit": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [ + "2" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_rabbit, 1 pumpkin_pie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_rabbit, 1 pumpkin_pie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_rabbit, 1 pumpkin_pie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 9, + "blocked_agents_count": 1, + "unique_target_items": 3, + "overall_difficulty_score": 7, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "bowl": 1, + "egg": 1 + }, + "1": { + "dandelion": 1 + }, + "2": { + "coal": 8 + } + } + }, + "multiagent_cooking_3_1_beetroot_soup_1_cooked_chicken_1_cooked_porkchop": { + "conversation": "Let's work together to make cooked_chicken, cooked_porkchop, beetroot_soup.", + "agent_count": 3, + "target": { + "cooked_chicken": 1, + "cooked_porkchop": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop, 1 beetroot_soup. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop, 1 beetroot_soup. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop, 1 beetroot_soup. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 7, + "blocked_agents_count": 0, + "unique_target_items": 3, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": { + "bowl": 1 + }, + "2": {} + } + }, + "multiagent_cooking_3_1_golden_carrot_1_mushroom_stew_blocked_access_0_1_2": { + "conversation": "Let's work together to make golden_carrot, mushroom_stew.", + "agent_count": 3, + "target": { + "golden_carrot": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1", + "2" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "2": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 6, + "blocked_agents_count": 3, + "unique_target_items": 2, + "overall_difficulty_score": 7, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "gold_ingots": 8 + }, + "1": { + "bowl": 1 + }, + "2": {} + } + }, + "multiagent_cooking_3_1_cooked_chicken_1_cooked_porkchop_1_cooked_rabbit": { + "conversation": "Let's work together to make cooked_porkchop, cooked_chicken, cooked_rabbit.", + "agent_count": 3, + "target": { + "cooked_porkchop": 1, + "cooked_chicken": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 cooked_rabbit. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 cooked_rabbit. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 cooked_rabbit. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 6, + "blocked_agents_count": 0, + "unique_target_items": 3, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 24 + }, + "1": {}, + "2": {} + } + }, + "multiagent_cooking_3_1_beetroot_soup_1_cooked_chicken_1_cooked_porkchop_blocked_access_0": { + "conversation": "Let's work together to make beetroot_soup, cooked_chicken, cooked_porkchop.", + "agent_count": 3, + "target": { + "beetroot_soup": 1, + "cooked_chicken": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [ + "0" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_chicken, 1 cooked_porkchop. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_chicken, 1 cooked_porkchop. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_chicken, 1 cooked_porkchop. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 7, + "blocked_agents_count": 1, + "unique_target_items": 3, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 16 + }, + "2": {} + } + }, + "multiagent_cooking_3_1_beetroot_soup_1_cookie": { + "conversation": "Let's work together to make beetroot_soup, cookie.", + "agent_count": 3, + "target": { + "beetroot_soup": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 6, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "cocoa_beans": 1 + }, + "2": {} + } + }, + "multiagent_cooking_3_1_cooked_mutton_1_cookie_1_mushroom_stew_blocked_access_0_1_2": { + "conversation": "Let's work together to make cooked_mutton, cookie, mushroom_stew.", + "agent_count": 3, + "target": { + "cooked_mutton": 1, + "cookie": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1", + "2" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cookie, 1 mushroom_stew. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cookie, 1 mushroom_stew. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 cookie, 1 mushroom_stew. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 8, + "blocked_agents_count": 3, + "unique_target_items": 3, + "overall_difficulty_score": 8, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 8 + }, + "1": { + "cocoa_beans": 1 + }, + "2": { + "bowl": 1 + } + } + }, + "multiagent_cooking_3_1_cooked_chicken_1_cooked_rabbit": { + "conversation": "Let's work together to make cooked_rabbit, cooked_chicken.", + "agent_count": 3, + "target": { + "cooked_rabbit": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 4, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 3, + "difficulty_category": "easy" + }, + "difficulty": "easy", + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": {}, + "2": {} + } + }, + "multiagent_cooking_3_1_cooked_mutton_1_cooked_porkchop_1_cookie": { + "conversation": "Let's work together to make cooked_mutton, cooked_porkchop, cookie.", + "agent_count": 3, + "target": { + "cooked_mutton": 1, + "cooked_porkchop": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 cookie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 cookie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 cookie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 7, + "blocked_agents_count": 0, + "unique_target_items": 3, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": { + "cocoa_beans": 1 + }, + "2": {} + } + }, + "multiagent_cooking_3_1_cooked_porkchop_1_golden_carrot_1_pumpkin_pie_blocked_access_0_1_2": { + "conversation": "Let's work together to make golden_carrot, cooked_porkchop, pumpkin_pie.", + "agent_count": 3, + "target": { + "golden_carrot": 1, + "cooked_porkchop": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1", + "2" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_porkchop, 1 pumpkin_pie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_porkchop, 1 pumpkin_pie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "2": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_porkchop, 1 pumpkin_pie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 9, + "blocked_agents_count": 3, + "unique_target_items": 3, + "overall_difficulty_score": 9, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "gold_ingots": 8 + }, + "1": { + "coal": 8 + }, + "2": { + "egg": 1 + } + } + }, + "multiagent_cooking_3_1_beetroot_soup_1_pumpkin_pie_blocked_access_0_1_2": { + "conversation": "Let's work together to make beetroot_soup, pumpkin_pie.", + "agent_count": 3, + "target": { + "beetroot_soup": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1", + "2" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 7, + "blocked_agents_count": 3, + "unique_target_items": 2, + "overall_difficulty_score": 7, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "egg": 1 + }, + "2": {} + } + }, + "multiagent_cooking_3_1_cooked_chicken_1_cooked_porkchop_1_suspicious_stew": { + "conversation": "Let's work together to make cooked_porkchop, cooked_chicken, suspicious_stew.", + "agent_count": 3, + "target": { + "cooked_porkchop": 1, + "cooked_chicken": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 suspicious_stew. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 suspicious_stew. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 suspicious_stew. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 7, + "blocked_agents_count": 0, + "unique_target_items": 3, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": { + "bowl": 1 + }, + "2": { + "dandelion": 1 + } + } + }, + "multiagent_cooking_3_1_cooked_chicken_1_cooked_porkchop": { + "conversation": "Let's work together to make cooked_porkchop, cooked_chicken.", + "agent_count": 3, + "target": { + "cooked_porkchop": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 4, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 3, + "difficulty_category": "easy" + }, + "difficulty": "easy", + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": {}, + "2": {} + } + }, + "multiagent_cooking_3_1_cooked_chicken_1_cooked_mutton_1_suspicious_stew_blocked_access_2": { + "conversation": "Let's work together to make suspicious_stew, cooked_chicken, cooked_mutton.", + "agent_count": 3, + "target": { + "suspicious_stew": 1, + "cooked_chicken": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [ + "2" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_mutton. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_mutton. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_mutton. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 7, + "blocked_agents_count": 1, + "unique_target_items": 3, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "dandelion": 1 + }, + "2": { + "coal": 16 + } + } + }, + "multiagent_cooking_3_1_cooked_rabbit_1_pumpkin_pie_blocked_access_0": { + "conversation": "Let's work together to make pumpkin_pie, cooked_rabbit.", + "agent_count": 3, + "target": { + "pumpkin_pie": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [ + "0" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_rabbit. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_rabbit. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_rabbit. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 6, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "egg": 1 + }, + "1": { + "coal": 8 + }, + "2": {} + } + }, + "multiagent_cooking_3_1_golden_carrot_1_pumpkin_pie_1_suspicious_stew": { + "conversation": "Let's work together to make golden_carrot, pumpkin_pie, suspicious_stew.", + "agent_count": 3, + "target": { + "golden_carrot": 1, + "pumpkin_pie": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie, 1 suspicious_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie, 1 suspicious_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "2": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie, 1 suspicious_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 10, + "blocked_agents_count": 0, + "unique_target_items": 3, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "gold_ingots": 8, + "dandelion": 1 + }, + "1": { + "egg": 1 + }, + "2": { + "bowl": 1 + } + } + }, + "multiagent_cooking_3_1_cooked_chicken_1_cooked_porkchop_1_suspicious_stew_blocked_access_2": { + "conversation": "Let's work together to make cooked_chicken, suspicious_stew, cooked_porkchop.", + "agent_count": 3, + "target": { + "cooked_chicken": 1, + "suspicious_stew": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [ + "2" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew, 1 cooked_porkchop. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew, 1 cooked_porkchop. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew, 1 cooked_porkchop. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 7, + "blocked_agents_count": 1, + "unique_target_items": 3, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": { + "bowl": 1 + }, + "2": { + "dandelion": 1 + } + } + }, + "multiagent_cooking_3_1_cooked_chicken_1_cookie_blocked_access_2": { + "conversation": "Let's work together to make cooked_chicken, cookie.", + "agent_count": 3, + "target": { + "cooked_chicken": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [ + "2" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cookie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cookie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 cookie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 5, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 8 + }, + "1": { + "cocoa_beans": 1 + }, + "2": {} + } + }, + "multiagent_cooking_3_1_cooked_rabbit_1_mushroom_stew": { + "conversation": "Let's work together to make mushroom_stew, cooked_rabbit.", + "agent_count": 3, + "target": { + "mushroom_stew": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_rabbit. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_rabbit. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_rabbit. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 5, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 8 + }, + "2": {} + } + }, + "multiagent_cooking_3_1_cooked_chicken_1_pumpkin_pie_blocked_access_0_1_2": { + "conversation": "Let's work together to make pumpkin_pie, cooked_chicken.", + "agent_count": 3, + "target": { + "pumpkin_pie": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1", + "2" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 6, + "blocked_agents_count": 3, + "unique_target_items": 2, + "overall_difficulty_score": 7, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "egg": 1 + }, + "1": { + "coal": 8 + }, + "2": {} + } + }, + "multiagent_cooking_3_1_beetroot_soup_1_cooked_mutton_1_cooked_porkchop": { + "conversation": "Let's work together to make beetroot_soup, cooked_porkchop, cooked_mutton.", + "agent_count": 3, + "target": { + "beetroot_soup": 1, + "cooked_porkchop": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop, 1 cooked_mutton. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop, 1 cooked_mutton. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop, 1 cooked_mutton. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 7, + "blocked_agents_count": 0, + "unique_target_items": 3, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 16 + }, + "2": {} + } + }, + "multiagent_cooking_3_1_beetroot_soup_1_cooked_chicken_1_golden_carrot": { + "conversation": "Let's work together to make cooked_chicken, golden_carrot, beetroot_soup.", + "agent_count": 3, + "target": { + "cooked_chicken": 1, + "golden_carrot": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 beetroot_soup. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 beetroot_soup. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 beetroot_soup. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 8, + "blocked_agents_count": 0, + "unique_target_items": 3, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 8 + }, + "1": { + "gold_ingots": 8 + }, + "2": { + "bowl": 1 + } + } + }, + "multiagent_cooking_3_1_cooked_mutton_1_pumpkin_pie_blocked_access_1": { + "conversation": "Let's work together to make cooked_mutton, pumpkin_pie.", + "agent_count": 3, + "target": { + "cooked_mutton": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [ + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 6, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 8 + }, + "1": { + "egg": 1 + }, + "2": {} + } + }, + "multiagent_cooking_3_1_cooked_rabbit_1_golden_carrot_1_mushroom_stew_blocked_access_2": { + "conversation": "Let's work together to make cooked_rabbit, mushroom_stew, golden_carrot.", + "agent_count": 3, + "target": { + "cooked_rabbit": 1, + "mushroom_stew": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [ + "2" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew, 1 golden_carrot. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew, 1 golden_carrot. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew, 1 golden_carrot. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 8, + "blocked_agents_count": 1, + "unique_target_items": 3, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 8 + }, + "1": { + "bowl": 1 + }, + "2": { + "gold_ingots": 8 + } + } + }, + "multiagent_cooking_3_1_cooked_mutton_1_cooked_rabbit_1_cookie_blocked_access_0_1_2": { + "conversation": "Let's work together to make cookie, cooked_mutton, cooked_rabbit.", + "agent_count": 3, + "target": { + "cookie": 1, + "cooked_mutton": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1", + "2" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_mutton, 1 cooked_rabbit. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_mutton, 1 cooked_rabbit. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "2": "Collaborate with agents around you to make 1 cookie, 1 cooked_mutton, 1 cooked_rabbit. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 7, + "blocked_agents_count": 3, + "unique_target_items": 3, + "overall_difficulty_score": 8, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "cocoa_beans": 1 + }, + "1": { + "coal": 16 + }, + "2": {} + } + }, + "multiagent_cooking_3_1_cooked_porkchop_1_mushroom_stew_1_pumpkin_pie_blocked_access_0": { + "conversation": "Let's work together to make pumpkin_pie, cooked_porkchop, mushroom_stew.", + "agent_count": 3, + "target": { + "pumpkin_pie": 1, + "cooked_porkchop": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [ + "0" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_porkchop, 1 mushroom_stew. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_porkchop, 1 mushroom_stew. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_porkchop, 1 mushroom_stew. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 9, + "blocked_agents_count": 1, + "unique_target_items": 3, + "overall_difficulty_score": 7, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "egg": 1 + }, + "1": { + "coal": 8 + }, + "2": { + "bowl": 1 + } + } + }, + "multiagent_cooking_3_1_cooked_chicken_1_golden_carrot_1_suspicious_stew_blocked_access_2": { + "conversation": "Let's work together to make golden_carrot, suspicious_stew, cooked_chicken.", + "agent_count": 3, + "target": { + "golden_carrot": 1, + "suspicious_stew": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [ + "2" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_chicken. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_chicken. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "2": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_chicken. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 8, + "blocked_agents_count": 1, + "unique_target_items": 3, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "gold_ingots": 8, + "coal": 8 + }, + "1": { + "bowl": 1 + }, + "2": { + "dandelion": 1 + } + } + }, + "multiagent_cooking_3_1_cooked_chicken_1_cookie_1_golden_carrot": { + "conversation": "Let's work together to make golden_carrot, cooked_chicken, cookie.", + "agent_count": 3, + "target": { + "golden_carrot": 1, + "cooked_chicken": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_chicken, 1 cookie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_chicken, 1 cookie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "2": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_chicken, 1 cookie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 8, + "blocked_agents_count": 0, + "unique_target_items": 3, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "gold_ingots": 8 + }, + "1": { + "coal": 8 + }, + "2": { + "cocoa_beans": 1 + } + } + }, + "multiagent_cooking_3_1_beetroot_soup_1_cooked_chicken_1_cookie": { + "conversation": "Let's work together to make cooked_chicken, beetroot_soup, cookie.", + "agent_count": 3, + "target": { + "cooked_chicken": 1, + "beetroot_soup": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 beetroot_soup, 1 cookie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 beetroot_soup, 1 cookie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 beetroot_soup, 1 cookie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 8, + "blocked_agents_count": 0, + "unique_target_items": 3, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 8 + }, + "1": { + "bowl": 1 + }, + "2": { + "cocoa_beans": 1 + } + } + }, + "multiagent_cooking_3_1_cooked_mutton_1_cooked_porkchop_1_golden_carrot": { + "conversation": "Let's work together to make cooked_mutton, cooked_porkchop, golden_carrot.", + "agent_count": 3, + "target": { + "cooked_mutton": 1, + "cooked_porkchop": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 golden_carrot. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 golden_carrot. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 golden_carrot. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 7, + "blocked_agents_count": 0, + "unique_target_items": 3, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": { + "gold_ingots": 8 + }, + "2": {} + } + }, + "multiagent_cooking_3_1_cooked_rabbit_1_pumpkin_pie": { + "conversation": "Let's work together to make cooked_rabbit, pumpkin_pie.", + "agent_count": 3, + "target": { + "cooked_rabbit": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 6, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 8 + }, + "1": { + "egg": 1 + }, + "2": {} + } + }, + "multiagent_cooking_3_1_cooked_chicken_1_cookie_1_suspicious_stew": { + "conversation": "Let's work together to make cooked_chicken, suspicious_stew, cookie.", + "agent_count": 3, + "target": { + "cooked_chicken": 1, + "suspicious_stew": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew, 1 cookie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew, 1 cookie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew, 1 cookie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 8, + "blocked_agents_count": 0, + "unique_target_items": 3, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 8, + "cocoa_beans": 1 + }, + "1": { + "bowl": 1 + }, + "2": { + "dandelion": 1 + } + } + }, + "multiagent_cooking_3_1_beetroot_soup_1_cooked_chicken_1_pumpkin_pie": { + "conversation": "Let's work together to make pumpkin_pie, beetroot_soup, cooked_chicken.", + "agent_count": 3, + "target": { + "pumpkin_pie": 1, + "beetroot_soup": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 beetroot_soup, 1 cooked_chicken. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 beetroot_soup, 1 cooked_chicken. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 beetroot_soup, 1 cooked_chicken. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 9, + "blocked_agents_count": 0, + "unique_target_items": 3, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "egg": 1 + }, + "1": { + "bowl": 1 + }, + "2": { + "coal": 8 + } + } + }, + "multiagent_cooking_3_1_cooked_mutton_1_cooked_rabbit_1_suspicious_stew_blocked_access_2": { + "conversation": "Let's work together to make cooked_mutton, suspicious_stew, cooked_rabbit.", + "agent_count": 3, + "target": { + "cooked_mutton": 1, + "suspicious_stew": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [ + "2" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 suspicious_stew, 1 cooked_rabbit. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 suspicious_stew, 1 cooked_rabbit. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 suspicious_stew, 1 cooked_rabbit. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 7, + "blocked_agents_count": 1, + "unique_target_items": 3, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": { + "bowl": 1 + }, + "2": { + "dandelion": 1 + } + } + }, + "multiagent_cooking_3_1_beetroot_soup_1_pumpkin_pie": { + "conversation": "Let's work together to make beetroot_soup, pumpkin_pie.", + "agent_count": 3, + "target": { + "beetroot_soup": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 7, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "egg": 1 + }, + "2": {} + } + }, + "multiagent_cooking_3_1_cooked_mutton_1_cookie": { + "conversation": "Let's work together to make cooked_mutton, cookie.", + "agent_count": 3, + "target": { + "cooked_mutton": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cookie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cookie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 cookie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 5, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 8 + }, + "1": { + "cocoa_beans": 1 + }, + "2": {} + } + }, + "multiagent_cooking_3_1_beetroot_soup_1_cooked_mutton_1_suspicious_stew": { + "conversation": "Let's work together to make cooked_mutton, suspicious_stew, beetroot_soup.", + "agent_count": 3, + "target": { + "cooked_mutton": 1, + "suspicious_stew": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 suspicious_stew, 1 beetroot_soup. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 suspicious_stew, 1 beetroot_soup. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 suspicious_stew, 1 beetroot_soup. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 8, + "blocked_agents_count": 0, + "unique_target_items": 3, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 8 + }, + "1": { + "bowl": 2 + }, + "2": { + "dandelion": 1 + } + } + }, + "multiagent_cooking_3_1_cooked_chicken_1_cooked_porkchop_1_golden_carrot_blocked_access_1": { + "conversation": "Let's work together to make cooked_chicken, golden_carrot, cooked_porkchop.", + "agent_count": 3, + "target": { + "cooked_chicken": 1, + "golden_carrot": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [ + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cooked_porkchop. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cooked_porkchop. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cooked_porkchop. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 7, + "blocked_agents_count": 1, + "unique_target_items": 3, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": { + "gold_ingots": 8 + }, + "2": {} + } + } +} \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_train/3_agent_cooking_train_tasks.json b/tasks/cooking_tasks/require_collab_train/3_agent_cooking_train_tasks.json new file mode 100644 index 0000000..84e6b88 --- /dev/null +++ b/tasks/cooking_tasks/require_collab_train/3_agent_cooking_train_tasks.json @@ -0,0 +1,4293 @@ +{ + "multiagent_cooking_3_1_golden_carrot_1_pumpkin_pie_1_suspicious_stew": { + "conversation": "Let's work together to make suspicious_stew, pumpkin_pie, golden_carrot.", + "agent_count": 3, + "target": { + "suspicious_stew": 1, + "pumpkin_pie": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie, 1 golden_carrot. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie, 1 golden_carrot. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie, 1 golden_carrot. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "initial_inventory": { + "0": { + "bowl": 1, + "gold_ingots": 8 + }, + "1": { + "dandelion": 1 + }, + "2": { + "egg": 1 + } + } + }, + "multiagent_cooking_3_1_cooked_mutton_1_cooked_rabbit_1_cookie": { + "conversation": "Let's work together to make cooked_mutton, cooked_rabbit, cookie.", + "agent_count": 3, + "target": { + "cooked_mutton": 1, + "cooked_rabbit": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 cookie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 cookie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 cookie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" + }, + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": { + "cocoa_beans": 1 + }, + "2": {} + } + }, + "multiagent_cooking_3_1_beetroot_soup_1_cooked_porkchop_1_suspicious_stew": { + "conversation": "Let's work together to make cooked_porkchop, suspicious_stew, beetroot_soup.", + "agent_count": 3, + "target": { + "cooked_porkchop": 1, + "suspicious_stew": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 beetroot_soup. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 beetroot_soup. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 beetroot_soup. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" + }, + "initial_inventory": { + "0": { + "coal": 8 + }, + "1": { + "bowl": 2 + }, + "2": { + "dandelion": 1 + } + } + }, + "multiagent_cooking_3_1_cooked_chicken_1_cooked_rabbit": { + "conversation": "Let's work together to make cooked_chicken, cooked_rabbit.", + "agent_count": 3, + "target": { + "cooked_chicken": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" + }, + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": {}, + "2": {} + } + }, + "multiagent_cooking_3_1_cooked_mutton_1_suspicious_stew": { + "conversation": "Let's work together to make suspicious_stew, cooked_mutton.", + "agent_count": 3, + "target": { + "suspicious_stew": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "dandelion": 1 + }, + "2": { + "coal": 8 + } + } + }, + "multiagent_cooking_3_1_cooked_chicken_1_cooked_mutton_1_pumpkin_pie": { + "conversation": "Let's work together to make pumpkin_pie, cooked_chicken, cooked_mutton.", + "agent_count": 3, + "target": { + "pumpkin_pie": 1, + "cooked_chicken": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken, 1 cooked_mutton. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken, 1 cooked_mutton. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken, 1 cooked_mutton. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" + }, + "initial_inventory": { + "0": { + "egg": 1 + }, + "1": { + "coal": 16 + }, + "2": {} + } + }, + "multiagent_cooking_3_1_cooked_porkchop_1_suspicious_stew": { + "conversation": "Let's work together to make suspicious_stew, cooked_porkchop.", + "agent_count": 3, + "target": { + "suspicious_stew": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "dandelion": 1 + }, + "2": { + "coal": 8 + } + } + }, + "multiagent_cooking_3_1_beetroot_soup_1_cooked_chicken_1_suspicious_stew": { + "conversation": "Let's work together to make beetroot_soup, suspicious_stew, cooked_chicken.", + "agent_count": 3, + "target": { + "beetroot_soup": 1, + "suspicious_stew": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 suspicious_stew, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 suspicious_stew, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 suspicious_stew, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + }, + "initial_inventory": { + "0": { + "bowl": 2 + }, + "1": { + "dandelion": 1 + }, + "2": { + "coal": 8 + } + } + }, + "multiagent_cooking_3_1_cooked_porkchop_1_cookie_1_suspicious_stew": { + "conversation": "Let's work together to make cookie, cooked_porkchop, suspicious_stew.", + "agent_count": 3, + "target": { + "cookie": 1, + "cooked_porkchop": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop, 1 suspicious_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop, 1 suspicious_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "2": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop, 1 suspicious_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + }, + "initial_inventory": { + "0": { + "cocoa_beans": 1, + "dandelion": 1 + }, + "1": { + "coal": 8 + }, + "2": { + "bowl": 1 + } + } + }, + "multiagent_cooking_3_1_beetroot_soup_1_pumpkin_pie_1_suspicious_stew": { + "conversation": "Let's work together to make suspicious_stew, pumpkin_pie, beetroot_soup.", + "agent_count": 3, + "target": { + "suspicious_stew": 1, + "pumpkin_pie": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie, 1 beetroot_soup. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie, 1 beetroot_soup. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie, 1 beetroot_soup. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" + }, + "initial_inventory": { + "0": { + "bowl": 2 + }, + "1": { + "dandelion": 1 + }, + "2": { + "egg": 1 + } + } + }, + "multiagent_cooking_3_1_cookie_1_mushroom_stew": { + "conversation": "Let's work together to make mushroom_stew, cookie.", + "agent_count": 3, + "target": { + "mushroom_stew": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cookie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cookie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cookie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "cocoa_beans": 1 + }, + "2": {} + } + }, + "multiagent_cooking_3_1_beetroot_soup_1_cooked_mutton_1_golden_carrot": { + "conversation": "Let's work together to make beetroot_soup, cooked_mutton, golden_carrot.", + "agent_count": 3, + "target": { + "beetroot_soup": 1, + "cooked_mutton": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 golden_carrot. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 golden_carrot. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 golden_carrot. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 8 + }, + "2": { + "gold_ingots": 8 + } + } + }, + "multiagent_cooking_3_1_cooked_chicken_1_cooked_mutton_1_suspicious_stew": { + "conversation": "Let's work together to make suspicious_stew, cooked_mutton, cooked_chicken.", + "agent_count": 3, + "target": { + "suspicious_stew": 1, + "cooked_mutton": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton, 1 cooked_chicken. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton, 1 cooked_chicken. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton, 1 cooked_chicken. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "dandelion": 1 + }, + "2": { + "coal": 16 + } + } + }, + "multiagent_cooking_3_1_cooked_porkchop_1_golden_carrot_1_pumpkin_pie": { + "conversation": "Let's work together to make pumpkin_pie, golden_carrot, cooked_porkchop.", + "agent_count": 3, + "target": { + "pumpkin_pie": 1, + "golden_carrot": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot, 1 cooked_porkchop. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot, 1 cooked_porkchop. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot, 1 cooked_porkchop. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + }, + "initial_inventory": { + "0": { + "egg": 1 + }, + "1": { + "gold_ingots": 8 + }, + "2": { + "coal": 8 + } + } + }, + "multiagent_cooking_3_1_cooked_rabbit_1_cookie_1_pumpkin_pie": { + "conversation": "Let's work together to make cooked_rabbit, pumpkin_pie, cookie.", + "agent_count": 3, + "target": { + "cooked_rabbit": 1, + "pumpkin_pie": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie, 1 cookie. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie, 1 cookie. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie, 1 cookie. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" + }, + "initial_inventory": { + "0": { + "coal": 8 + }, + "1": { + "egg": 1 + }, + "2": { + "cocoa_beans": 1 + } + } + }, + "multiagent_cooking_3_1_golden_carrot_1_mushroom_stew": { + "conversation": "Let's work together to make golden_carrot, mushroom_stew.", + "agent_count": 3, + "target": { + "golden_carrot": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "2": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" + }, + "initial_inventory": { + "0": { + "gold_ingots": 8 + }, + "1": { + "bowl": 1 + }, + "2": {} + } + }, + "multiagent_cooking_3_1_cooked_porkchop_1_cookie": { + "conversation": "Let's work together to make cookie, cooked_porkchop.", + "agent_count": 3, + "target": { + "cookie": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "2": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + }, + "initial_inventory": { + "0": { + "cocoa_beans": 1 + }, + "1": { + "coal": 8 + }, + "2": {} + } + }, + "multiagent_cooking_3_1_cooked_porkchop_1_mushroom_stew_1_pumpkin_pie": { + "conversation": "Let's work together to make cooked_porkchop, mushroom_stew, pumpkin_pie.", + "agent_count": 3, + "target": { + "cooked_porkchop": 1, + "mushroom_stew": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" + }, + "initial_inventory": { + "0": { + "coal": 8 + }, + "1": { + "bowl": 1 + }, + "2": { + "egg": 1 + } + } + }, + "multiagent_cooking_3_1_cooked_rabbit_1_suspicious_stew": { + "conversation": "Let's work together to make cooked_rabbit, suspicious_stew.", + "agent_count": 3, + "target": { + "cooked_rabbit": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + }, + "initial_inventory": { + "0": { + "coal": 8 + }, + "1": { + "bowl": 1 + }, + "2": { + "dandelion": 1 + } + } + }, + "multiagent_cooking_3_1_cooked_chicken_1_pumpkin_pie": { + "conversation": "Let's work together to make pumpkin_pie, cooked_chicken.", + "agent_count": 3, + "target": { + "pumpkin_pie": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + }, + "initial_inventory": { + "0": { + "egg": 1 + }, + "1": { + "coal": 8 + }, + "2": {} + } + }, + "multiagent_cooking_3_1_beetroot_soup_1_cooked_porkchop_1_mushroom_stew": { + "conversation": "Let's work together to make mushroom_stew, beetroot_soup, cooked_porkchop.", + "agent_count": 3, + "target": { + "mushroom_stew": 1, + "beetroot_soup": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 cooked_porkchop. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 cooked_porkchop. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 cooked_porkchop. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + }, + "initial_inventory": { + "0": { + "bowl": 2 + }, + "1": { + "coal": 8 + }, + "2": {} + } + }, + "multiagent_cooking_3_1_beetroot_soup_1_cooked_porkchop_1_pumpkin_pie": { + "conversation": "Let's work together to make cooked_porkchop, pumpkin_pie, beetroot_soup.", + "agent_count": 3, + "target": { + "cooked_porkchop": 1, + "pumpkin_pie": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie, 1 beetroot_soup. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie, 1 beetroot_soup. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie, 1 beetroot_soup. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" + }, + "initial_inventory": { + "0": { + "coal": 8 + }, + "1": { + "egg": 1 + }, + "2": { + "bowl": 1 + } + } + }, + "multiagent_cooking_3_1_cooked_mutton_1_golden_carrot_1_pumpkin_pie": { + "conversation": "Let's work together to make pumpkin_pie, golden_carrot, cooked_mutton.", + "agent_count": 3, + "target": { + "pumpkin_pie": 1, + "golden_carrot": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot, 1 cooked_mutton. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot, 1 cooked_mutton. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot, 1 cooked_mutton. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" + }, + "initial_inventory": { + "0": { + "egg": 1 + }, + "1": { + "gold_ingots": 8 + }, + "2": { + "coal": 8 + } + } + }, + "multiagent_cooking_3_1_cooked_chicken_1_cooked_mutton_1_golden_carrot": { + "conversation": "Let's work together to make golden_carrot, cooked_mutton, cooked_chicken.", + "agent_count": 3, + "target": { + "golden_carrot": 1, + "cooked_mutton": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton, 1 cooked_chicken. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton, 1 cooked_chicken. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "2": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton, 1 cooked_chicken. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + }, + "initial_inventory": { + "0": { + "gold_ingots": 8 + }, + "1": { + "coal": 16 + }, + "2": {} + } + }, + "multiagent_cooking_3_1_cooked_chicken_1_cooked_porkchop": { + "conversation": "Let's work together to make cooked_porkchop, cooked_chicken.", + "agent_count": 3, + "target": { + "cooked_porkchop": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + }, + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": {}, + "2": {} + } + }, + "multiagent_cooking_3_1_cooked_mutton_1_pumpkin_pie": { + "conversation": "Let's work together to make cooked_mutton, pumpkin_pie.", + "agent_count": 3, + "target": { + "cooked_mutton": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" + }, + "initial_inventory": { + "0": { + "coal": 8 + }, + "1": { + "egg": 1 + }, + "2": {} + } + }, + "multiagent_cooking_3_1_cooked_mutton_1_mushroom_stew": { + "conversation": "Let's work together to make mushroom_stew, cooked_mutton.", + "agent_count": 3, + "target": { + "mushroom_stew": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 8 + }, + "2": {} + } + }, + "multiagent_cooking_3_1_golden_carrot_1_mushroom_stew_1_suspicious_stew": { + "conversation": "Let's work together to make suspicious_stew, mushroom_stew, golden_carrot.", + "agent_count": 3, + "target": { + "suspicious_stew": 1, + "mushroom_stew": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 mushroom_stew, 1 golden_carrot. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 mushroom_stew, 1 golden_carrot. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 mushroom_stew, 1 golden_carrot. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "initial_inventory": { + "0": { + "bowl": 2 + }, + "1": { + "dandelion": 1 + }, + "2": { + "gold_ingots": 8 + } + } + }, + "multiagent_cooking_3_1_beetroot_soup_1_cookie": { + "conversation": "Let's work together to make cookie, beetroot_soup.", + "agent_count": 3, + "target": { + "cookie": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 beetroot_soup. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "1": "Collaborate with agents around you to make 1 cookie, 1 beetroot_soup. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "2": "Collaborate with agents around you to make 1 cookie, 1 beetroot_soup. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" + }, + "initial_inventory": { + "0": { + "cocoa_beans": 1 + }, + "1": { + "bowl": 1 + }, + "2": {} + } + }, + "multiagent_cooking_3_1_cooked_porkchop_1_cooked_rabbit_1_suspicious_stew": { + "conversation": "Let's work together to make cooked_rabbit, cooked_porkchop, suspicious_stew.", + "agent_count": 3, + "target": { + "cooked_rabbit": 1, + "cooked_porkchop": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 suspicious_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 suspicious_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 suspicious_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + }, + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": { + "bowl": 1 + }, + "2": { + "dandelion": 1 + } + } + }, + "multiagent_cooking_3_1_cookie_1_pumpkin_pie": { + "conversation": "Let's work together to make cookie, pumpkin_pie.", + "agent_count": 3, + "target": { + "cookie": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 pumpkin_pie. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "1": "Collaborate with agents around you to make 1 cookie, 1 pumpkin_pie. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "2": "Collaborate with agents around you to make 1 cookie, 1 pumpkin_pie. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" + }, + "initial_inventory": { + "0": { + "cocoa_beans": 1 + }, + "1": { + "egg": 1 + }, + "2": {} + } + }, + "multiagent_cooking_3_1_cooked_chicken_1_cookie_1_pumpkin_pie": { + "conversation": "Let's work together to make cookie, pumpkin_pie, cooked_chicken.", + "agent_count": 3, + "target": { + "cookie": 1, + "pumpkin_pie": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 pumpkin_pie, 1 cooked_chicken. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "1": "Collaborate with agents around you to make 1 cookie, 1 pumpkin_pie, 1 cooked_chicken. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "2": "Collaborate with agents around you to make 1 cookie, 1 pumpkin_pie, 1 cooked_chicken. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + }, + "initial_inventory": { + "0": { + "cocoa_beans": 1 + }, + "1": { + "egg": 1 + }, + "2": { + "coal": 8 + } + } + }, + "multiagent_cooking_3_1_cooked_mutton_1_mushroom_stew_1_suspicious_stew": { + "conversation": "Let's work together to make cooked_mutton, suspicious_stew, mushroom_stew.", + "agent_count": 3, + "target": { + "cooked_mutton": 1, + "suspicious_stew": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 suspicious_stew, 1 mushroom_stew. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 suspicious_stew, 1 mushroom_stew. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 suspicious_stew, 1 mushroom_stew. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" + }, + "initial_inventory": { + "0": { + "coal": 8 + }, + "1": { + "bowl": 2 + }, + "2": { + "dandelion": 1 + } + } + }, + "multiagent_cooking_3_1_cooked_rabbit_1_golden_carrot": { + "conversation": "Let's work together to make cooked_rabbit, golden_carrot.", + "agent_count": 3, + "target": { + "cooked_rabbit": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "initial_inventory": { + "0": { + "coal": 8 + }, + "1": { + "gold_ingots": 8 + }, + "2": {} + } + }, + "multiagent_cooking_3_1_beetroot_soup_1_golden_carrot_1_suspicious_stew": { + "conversation": "Let's work together to make golden_carrot, suspicious_stew, beetroot_soup.", + "agent_count": 3, + "target": { + "golden_carrot": 1, + "suspicious_stew": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 beetroot_soup. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 beetroot_soup. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "2": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 beetroot_soup. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" + }, + "initial_inventory": { + "0": { + "gold_ingots": 8 + }, + "1": { + "bowl": 2 + }, + "2": { + "dandelion": 1 + } + } + }, + "multiagent_cooking_3_1_cooked_rabbit_1_mushroom_stew": { + "conversation": "Let's work together to make cooked_rabbit, mushroom_stew.", + "agent_count": 3, + "target": { + "cooked_rabbit": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" + }, + "initial_inventory": { + "0": { + "coal": 8 + }, + "1": { + "bowl": 1 + }, + "2": {} + } + }, + "multiagent_cooking_3_1_golden_carrot_1_pumpkin_pie": { + "conversation": "Let's work together to make golden_carrot, pumpkin_pie.", + "agent_count": 3, + "target": { + "golden_carrot": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "2": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" + }, + "initial_inventory": { + "0": { + "gold_ingots": 8 + }, + "1": { + "egg": 1 + }, + "2": {} + } + }, + "multiagent_cooking_3_1_cooked_mutton_1_golden_carrot_1_mushroom_stew": { + "conversation": "Let's work together to make mushroom_stew, cooked_mutton, golden_carrot.", + "agent_count": 3, + "target": { + "mushroom_stew": 1, + "cooked_mutton": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 golden_carrot. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 golden_carrot. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 golden_carrot. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 8 + }, + "2": { + "gold_ingots": 8 + } + } + }, + "multiagent_cooking_3_1_cooked_chicken_1_cookie_1_golden_carrot": { + "conversation": "Let's work together to make cookie, cooked_chicken, golden_carrot.", + "agent_count": 3, + "target": { + "cookie": 1, + "cooked_chicken": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_chicken, 1 golden_carrot. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_chicken, 1 golden_carrot. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "2": "Collaborate with agents around you to make 1 cookie, 1 cooked_chicken, 1 golden_carrot. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "initial_inventory": { + "0": { + "cocoa_beans": 1 + }, + "1": { + "coal": 8 + }, + "2": { + "gold_ingots": 8 + } + } + }, + "multiagent_cooking_3_1_cooked_mutton_1_cooked_rabbit_1_golden_carrot": { + "conversation": "Let's work together to make cooked_mutton, cooked_rabbit, golden_carrot.", + "agent_count": 3, + "target": { + "cooked_mutton": 1, + "cooked_rabbit": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 golden_carrot. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 golden_carrot. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 golden_carrot. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": { + "gold_ingots": 8 + }, + "2": {} + } + }, + "multiagent_cooking_3_1_beetroot_soup_1_cooked_chicken": { + "conversation": "Let's work together to make beetroot_soup, cooked_chicken.", + "agent_count": 3, + "target": { + "beetroot_soup": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 8 + }, + "2": {} + } + }, + "multiagent_cooking_3_1_golden_carrot_1_suspicious_stew": { + "conversation": "Let's work together to make golden_carrot, suspicious_stew.", + "agent_count": 3, + "target": { + "golden_carrot": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "2": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + }, + "initial_inventory": { + "0": { + "gold_ingots": 8 + }, + "1": { + "bowl": 1 + }, + "2": { + "dandelion": 1 + } + } + }, + "multiagent_cooking_3_1_cooked_rabbit_1_golden_carrot_1_pumpkin_pie": { + "conversation": "Let's work together to make cooked_rabbit, pumpkin_pie, golden_carrot.", + "agent_count": 3, + "target": { + "cooked_rabbit": 1, + "pumpkin_pie": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie, 1 golden_carrot. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie, 1 golden_carrot. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie, 1 golden_carrot. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "initial_inventory": { + "0": { + "coal": 8 + }, + "1": { + "egg": 1 + }, + "2": { + "gold_ingots": 8 + } + } + }, + "multiagent_cooking_3_1_cooked_porkchop_1_cookie_1_pumpkin_pie": { + "conversation": "Let's work together to make cooked_porkchop, cookie, pumpkin_pie.", + "agent_count": 3, + "target": { + "cooked_porkchop": 1, + "cookie": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cookie, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cookie, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cookie, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" + }, + "initial_inventory": { + "0": { + "coal": 8 + }, + "1": { + "cocoa_beans": 1 + }, + "2": { + "egg": 1 + } + } + }, + "multiagent_cooking_3_1_beetroot_soup_1_cooked_rabbit": { + "conversation": "Let's work together to make cooked_rabbit, beetroot_soup.", + "agent_count": 3, + "target": { + "cooked_rabbit": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" + }, + "initial_inventory": { + "0": { + "coal": 8 + }, + "1": { + "bowl": 1 + }, + "2": {} + } + }, + "multiagent_cooking_3_1_beetroot_soup_1_cooked_porkchop_1_cookie": { + "conversation": "Let's work together to make cookie, beetroot_soup, cooked_porkchop.", + "agent_count": 3, + "target": { + "cookie": 1, + "beetroot_soup": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 beetroot_soup, 1 cooked_porkchop. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "1": "Collaborate with agents around you to make 1 cookie, 1 beetroot_soup, 1 cooked_porkchop. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "2": "Collaborate with agents around you to make 1 cookie, 1 beetroot_soup, 1 cooked_porkchop. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + }, + "initial_inventory": { + "0": { + "cocoa_beans": 1 + }, + "1": { + "bowl": 1 + }, + "2": { + "coal": 8 + } + } + }, + "multiagent_cooking_3_1_cooked_porkchop_1_cookie_1_golden_carrot": { + "conversation": "Let's work together to make cooked_porkchop, cookie, golden_carrot.", + "agent_count": 3, + "target": { + "cooked_porkchop": 1, + "cookie": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cookie, 1 golden_carrot. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cookie, 1 golden_carrot. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cookie, 1 golden_carrot. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "initial_inventory": { + "0": { + "coal": 8 + }, + "1": { + "cocoa_beans": 1 + }, + "2": { + "gold_ingots": 8 + } + } + }, + "multiagent_cooking_3_1_beetroot_soup_1_cooked_chicken_1_cooked_porkchop": { + "conversation": "Let's work together to make cooked_porkchop, beetroot_soup, cooked_chicken.", + "agent_count": 3, + "target": { + "cooked_porkchop": 1, + "beetroot_soup": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 beetroot_soup, 1 cooked_chicken. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 beetroot_soup, 1 cooked_chicken. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 beetroot_soup, 1 cooked_chicken. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + }, + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": { + "bowl": 1 + }, + "2": {} + } + }, + "multiagent_cooking_3_1_cooked_chicken_1_golden_carrot_1_pumpkin_pie": { + "conversation": "Let's work together to make cooked_chicken, golden_carrot, pumpkin_pie.", + "agent_count": 3, + "target": { + "cooked_chicken": 1, + "golden_carrot": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 pumpkin_pie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 pumpkin_pie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 pumpkin_pie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" + }, + "initial_inventory": { + "0": { + "coal": 8 + }, + "1": { + "gold_ingots": 8 + }, + "2": { + "egg": 1 + } + } + }, + "multiagent_cooking_3_1_cooked_chicken_1_cooked_rabbit_1_mushroom_stew": { + "conversation": "Let's work together to make cooked_chicken, cooked_rabbit, mushroom_stew.", + "agent_count": 3, + "target": { + "cooked_chicken": 1, + "cooked_rabbit": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 mushroom_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 mushroom_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 mushroom_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" + }, + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": { + "bowl": 1 + }, + "2": {} + } + }, + "multiagent_cooking_3_1_cooked_porkchop_1_cooked_rabbit": { + "conversation": "Let's work together to make cooked_porkchop, cooked_rabbit.", + "agent_count": 3, + "target": { + "cooked_porkchop": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_rabbit. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_rabbit. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_rabbit. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" + }, + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": {}, + "2": {} + } + }, + "multiagent_cooking_3_1_cookie_1_golden_carrot": { + "conversation": "Let's work together to make cookie, golden_carrot.", + "agent_count": 3, + "target": { + "cookie": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 golden_carrot. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 cookie, 1 golden_carrot. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "2": "Collaborate with agents around you to make 1 cookie, 1 golden_carrot. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "initial_inventory": { + "0": { + "cocoa_beans": 1 + }, + "1": { + "gold_ingots": 8 + }, + "2": {} + } + }, + "multiagent_cooking_3_1_cooked_rabbit_1_mushroom_stew_1_suspicious_stew": { + "conversation": "Let's work together to make mushroom_stew, suspicious_stew, cooked_rabbit.", + "agent_count": 3, + "target": { + "mushroom_stew": 1, + "suspicious_stew": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 cooked_rabbit. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 cooked_rabbit. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 cooked_rabbit. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" + }, + "initial_inventory": { + "0": { + "bowl": 2 + }, + "1": { + "dandelion": 1 + }, + "2": { + "coal": 8 + } + } + }, + "multiagent_cooking_3_1_cooked_porkchop_1_golden_carrot_1_mushroom_stew": { + "conversation": "Let's work together to make cooked_porkchop, golden_carrot, mushroom_stew.", + "agent_count": 3, + "target": { + "cooked_porkchop": 1, + "golden_carrot": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot, 1 mushroom_stew. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot, 1 mushroom_stew. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot, 1 mushroom_stew. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" + }, + "initial_inventory": { + "0": { + "coal": 8 + }, + "1": { + "gold_ingots": 8 + }, + "2": { + "bowl": 1 + } + } + }, + "multiagent_cooking_3_1_golden_carrot_1_mushroom_stew_1_pumpkin_pie": { + "conversation": "Let's work together to make mushroom_stew, golden_carrot, pumpkin_pie.", + "agent_count": 3, + "target": { + "mushroom_stew": 1, + "golden_carrot": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 pumpkin_pie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 pumpkin_pie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 pumpkin_pie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "gold_ingots": 8 + }, + "2": { + "egg": 1 + } + } + }, + "multiagent_cooking_3_1_beetroot_soup_1_cooked_rabbit_1_cookie": { + "conversation": "Let's work together to make beetroot_soup, cooked_rabbit, cookie.", + "agent_count": 3, + "target": { + "beetroot_soup": 1, + "cooked_rabbit": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_rabbit, 1 cookie. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_rabbit, 1 cookie. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_rabbit, 1 cookie. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 8 + }, + "2": { + "cocoa_beans": 1 + } + } + }, + "multiagent_cooking_3_1_cooked_porkchop_1_mushroom_stew": { + "conversation": "Let's work together to make cooked_porkchop, mushroom_stew.", + "agent_count": 3, + "target": { + "cooked_porkchop": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" + }, + "initial_inventory": { + "0": { + "coal": 8 + }, + "1": { + "bowl": 1 + }, + "2": {} + } + }, + "multiagent_cooking_3_1_cooked_chicken_1_cookie_1_mushroom_stew": { + "conversation": "Let's work together to make mushroom_stew, cookie, cooked_chicken.", + "agent_count": 3, + "target": { + "mushroom_stew": 1, + "cookie": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cookie, 1 cooked_chicken. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cookie, 1 cooked_chicken. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cookie, 1 cooked_chicken. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "cocoa_beans": 1 + }, + "2": { + "coal": 8 + } + } + }, + "multiagent_cooking_3_1_cooked_porkchop_1_golden_carrot_1_suspicious_stew": { + "conversation": "Let's work together to make suspicious_stew, cooked_porkchop, golden_carrot.", + "agent_count": 3, + "target": { + "suspicious_stew": 1, + "cooked_porkchop": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop, 1 golden_carrot. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop, 1 golden_carrot. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop, 1 golden_carrot. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "initial_inventory": { + "0": { + "bowl": 1, + "gold_ingots": 8 + }, + "1": { + "dandelion": 1 + }, + "2": { + "coal": 8 + } + } + }, + "multiagent_cooking_3_1_beetroot_soup_1_mushroom_stew": { + "conversation": "Let's work together to make beetroot_soup, mushroom_stew.", + "agent_count": 3, + "target": { + "beetroot_soup": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 mushroom_stew. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 mushroom_stew. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 mushroom_stew. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" + }, + "initial_inventory": { + "0": { + "bowl": 2 + }, + "1": {}, + "2": {} + } + }, + "multiagent_cooking_3_1_beetroot_soup_1_cooked_mutton_1_cookie": { + "conversation": "Let's work together to make beetroot_soup, cookie, cooked_mutton.", + "agent_count": 3, + "target": { + "beetroot_soup": 1, + "cookie": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie, 1 cooked_mutton. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie, 1 cooked_mutton. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie, 1 cooked_mutton. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "cocoa_beans": 1 + }, + "2": { + "coal": 8 + } + } + }, + "multiagent_cooking_3_1_beetroot_soup_1_cooked_chicken_1_mushroom_stew": { + "conversation": "Let's work together to make mushroom_stew, beetroot_soup, cooked_chicken.", + "agent_count": 3, + "target": { + "mushroom_stew": 1, + "beetroot_soup": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 cooked_chicken. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 cooked_chicken. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 cooked_chicken. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + }, + "initial_inventory": { + "0": { + "bowl": 2 + }, + "1": { + "coal": 8 + }, + "2": {} + } + }, + "multiagent_cooking_3_1_cooked_chicken_1_cooked_mutton_1_cooked_porkchop": { + "conversation": "Let's work together to make cooked_chicken, cooked_porkchop, cooked_mutton.", + "agent_count": 3, + "target": { + "cooked_chicken": 1, + "cooked_porkchop": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop, 1 cooked_mutton. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop, 1 cooked_mutton. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop, 1 cooked_mutton. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" + }, + "initial_inventory": { + "0": { + "coal": 24 + }, + "1": {}, + "2": {} + } + }, + "multiagent_cooking_3_1_cooked_mutton_1_golden_carrot": { + "conversation": "Let's work together to make golden_carrot, cooked_mutton.", + "agent_count": 3, + "target": { + "golden_carrot": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "2": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" + }, + "initial_inventory": { + "0": { + "gold_ingots": 8 + }, + "1": { + "coal": 8 + }, + "2": {} + } + }, + "multiagent_cooking_3_1_cooked_chicken_1_cookie": { + "conversation": "Let's work together to make cooked_chicken, cookie.", + "agent_count": 3, + "target": { + "cooked_chicken": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cookie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cookie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 cookie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" + }, + "initial_inventory": { + "0": { + "coal": 8 + }, + "1": { + "cocoa_beans": 1 + }, + "2": {} + } + }, + "multiagent_cooking_3_1_cookie_1_pumpkin_pie_1_suspicious_stew": { + "conversation": "Let's work together to make suspicious_stew, pumpkin_pie, cookie.", + "agent_count": 3, + "target": { + "suspicious_stew": 1, + "pumpkin_pie": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie, 1 cookie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie, 1 cookie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie, 1 cookie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" + }, + "initial_inventory": { + "0": { + "bowl": 1, + "cocoa_beans": 1 + }, + "1": { + "dandelion": 1 + }, + "2": { + "egg": 1 + } + } + }, + "multiagent_cooking_3_1_beetroot_soup_1_cooked_mutton": { + "conversation": "Let's work together to make beetroot_soup, cooked_mutton.", + "agent_count": 3, + "target": { + "beetroot_soup": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 8 + }, + "2": {} + } + }, + "multiagent_cooking_3_1_cooked_mutton_1_cooked_porkchop_1_cooked_rabbit": { + "conversation": "Let's work together to make cooked_mutton, cooked_porkchop, cooked_rabbit.", + "agent_count": 3, + "target": { + "cooked_mutton": 1, + "cooked_porkchop": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 cooked_rabbit. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 cooked_rabbit. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 cooked_rabbit. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" + }, + "initial_inventory": { + "0": { + "coal": 24 + }, + "1": {}, + "2": {} + } + }, + "multiagent_cooking_3_1_cooked_rabbit_1_golden_carrot_1_mushroom_stew": { + "conversation": "Let's work together to make cooked_rabbit, golden_carrot, mushroom_stew.", + "agent_count": 3, + "target": { + "cooked_rabbit": 1, + "golden_carrot": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot, 1 mushroom_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot, 1 mushroom_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot, 1 mushroom_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" + }, + "initial_inventory": { + "0": { + "coal": 8 + }, + "1": { + "gold_ingots": 8 + }, + "2": { + "bowl": 1 + } + } + }, + "multiagent_cooking_3_1_cooked_porkchop_1_golden_carrot": { + "conversation": "Let's work together to make cooked_porkchop, golden_carrot.", + "agent_count": 3, + "target": { + "cooked_porkchop": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "initial_inventory": { + "0": { + "coal": 8 + }, + "1": { + "gold_ingots": 8 + }, + "2": {} + } + }, + "multiagent_cooking_3_1_beetroot_soup_1_suspicious_stew": { + "conversation": "Let's work together to make suspicious_stew, beetroot_soup.", + "agent_count": 3, + "target": { + "suspicious_stew": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" + }, + "initial_inventory": { + "0": { + "bowl": 2 + }, + "1": { + "dandelion": 1 + }, + "2": {} + } + }, + "multiagent_cooking_3_1_cooked_porkchop_1_pumpkin_pie": { + "conversation": "Let's work together to make cooked_porkchop, pumpkin_pie.", + "agent_count": 3, + "target": { + "cooked_porkchop": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" + }, + "initial_inventory": { + "0": { + "coal": 8 + }, + "1": { + "egg": 1 + }, + "2": {} + } + }, + "multiagent_cooking_3_1_cooked_porkchop_1_cooked_rabbit_1_cookie": { + "conversation": "Let's work together to make cooked_porkchop, cooked_rabbit, cookie.", + "agent_count": 3, + "target": { + "cooked_porkchop": 1, + "cooked_rabbit": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_rabbit, 1 cookie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_rabbit, 1 cookie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_rabbit, 1 cookie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" + }, + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": { + "cocoa_beans": 1 + }, + "2": {} + } + }, + "multiagent_cooking_3_1_mushroom_stew_1_suspicious_stew": { + "conversation": "Let's work together to make mushroom_stew, suspicious_stew.", + "agent_count": 3, + "target": { + "mushroom_stew": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + }, + "initial_inventory": { + "0": { + "bowl": 2 + }, + "1": { + "dandelion": 1 + }, + "2": {} + } + }, + "multiagent_cooking_3_1_beetroot_soup_1_golden_carrot": { + "conversation": "Let's work together to make golden_carrot, beetroot_soup.", + "agent_count": 3, + "target": { + "golden_carrot": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "2": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" + }, + "initial_inventory": { + "0": { + "gold_ingots": 8 + }, + "1": { + "bowl": 1 + }, + "2": {} + } + }, + "multiagent_cooking_3_1_beetroot_soup_1_cooked_chicken_1_cooked_mutton": { + "conversation": "Let's work together to make cooked_mutton, cooked_chicken, beetroot_soup.", + "agent_count": 3, + "target": { + "cooked_mutton": 1, + "cooked_chicken": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_chicken, 1 beetroot_soup. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_chicken, 1 beetroot_soup. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_chicken, 1 beetroot_soup. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" + }, + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": { + "bowl": 1 + }, + "2": {} + } + }, + "multiagent_cooking_3_1_cooked_chicken_1_mushroom_stew": { + "conversation": "Let's work together to make mushroom_stew, cooked_chicken.", + "agent_count": 3, + "target": { + "mushroom_stew": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 8 + }, + "2": {} + } + }, + "multiagent_cooking_3_1_beetroot_soup_1_cooked_mutton_1_cooked_rabbit": { + "conversation": "Let's work together to make cooked_rabbit, beetroot_soup, cooked_mutton.", + "agent_count": 3, + "target": { + "cooked_rabbit": 1, + "beetroot_soup": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup, 1 cooked_mutton. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup, 1 cooked_mutton. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup, 1 cooked_mutton. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" + }, + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": { + "bowl": 1 + }, + "2": {} + } + }, + "multiagent_cooking_3_1_cooked_rabbit_1_cookie": { + "conversation": "Let's work together to make cooked_rabbit, cookie.", + "agent_count": 3, + "target": { + "cooked_rabbit": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cookie. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cookie. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cookie. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" + }, + "initial_inventory": { + "0": { + "coal": 8 + }, + "1": { + "cocoa_beans": 1 + }, + "2": {} + } + }, + "multiagent_cooking_3_1_beetroot_soup_1_cooked_porkchop_1_cooked_rabbit": { + "conversation": "Let's work together to make cooked_rabbit, beetroot_soup, cooked_porkchop.", + "agent_count": 3, + "target": { + "cooked_rabbit": 1, + "beetroot_soup": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup, 1 cooked_porkchop. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup, 1 cooked_porkchop. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup, 1 cooked_porkchop. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + }, + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": { + "bowl": 1 + }, + "2": {} + } + }, + "multiagent_cooking_3_1_cooked_mutton_1_cooked_rabbit_1_mushroom_stew": { + "conversation": "Let's work together to make cooked_mutton, mushroom_stew, cooked_rabbit.", + "agent_count": 3, + "target": { + "cooked_mutton": 1, + "mushroom_stew": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 cooked_rabbit. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 cooked_rabbit. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 cooked_rabbit. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" + }, + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": { + "bowl": 1 + }, + "2": {} + } + }, + "multiagent_cooking_3_1_cooked_mutton_1_cookie_1_suspicious_stew": { + "conversation": "Let's work together to make cooked_mutton, cookie, suspicious_stew.", + "agent_count": 3, + "target": { + "cooked_mutton": 1, + "cookie": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cookie, 1 suspicious_stew. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cookie, 1 suspicious_stew. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 cookie, 1 suspicious_stew. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + }, + "initial_inventory": { + "0": { + "coal": 8, + "dandelion": 1 + }, + "1": { + "cocoa_beans": 1 + }, + "2": { + "bowl": 1 + } + } + }, + "multiagent_cooking_3_1_cooked_chicken_1_cooked_porkchop_1_cookie": { + "conversation": "Let's work together to make cookie, cooked_porkchop, cooked_chicken.", + "agent_count": 3, + "target": { + "cookie": 1, + "cooked_porkchop": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop, 1 cooked_chicken. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop, 1 cooked_chicken. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "2": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop, 1 cooked_chicken. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + }, + "initial_inventory": { + "0": { + "cocoa_beans": 1 + }, + "1": { + "coal": 16 + }, + "2": {} + } + }, + "multiagent_cooking_3_1_cooked_chicken_1_golden_carrot": { + "conversation": "Let's work together to make cooked_chicken, golden_carrot.", + "agent_count": 3, + "target": { + "cooked_chicken": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "initial_inventory": { + "0": { + "coal": 8 + }, + "1": { + "gold_ingots": 8 + }, + "2": {} + } + }, + "multiagent_cooking_3_1_cooked_rabbit_1_mushroom_stew_1_pumpkin_pie": { + "conversation": "Let's work together to make mushroom_stew, pumpkin_pie, cooked_rabbit.", + "agent_count": 3, + "target": { + "mushroom_stew": 1, + "pumpkin_pie": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 pumpkin_pie, 1 cooked_rabbit. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 pumpkin_pie, 1 cooked_rabbit. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 pumpkin_pie, 1 cooked_rabbit. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "egg": 1 + }, + "2": { + "coal": 8 + } + } + }, + "multiagent_cooking_3_1_cooked_porkchop_1_pumpkin_pie_1_suspicious_stew": { + "conversation": "Let's work together to make pumpkin_pie, suspicious_stew, cooked_porkchop.", + "agent_count": 3, + "target": { + "pumpkin_pie": 1, + "suspicious_stew": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew, 1 cooked_porkchop. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew, 1 cooked_porkchop. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew, 1 cooked_porkchop. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + }, + "initial_inventory": { + "0": { + "egg": 1, + "coal": 8 + }, + "1": { + "bowl": 1 + }, + "2": { + "dandelion": 1 + } + } + }, + "multiagent_cooking_3_1_beetroot_soup_1_pumpkin_pie": { + "conversation": "Let's work together to make pumpkin_pie, beetroot_soup.", + "agent_count": 3, + "target": { + "pumpkin_pie": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 beetroot_soup. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 beetroot_soup. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 beetroot_soup. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" + }, + "initial_inventory": { + "0": { + "egg": 1 + }, + "1": { + "bowl": 1 + }, + "2": {} + } + }, + "multiagent_cooking_3_1_cooked_mutton_1_cooked_porkchop_1_cookie": { + "conversation": "Let's work together to make cookie, cooked_porkchop, cooked_mutton.", + "agent_count": 3, + "target": { + "cookie": 1, + "cooked_porkchop": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop, 1 cooked_mutton. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop, 1 cooked_mutton. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "2": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop, 1 cooked_mutton. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" + }, + "initial_inventory": { + "0": { + "cocoa_beans": 1 + }, + "1": { + "coal": 16 + }, + "2": {} + } + }, + "multiagent_cooking_3_1_cooked_chicken_1_pumpkin_pie_1_suspicious_stew": { + "conversation": "Let's work together to make suspicious_stew, pumpkin_pie, cooked_chicken.", + "agent_count": 3, + "target": { + "suspicious_stew": 1, + "pumpkin_pie": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie, 1 cooked_chicken. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie, 1 cooked_chicken. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie, 1 cooked_chicken. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + }, + "initial_inventory": { + "0": { + "bowl": 1, + "coal": 8 + }, + "1": { + "dandelion": 1 + }, + "2": { + "egg": 1 + } + } + }, + "multiagent_cooking_3_1_cooked_mutton_1_cookie_1_pumpkin_pie": { + "conversation": "Let's work together to make cooked_mutton, pumpkin_pie, cookie.", + "agent_count": 3, + "target": { + "cooked_mutton": 1, + "pumpkin_pie": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie, 1 cookie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie, 1 cookie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie, 1 cookie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" + }, + "initial_inventory": { + "0": { + "coal": 8 + }, + "1": { + "egg": 1 + }, + "2": { + "cocoa_beans": 1 + } + } + }, + "multiagent_cooking_3_1_cooked_chicken_1_cooked_mutton_1_cooked_rabbit": { + "conversation": "Let's work together to make cooked_chicken, cooked_rabbit, cooked_mutton.", + "agent_count": 3, + "target": { + "cooked_chicken": 1, + "cooked_rabbit": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 cooked_mutton. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 cooked_mutton. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 cooked_mutton. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" + }, + "initial_inventory": { + "0": { + "coal": 24 + }, + "1": {}, + "2": {} + } + }, + "multiagent_cooking_3_1_cooked_chicken_1_cooked_rabbit_1_pumpkin_pie": { + "conversation": "Let's work together to make cooked_chicken, cooked_rabbit, pumpkin_pie.", + "agent_count": 3, + "target": { + "cooked_chicken": 1, + "cooked_rabbit": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 pumpkin_pie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 pumpkin_pie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 pumpkin_pie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" + }, + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": { + "egg": 1 + }, + "2": {} + } + }, + "multiagent_cooking_3_1_cooked_chicken_1_cooked_rabbit_1_suspicious_stew": { + "conversation": "Let's work together to make cooked_rabbit, cooked_chicken, suspicious_stew.", + "agent_count": 3, + "target": { + "cooked_rabbit": 1, + "cooked_chicken": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken, 1 suspicious_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken, 1 suspicious_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken, 1 suspicious_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + }, + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": { + "bowl": 1 + }, + "2": { + "dandelion": 1 + } + } + }, + "multiagent_cooking_3_1_cookie_1_golden_carrot_1_suspicious_stew": { + "conversation": "Let's work together to make golden_carrot, suspicious_stew, cookie.", + "agent_count": 3, + "target": { + "golden_carrot": 1, + "suspicious_stew": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cookie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cookie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "2": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cookie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" + }, + "initial_inventory": { + "0": { + "gold_ingots": 8, + "cocoa_beans": 1 + }, + "1": { + "bowl": 1 + }, + "2": { + "dandelion": 1 + } + } + }, + "multiagent_cooking_3_1_cooked_mutton_1_cookie_1_golden_carrot": { + "conversation": "Let's work together to make cookie, golden_carrot, cooked_mutton.", + "agent_count": 3, + "target": { + "cookie": 1, + "golden_carrot": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 golden_carrot, 1 cooked_mutton. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 cookie, 1 golden_carrot, 1 cooked_mutton. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "2": "Collaborate with agents around you to make 1 cookie, 1 golden_carrot, 1 cooked_mutton. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" + }, + "initial_inventory": { + "0": { + "cocoa_beans": 1 + }, + "1": { + "gold_ingots": 8 + }, + "2": { + "coal": 8 + } + } + }, + "multiagent_cooking_3_1_cooked_mutton_1_cooked_rabbit": { + "conversation": "Let's work together to make cooked_rabbit, cooked_mutton.", + "agent_count": 3, + "target": { + "cooked_rabbit": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_mutton. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_mutton. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_mutton. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" + }, + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": {}, + "2": {} + } + }, + "multiagent_cooking_3_1_beetroot_soup_1_mushroom_stew_1_pumpkin_pie": { + "conversation": "Let's work together to make mushroom_stew, beetroot_soup, pumpkin_pie.", + "agent_count": 3, + "target": { + "mushroom_stew": 1, + "beetroot_soup": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 pumpkin_pie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 pumpkin_pie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 pumpkin_pie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" + }, + "initial_inventory": { + "0": { + "bowl": 2 + }, + "1": { + "egg": 1 + }, + "2": {} + } + }, + "multiagent_cooking_3_1_beetroot_soup_1_cooked_mutton_1_suspicious_stew": { + "conversation": "Let's work together to make suspicious_stew, beetroot_soup, cooked_mutton.", + "agent_count": 3, + "target": { + "suspicious_stew": 1, + "beetroot_soup": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup, 1 cooked_mutton. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup, 1 cooked_mutton. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup, 1 cooked_mutton. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" + }, + "initial_inventory": { + "0": { + "bowl": 2 + }, + "1": { + "dandelion": 1 + }, + "2": { + "coal": 8 + } + } + }, + "multiagent_cooking_3_1_beetroot_soup_1_cooked_porkchop": { + "conversation": "Let's work together to make beetroot_soup, cooked_porkchop.", + "agent_count": 3, + "target": { + "beetroot_soup": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 8 + }, + "2": {} + } + }, + "multiagent_cooking_3_1_cooked_chicken_1_suspicious_stew": { + "conversation": "Let's work together to make cooked_chicken, suspicious_stew.", + "agent_count": 3, + "target": { + "cooked_chicken": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + }, + "initial_inventory": { + "0": { + "coal": 8 + }, + "1": { + "bowl": 1 + }, + "2": { + "dandelion": 1 + } + } + } +} \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_train/4_agent.json b/tasks/cooking_tasks/require_collab_train/4_agent.json new file mode 100644 index 0000000..8aac04d --- /dev/null +++ b/tasks/cooking_tasks/require_collab_train/4_agent.json @@ -0,0 +1,4410 @@ +{ + "multiagent_cooking_4_1_beetroot_soup_1_golden_carrot_1_pumpkin_pie_blocked_access_1_3": { + "conversation": "Let's work together to make golden_carrot, pumpkin_pie, beetroot_soup.", + "agent_count": 4, + "target": { + "golden_carrot": 1, + "pumpkin_pie": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [ + "3", + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie, 1 beetroot_soup. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie, 1 beetroot_soup. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "2": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie, 1 beetroot_soup. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "3": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie, 1 beetroot_soup. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 10, + "blocked_agents_count": 2, + "unique_target_items": 3, + "overall_difficulty_score": 8, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "gold_ingots": 8 + }, + "1": { + "egg": 1 + }, + "2": { + "bowl": 1 + }, + "3": {} + } + }, + "multiagent_cooking_4_1_cooked_chicken_1_cooked_porkchop_1_golden_carrot_1_pumpkin_pie": { + "conversation": "Let's work together to make cooked_porkchop, golden_carrot, cooked_chicken, pumpkin_pie.", + "agent_count": 4, + "target": { + "cooked_porkchop": 1, + "golden_carrot": 1, + "cooked_chicken": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot, 1 cooked_chicken, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot, 1 cooked_chicken, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot, 1 cooked_chicken, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "3": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot, 1 cooked_chicken, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 11, + "blocked_agents_count": 0, + "unique_target_items": 4, + "overall_difficulty_score": 7, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": { + "gold_ingots": 8 + }, + "2": { + "egg": 1 + }, + "3": {} + } + }, + "multiagent_cooking_4_1_cooked_chicken_1_cookie_1_mushroom_stew_1_pumpkin_pie_blocked_access_1_3": { + "conversation": "Let's work together to make pumpkin_pie, cookie, mushroom_stew, cooked_chicken.", + "agent_count": 4, + "target": { + "pumpkin_pie": 1, + "cookie": 1, + "mushroom_stew": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [ + "3", + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 mushroom_stew, 1 cooked_chicken. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 mushroom_stew, 1 cooked_chicken. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 mushroom_stew, 1 cooked_chicken. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 mushroom_stew, 1 cooked_chicken. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 12, + "blocked_agents_count": 2, + "unique_target_items": 4, + "overall_difficulty_score": 9, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "egg": 1 + }, + "1": { + "cocoa_beans": 1 + }, + "2": { + "bowl": 1 + }, + "3": { + "coal": 8 + } + } + }, + "multiagent_cooking_4_1_beetroot_soup_1_cooked_chicken_1_golden_carrot_1_suspicious_stew": { + "conversation": "Let's work together to make golden_carrot, beetroot_soup, cooked_chicken, suspicious_stew.", + "agent_count": 4, + "target": { + "golden_carrot": 1, + "beetroot_soup": 1, + "cooked_chicken": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup, 1 cooked_chicken, 1 suspicious_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup, 1 cooked_chicken, 1 suspicious_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "2": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup, 1 cooked_chicken, 1 suspicious_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "3": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup, 1 cooked_chicken, 1 suspicious_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 11, + "blocked_agents_count": 0, + "unique_target_items": 4, + "overall_difficulty_score": 7, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "gold_ingots": 8 + }, + "1": { + "bowl": 2 + }, + "2": { + "coal": 8 + }, + "3": { + "dandelion": 1 + } + } + }, + "multiagent_cooking_4_1_cooked_chicken_1_cooked_porkchop_1_golden_carrot_1_pumpkin_pie_blocked_access_0_2": { + "conversation": "Let's work together to make pumpkin_pie, cooked_chicken, cooked_porkchop, golden_carrot.", + "agent_count": 4, + "target": { + "pumpkin_pie": 1, + "cooked_chicken": 1, + "cooked_porkchop": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [ + "2", + "0" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken, 1 cooked_porkchop, 1 golden_carrot. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken, 1 cooked_porkchop, 1 golden_carrot. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken, 1 cooked_porkchop, 1 golden_carrot. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken, 1 cooked_porkchop, 1 golden_carrot. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 11, + "blocked_agents_count": 2, + "unique_target_items": 4, + "overall_difficulty_score": 9, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "egg": 1 + }, + "1": { + "coal": 16 + }, + "2": { + "gold_ingots": 8 + }, + "3": {} + } + }, + "multiagent_cooking_4_1_beetroot_soup_1_cookie_1_pumpkin_pie_blocked_access_2_3": { + "conversation": "Let's work together to make pumpkin_pie, cookie, beetroot_soup.", + "agent_count": 4, + "target": { + "pumpkin_pie": 1, + "cookie": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [ + "2", + "3" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 beetroot_soup. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 beetroot_soup. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 beetroot_soup. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 beetroot_soup. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 10, + "blocked_agents_count": 2, + "unique_target_items": 3, + "overall_difficulty_score": 8, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "egg": 1 + }, + "1": { + "cocoa_beans": 1 + }, + "2": { + "bowl": 1 + }, + "3": {} + } + }, + "multiagent_cooking_4_1_cookie_1_mushroom_stew_1_pumpkin_pie_1_suspicious_stew": { + "conversation": "Let's work together to make mushroom_stew, cookie, pumpkin_pie, suspicious_stew.", + "agent_count": 4, + "target": { + "mushroom_stew": 1, + "cookie": 1, + "pumpkin_pie": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cookie, 1 pumpkin_pie, 1 suspicious_stew. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cookie, 1 pumpkin_pie, 1 suspicious_stew. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cookie, 1 pumpkin_pie, 1 suspicious_stew. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 cookie, 1 pumpkin_pie, 1 suspicious_stew. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 13, + "blocked_agents_count": 0, + "unique_target_items": 4, + "overall_difficulty_score": 7, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "bowl": 2 + }, + "1": { + "cocoa_beans": 1 + }, + "2": { + "egg": 1 + }, + "3": { + "dandelion": 1 + } + } + }, + "multiagent_cooking_4_1_cooked_porkchop_1_golden_carrot_1_suspicious_stew_blocked_access_0_1_2_3": { + "conversation": "Let's work together to make golden_carrot, suspicious_stew, cooked_porkchop.", + "agent_count": 4, + "target": { + "golden_carrot": 1, + "suspicious_stew": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1", + "2", + "3" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_porkchop. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_porkchop. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "2": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_porkchop. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "3": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_porkchop. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 8, + "blocked_agents_count": 4, + "unique_target_items": 3, + "overall_difficulty_score": 9, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "gold_ingots": 8 + }, + "1": { + "bowl": 1 + }, + "2": { + "dandelion": 1 + }, + "3": { + "coal": 8 + } + } + }, + "multiagent_cooking_4_1_cooked_mutton_1_mushroom_stew_1_pumpkin_pie_1_suspicious_stew": { + "conversation": "Let's work together to make pumpkin_pie, suspicious_stew, cooked_mutton, mushroom_stew.", + "agent_count": 4, + "target": { + "pumpkin_pie": 1, + "suspicious_stew": 1, + "cooked_mutton": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew, 1 cooked_mutton, 1 mushroom_stew. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew, 1 cooked_mutton, 1 mushroom_stew. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew, 1 cooked_mutton, 1 mushroom_stew. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew, 1 cooked_mutton, 1 mushroom_stew. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 12, + "blocked_agents_count": 0, + "unique_target_items": 4, + "overall_difficulty_score": 7, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "egg": 1 + }, + "1": { + "bowl": 2 + }, + "2": { + "dandelion": 1 + }, + "3": { + "coal": 8 + } + } + }, + "multiagent_cooking_4_1_beetroot_soup_1_cooked_chicken_1_mushroom_stew_1_pumpkin_pie_blocked_access_2_3": { + "conversation": "Let's work together to make mushroom_stew, cooked_chicken, beetroot_soup, pumpkin_pie.", + "agent_count": 4, + "target": { + "mushroom_stew": 1, + "cooked_chicken": 1, + "beetroot_soup": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [ + "3", + "2" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken, 1 beetroot_soup, 1 pumpkin_pie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken, 1 beetroot_soup, 1 pumpkin_pie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken, 1 beetroot_soup, 1 pumpkin_pie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken, 1 beetroot_soup, 1 pumpkin_pie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 12, + "blocked_agents_count": 2, + "unique_target_items": 4, + "overall_difficulty_score": 9, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "bowl": 2 + }, + "1": { + "coal": 8 + }, + "2": { + "egg": 1 + }, + "3": {} + } + }, + "multiagent_cooking_4_1_cooked_chicken_1_cooked_porkchop_1_golden_carrot_1_suspicious_stew": { + "conversation": "Let's work together to make cooked_chicken, cooked_porkchop, golden_carrot, suspicious_stew.", + "agent_count": 4, + "target": { + "cooked_chicken": 1, + "cooked_porkchop": 1, + "golden_carrot": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop, 1 golden_carrot, 1 suspicious_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop, 1 golden_carrot, 1 suspicious_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop, 1 golden_carrot, 1 suspicious_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop, 1 golden_carrot, 1 suspicious_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 10, + "blocked_agents_count": 0, + "unique_target_items": 4, + "overall_difficulty_score": 7, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": { + "gold_ingots": 8 + }, + "2": { + "bowl": 1 + }, + "3": { + "dandelion": 1 + } + } + }, + "multiagent_cooking_4_1_cooked_porkchop_1_cookie_1_suspicious_stew": { + "conversation": "Let's work together to make cookie, cooked_porkchop, suspicious_stew.", + "agent_count": 4, + "target": { + "cookie": 1, + "cooked_porkchop": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop, 1 suspicious_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop, 1 suspicious_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "2": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop, 1 suspicious_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "3": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop, 1 suspicious_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 8, + "blocked_agents_count": 0, + "unique_target_items": 3, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "cocoa_beans": 1 + }, + "1": { + "coal": 8 + }, + "2": { + "bowl": 1 + }, + "3": { + "dandelion": 1 + } + } + }, + "multiagent_cooking_4_1_cooked_mutton_1_cookie_1_suspicious_stew": { + "conversation": "Let's work together to make suspicious_stew, cooked_mutton, cookie.", + "agent_count": 4, + "target": { + "suspicious_stew": 1, + "cooked_mutton": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton, 1 cookie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton, 1 cookie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton, 1 cookie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton, 1 cookie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 8, + "blocked_agents_count": 0, + "unique_target_items": 3, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "dandelion": 1 + }, + "2": { + "coal": 8 + }, + "3": { + "cocoa_beans": 1 + } + } + }, + "multiagent_cooking_4_1_cooked_mutton_1_cooked_porkchop_1_suspicious_stew_blocked_access_1_3": { + "conversation": "Let's work together to make suspicious_stew, cooked_porkchop, cooked_mutton.", + "agent_count": 4, + "target": { + "suspicious_stew": 1, + "cooked_porkchop": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [ + "3", + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop, 1 cooked_mutton. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop, 1 cooked_mutton. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop, 1 cooked_mutton. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop, 1 cooked_mutton. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 7, + "blocked_agents_count": 2, + "unique_target_items": 3, + "overall_difficulty_score": 7, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "dandelion": 1 + }, + "2": { + "coal": 16 + }, + "3": {} + } + }, + "multiagent_cooking_4_1_cooked_chicken_1_cooked_mutton_1_cooked_rabbit_1_cookie": { + "conversation": "Let's work together to make cooked_chicken, cooked_mutton, cookie, cooked_rabbit.", + "agent_count": 4, + "target": { + "cooked_chicken": 1, + "cooked_mutton": 1, + "cookie": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_mutton, 1 cookie, 1 cooked_rabbit. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_mutton, 1 cookie, 1 cooked_rabbit. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_mutton, 1 cookie, 1 cooked_rabbit. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_mutton, 1 cookie, 1 cooked_rabbit. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 9, + "blocked_agents_count": 0, + "unique_target_items": 4, + "overall_difficulty_score": 7, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 24 + }, + "1": { + "cocoa_beans": 1 + }, + "2": {}, + "3": {} + } + }, + "multiagent_cooking_4_1_beetroot_soup_1_cooked_porkchop_1_pumpkin_pie_1_suspicious_stew_blocked_access_0_1": { + "conversation": "Let's work together to make suspicious_stew, cooked_porkchop, pumpkin_pie, beetroot_soup.", + "agent_count": 4, + "target": { + "suspicious_stew": 1, + "cooked_porkchop": 1, + "pumpkin_pie": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [ + "1", + "0" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop, 1 pumpkin_pie, 1 beetroot_soup. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop, 1 pumpkin_pie, 1 beetroot_soup. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop, 1 pumpkin_pie, 1 beetroot_soup. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop, 1 pumpkin_pie, 1 beetroot_soup. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 12, + "blocked_agents_count": 2, + "unique_target_items": 4, + "overall_difficulty_score": 9, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "bowl": 2 + }, + "1": { + "dandelion": 1 + }, + "2": { + "coal": 8 + }, + "3": { + "egg": 1 + } + } + }, + "multiagent_cooking_4_1_beetroot_soup_1_cookie_1_golden_carrot_1_pumpkin_pie": { + "conversation": "Let's work together to make golden_carrot, beetroot_soup, pumpkin_pie, cookie.", + "agent_count": 4, + "target": { + "golden_carrot": 1, + "beetroot_soup": 1, + "pumpkin_pie": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup, 1 pumpkin_pie, 1 cookie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup, 1 pumpkin_pie, 1 cookie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "2": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup, 1 pumpkin_pie, 1 cookie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "3": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup, 1 pumpkin_pie, 1 cookie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 13, + "blocked_agents_count": 0, + "unique_target_items": 4, + "overall_difficulty_score": 7, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "gold_ingots": 8 + }, + "1": { + "bowl": 1 + }, + "2": { + "egg": 1 + }, + "3": { + "cocoa_beans": 1 + } + } + }, + "multiagent_cooking_4_1_cooked_mutton_1_cookie_1_pumpkin_pie_1_suspicious_stew": { + "conversation": "Let's work together to make cooked_mutton, suspicious_stew, cookie, pumpkin_pie.", + "agent_count": 4, + "target": { + "cooked_mutton": 1, + "suspicious_stew": 1, + "cookie": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 suspicious_stew, 1 cookie, 1 pumpkin_pie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 suspicious_stew, 1 cookie, 1 pumpkin_pie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 suspicious_stew, 1 cookie, 1 pumpkin_pie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "3": "Collaborate with agents around you to make 1 cooked_mutton, 1 suspicious_stew, 1 cookie, 1 pumpkin_pie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 12, + "blocked_agents_count": 0, + "unique_target_items": 4, + "overall_difficulty_score": 7, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 8, + "egg": 1 + }, + "1": { + "bowl": 1 + }, + "2": { + "dandelion": 1 + }, + "3": { + "cocoa_beans": 1 + } + } + }, + "multiagent_cooking_4_1_cooked_rabbit_1_golden_carrot_1_mushroom_stew": { + "conversation": "Let's work together to make golden_carrot, mushroom_stew, cooked_rabbit.", + "agent_count": 4, + "target": { + "golden_carrot": 1, + "mushroom_stew": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew, 1 cooked_rabbit. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew, 1 cooked_rabbit. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "2": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew, 1 cooked_rabbit. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "3": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew, 1 cooked_rabbit. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 8, + "blocked_agents_count": 0, + "unique_target_items": 3, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "gold_ingots": 8 + }, + "1": { + "bowl": 1 + }, + "2": { + "coal": 8 + }, + "3": {} + } + }, + "multiagent_cooking_4_1_cooked_chicken_1_mushroom_stew_1_suspicious_stew_blocked_access_0_3": { + "conversation": "Let's work together to make cooked_chicken, mushroom_stew, suspicious_stew.", + "agent_count": 4, + "target": { + "cooked_chicken": 1, + "mushroom_stew": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [ + "3", + "0" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 mushroom_stew, 1 suspicious_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 mushroom_stew, 1 suspicious_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 mushroom_stew, 1 suspicious_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 mushroom_stew, 1 suspicious_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 8, + "blocked_agents_count": 2, + "unique_target_items": 3, + "overall_difficulty_score": 7, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 8 + }, + "1": { + "bowl": 2 + }, + "2": { + "dandelion": 1 + }, + "3": {} + } + }, + "multiagent_cooking_4_1_cooked_chicken_1_cookie_1_pumpkin_pie": { + "conversation": "Let's work together to make pumpkin_pie, cooked_chicken, cookie.", + "agent_count": 4, + "target": { + "pumpkin_pie": 1, + "cooked_chicken": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken, 1 cookie. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken, 1 cookie. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken, 1 cookie. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken, 1 cookie. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 9, + "blocked_agents_count": 0, + "unique_target_items": 3, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "egg": 1 + }, + "1": { + "coal": 8 + }, + "2": { + "cocoa_beans": 1 + }, + "3": {} + } + }, + "multiagent_cooking_4_1_cooked_chicken_1_cooked_mutton_1_cookie_1_golden_carrot": { + "conversation": "Let's work together to make cooked_mutton, golden_carrot, cooked_chicken, cookie.", + "agent_count": 4, + "target": { + "cooked_mutton": 1, + "golden_carrot": 1, + "cooked_chicken": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 golden_carrot, 1 cooked_chicken, 1 cookie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 golden_carrot, 1 cooked_chicken, 1 cookie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 golden_carrot, 1 cooked_chicken, 1 cookie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "3": "Collaborate with agents around you to make 1 cooked_mutton, 1 golden_carrot, 1 cooked_chicken, 1 cookie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 10, + "blocked_agents_count": 0, + "unique_target_items": 4, + "overall_difficulty_score": 7, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": { + "gold_ingots": 8 + }, + "2": { + "cocoa_beans": 1 + }, + "3": {} + } + }, + "multiagent_cooking_4_1_cooked_mutton_1_cooked_porkchop_1_suspicious_stew_blocked_access_0_3": { + "conversation": "Let's work together to make cooked_porkchop, suspicious_stew, cooked_mutton.", + "agent_count": 4, + "target": { + "cooked_porkchop": 1, + "suspicious_stew": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [ + "0", + "3" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 cooked_mutton. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 cooked_mutton. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 cooked_mutton. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "3": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 cooked_mutton. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 7, + "blocked_agents_count": 2, + "unique_target_items": 3, + "overall_difficulty_score": 7, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": { + "bowl": 1 + }, + "2": { + "dandelion": 1 + }, + "3": {} + } + }, + "multiagent_cooking_4_1_beetroot_soup_1_cooked_rabbit_1_golden_carrot_1_mushroom_stew_blocked_access_0_3": { + "conversation": "Let's work together to make mushroom_stew, cooked_rabbit, beetroot_soup, golden_carrot.", + "agent_count": 4, + "target": { + "mushroom_stew": 1, + "cooked_rabbit": 1, + "beetroot_soup": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [ + "3", + "0" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_rabbit, 1 beetroot_soup, 1 golden_carrot. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_rabbit, 1 beetroot_soup, 1 golden_carrot. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_rabbit, 1 beetroot_soup, 1 golden_carrot. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_rabbit, 1 beetroot_soup, 1 golden_carrot. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 11, + "blocked_agents_count": 2, + "unique_target_items": 4, + "overall_difficulty_score": 9, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "bowl": 2 + }, + "1": { + "coal": 8 + }, + "2": { + "gold_ingots": 8 + }, + "3": {} + } + }, + "multiagent_cooking_4_1_cooked_porkchop_1_cooked_rabbit_1_cookie_1_pumpkin_pie": { + "conversation": "Let's work together to make cookie, cooked_rabbit, cooked_porkchop, pumpkin_pie.", + "agent_count": 4, + "target": { + "cookie": 1, + "cooked_rabbit": 1, + "cooked_porkchop": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit, 1 cooked_porkchop, 1 pumpkin_pie. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit, 1 cooked_porkchop, 1 pumpkin_pie. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "2": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit, 1 cooked_porkchop, 1 pumpkin_pie. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "3": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit, 1 cooked_porkchop, 1 pumpkin_pie. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 11, + "blocked_agents_count": 0, + "unique_target_items": 4, + "overall_difficulty_score": 7, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "cocoa_beans": 1 + }, + "1": { + "coal": 16 + }, + "2": { + "egg": 1 + }, + "3": {} + } + }, + "multiagent_cooking_4_1_cooked_chicken_1_cooked_porkchop_1_cooked_rabbit_1_suspicious_stew": { + "conversation": "Let's work together to make cooked_rabbit, cooked_porkchop, cooked_chicken, suspicious_stew.", + "agent_count": 4, + "target": { + "cooked_rabbit": 1, + "cooked_porkchop": 1, + "cooked_chicken": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 cooked_chicken, 1 suspicious_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 cooked_chicken, 1 suspicious_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 cooked_chicken, 1 suspicious_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "3": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 cooked_chicken, 1 suspicious_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 9, + "blocked_agents_count": 0, + "unique_target_items": 4, + "overall_difficulty_score": 7, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 24 + }, + "1": { + "bowl": 1 + }, + "2": { + "dandelion": 1 + }, + "3": {} + } + }, + "multiagent_cooking_4_1_cooked_porkchop_1_golden_carrot_1_mushroom_stew_1_suspicious_stew": { + "conversation": "Let's work together to make cooked_porkchop, suspicious_stew, mushroom_stew, golden_carrot.", + "agent_count": 4, + "target": { + "cooked_porkchop": 1, + "suspicious_stew": 1, + "mushroom_stew": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 mushroom_stew, 1 golden_carrot. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 mushroom_stew, 1 golden_carrot. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 mushroom_stew, 1 golden_carrot. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "3": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 mushroom_stew, 1 golden_carrot. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 11, + "blocked_agents_count": 0, + "unique_target_items": 4, + "overall_difficulty_score": 7, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 8 + }, + "1": { + "bowl": 2 + }, + "2": { + "dandelion": 1 + }, + "3": { + "gold_ingots": 8 + } + } + }, + "multiagent_cooking_4_1_cookie_1_mushroom_stew_1_suspicious_stew_blocked_access_0_1_2_3": { + "conversation": "Let's work together to make cookie, mushroom_stew, suspicious_stew.", + "agent_count": 4, + "target": { + "cookie": 1, + "mushroom_stew": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1", + "2", + "3" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew, 1 suspicious_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew, 1 suspicious_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "2": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew, 1 suspicious_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "3": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew, 1 suspicious_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 9, + "blocked_agents_count": 4, + "unique_target_items": 3, + "overall_difficulty_score": 10, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "cocoa_beans": 1 + }, + "1": { + "bowl": 2 + }, + "2": { + "dandelion": 1 + }, + "3": {} + } + }, + "multiagent_cooking_4_1_cooked_mutton_1_golden_carrot_1_mushroom_stew_1_pumpkin_pie_blocked_access_0_1_2_3": { + "conversation": "Let's work together to make mushroom_stew, golden_carrot, cooked_mutton, pumpkin_pie.", + "agent_count": 4, + "target": { + "mushroom_stew": 1, + "golden_carrot": 1, + "cooked_mutton": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1", + "2", + "3" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 cooked_mutton, 1 pumpkin_pie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 cooked_mutton, 1 pumpkin_pie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 cooked_mutton, 1 pumpkin_pie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 cooked_mutton, 1 pumpkin_pie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 12, + "blocked_agents_count": 4, + "unique_target_items": 4, + "overall_difficulty_score": 11, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "gold_ingots": 8 + }, + "2": { + "coal": 8 + }, + "3": { + "egg": 1 + } + } + }, + "multiagent_cooking_4_1_cooked_mutton_1_cooked_rabbit_1_mushroom_stew_1_suspicious_stew": { + "conversation": "Let's work together to make mushroom_stew, suspicious_stew, cooked_mutton, cooked_rabbit.", + "agent_count": 4, + "target": { + "mushroom_stew": 1, + "suspicious_stew": 1, + "cooked_mutton": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 cooked_mutton, 1 cooked_rabbit. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 cooked_mutton, 1 cooked_rabbit. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 cooked_mutton, 1 cooked_rabbit. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 cooked_mutton, 1 cooked_rabbit. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 10, + "blocked_agents_count": 0, + "unique_target_items": 4, + "overall_difficulty_score": 7, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "bowl": 2 + }, + "1": { + "dandelion": 1 + }, + "2": { + "coal": 16 + }, + "3": {} + } + }, + "multiagent_cooking_4_1_beetroot_soup_1_cooked_chicken_1_cooked_porkchop_1_cookie": { + "conversation": "Let's work together to make beetroot_soup, cookie, cooked_porkchop, cooked_chicken.", + "agent_count": 4, + "target": { + "beetroot_soup": 1, + "cookie": 1, + "cooked_porkchop": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie, 1 cooked_porkchop, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie, 1 cooked_porkchop, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie, 1 cooked_porkchop, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "3": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie, 1 cooked_porkchop, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 10, + "blocked_agents_count": 0, + "unique_target_items": 4, + "overall_difficulty_score": 7, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "cocoa_beans": 1 + }, + "2": { + "coal": 16 + }, + "3": {} + } + }, + "multiagent_cooking_4_1_cooked_mutton_1_cooked_porkchop_1_golden_carrot_1_pumpkin_pie_blocked_access_0_3": { + "conversation": "Let's work together to make golden_carrot, pumpkin_pie, cooked_porkchop, cooked_mutton.", + "agent_count": 4, + "target": { + "golden_carrot": 1, + "pumpkin_pie": 1, + "cooked_porkchop": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [ + "3", + "0" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie, 1 cooked_porkchop, 1 cooked_mutton. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie, 1 cooked_porkchop, 1 cooked_mutton. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "2": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie, 1 cooked_porkchop, 1 cooked_mutton. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "3": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie, 1 cooked_porkchop, 1 cooked_mutton. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 11, + "blocked_agents_count": 2, + "unique_target_items": 4, + "overall_difficulty_score": 9, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "gold_ingots": 8 + }, + "1": { + "egg": 1 + }, + "2": { + "coal": 16 + }, + "3": {} + } + }, + "multiagent_cooking_4_1_cooked_rabbit_1_cookie_1_golden_carrot_1_mushroom_stew": { + "conversation": "Let's work together to make cooked_rabbit, cookie, golden_carrot, mushroom_stew.", + "agent_count": 4, + "target": { + "cooked_rabbit": 1, + "cookie": 1, + "golden_carrot": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cookie, 1 golden_carrot, 1 mushroom_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cookie, 1 golden_carrot, 1 mushroom_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cookie, 1 golden_carrot, 1 mushroom_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "3": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cookie, 1 golden_carrot, 1 mushroom_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 11, + "blocked_agents_count": 0, + "unique_target_items": 4, + "overall_difficulty_score": 7, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 8 + }, + "1": { + "cocoa_beans": 1 + }, + "2": { + "gold_ingots": 8 + }, + "3": { + "bowl": 1 + } + } + }, + "multiagent_cooking_4_1_cooked_mutton_1_cookie_1_golden_carrot_1_pumpkin_pie_blocked_access_1_3": { + "conversation": "Let's work together to make pumpkin_pie, cookie, golden_carrot, cooked_mutton.", + "agent_count": 4, + "target": { + "pumpkin_pie": 1, + "cookie": 1, + "golden_carrot": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [ + "3", + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 golden_carrot, 1 cooked_mutton. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 golden_carrot, 1 cooked_mutton. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 golden_carrot, 1 cooked_mutton. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 golden_carrot, 1 cooked_mutton. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 12, + "blocked_agents_count": 2, + "unique_target_items": 4, + "overall_difficulty_score": 9, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "egg": 1 + }, + "1": { + "cocoa_beans": 1 + }, + "2": { + "gold_ingots": 8 + }, + "3": { + "coal": 8 + } + } + }, + "multiagent_cooking_4_1_beetroot_soup_1_cooked_mutton_1_cooked_rabbit_blocked_access_1_3": { + "conversation": "Let's work together to make cooked_mutton, beetroot_soup, cooked_rabbit.", + "agent_count": 4, + "target": { + "cooked_mutton": 1, + "beetroot_soup": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [ + "3", + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup, 1 cooked_rabbit. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup, 1 cooked_rabbit. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup, 1 cooked_rabbit. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "3": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup, 1 cooked_rabbit. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 7, + "blocked_agents_count": 2, + "unique_target_items": 3, + "overall_difficulty_score": 7, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": { + "bowl": 1 + }, + "2": {}, + "3": {} + } + }, + "multiagent_cooking_4_1_cooked_chicken_1_cooked_porkchop_1_pumpkin_pie_1_suspicious_stew_blocked_access_1_3": { + "conversation": "Let's work together to make suspicious_stew, cooked_chicken, cooked_porkchop, pumpkin_pie.", + "agent_count": 4, + "target": { + "suspicious_stew": 1, + "cooked_chicken": 1, + "cooked_porkchop": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [ + "1", + "3" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_porkchop, 1 pumpkin_pie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_porkchop, 1 pumpkin_pie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_porkchop, 1 pumpkin_pie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_porkchop, 1 pumpkin_pie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 11, + "blocked_agents_count": 2, + "unique_target_items": 4, + "overall_difficulty_score": 9, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "dandelion": 1 + }, + "2": { + "coal": 16 + }, + "3": { + "egg": 1 + } + } + }, + "multiagent_cooking_4_1_cooked_chicken_1_cooked_porkchop_1_mushroom_stew_1_suspicious_stew_blocked_access_0_1_2_3": { + "conversation": "Let's work together to make cooked_porkchop, cooked_chicken, suspicious_stew, mushroom_stew.", + "agent_count": 4, + "target": { + "cooked_porkchop": 1, + "cooked_chicken": 1, + "suspicious_stew": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1", + "2", + "3" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 suspicious_stew, 1 mushroom_stew. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 suspicious_stew, 1 mushroom_stew. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 suspicious_stew, 1 mushroom_stew. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "3": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 suspicious_stew, 1 mushroom_stew. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 10, + "blocked_agents_count": 4, + "unique_target_items": 4, + "overall_difficulty_score": 11, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": { + "bowl": 2 + }, + "2": { + "dandelion": 1 + }, + "3": {} + } + }, + "multiagent_cooking_4_1_cooked_porkchop_1_golden_carrot_1_suspicious_stew_blocked_access_2_3": { + "conversation": "Let's work together to make golden_carrot, suspicious_stew, cooked_porkchop.", + "agent_count": 4, + "target": { + "golden_carrot": 1, + "suspicious_stew": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [ + "3", + "2" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_porkchop. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_porkchop. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "2": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_porkchop. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "3": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_porkchop. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 8, + "blocked_agents_count": 2, + "unique_target_items": 3, + "overall_difficulty_score": 7, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "gold_ingots": 8 + }, + "1": { + "bowl": 1 + }, + "2": { + "dandelion": 1 + }, + "3": { + "coal": 8 + } + } + }, + "multiagent_cooking_4_1_cooked_mutton_1_cooked_rabbit_1_cookie": { + "conversation": "Let's work together to make cookie, cooked_rabbit, cooked_mutton.", + "agent_count": 4, + "target": { + "cookie": 1, + "cooked_rabbit": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit, 1 cooked_mutton. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit, 1 cooked_mutton. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "2": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit, 1 cooked_mutton. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "3": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit, 1 cooked_mutton. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 7, + "blocked_agents_count": 0, + "unique_target_items": 3, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "cocoa_beans": 1 + }, + "1": { + "coal": 16 + }, + "2": {}, + "3": {} + } + }, + "multiagent_cooking_4_1_cookie_1_pumpkin_pie_1_suspicious_stew": { + "conversation": "Let's work together to make cookie, pumpkin_pie, suspicious_stew.", + "agent_count": 4, + "target": { + "cookie": 1, + "pumpkin_pie": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 pumpkin_pie, 1 suspicious_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 cookie, 1 pumpkin_pie, 1 suspicious_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "2": "Collaborate with agents around you to make 1 cookie, 1 pumpkin_pie, 1 suspicious_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "3": "Collaborate with agents around you to make 1 cookie, 1 pumpkin_pie, 1 suspicious_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 10, + "blocked_agents_count": 0, + "unique_target_items": 3, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "cocoa_beans": 1 + }, + "1": { + "egg": 1 + }, + "2": { + "bowl": 1 + }, + "3": { + "dandelion": 1 + } + } + }, + "multiagent_cooking_4_1_cookie_1_golden_carrot_1_pumpkin_pie_blocked_access_0_1_2_3": { + "conversation": "Let's work together to make cookie, golden_carrot, pumpkin_pie.", + "agent_count": 4, + "target": { + "cookie": 1, + "golden_carrot": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1", + "2", + "3" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 golden_carrot, 1 pumpkin_pie. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "1": "Collaborate with agents around you to make 1 cookie, 1 golden_carrot, 1 pumpkin_pie. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "2": "Collaborate with agents around you to make 1 cookie, 1 golden_carrot, 1 pumpkin_pie. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "3": "Collaborate with agents around you to make 1 cookie, 1 golden_carrot, 1 pumpkin_pie. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 10, + "blocked_agents_count": 4, + "unique_target_items": 3, + "overall_difficulty_score": 10, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "cocoa_beans": 1 + }, + "1": { + "gold_ingots": 8 + }, + "2": { + "egg": 1 + }, + "3": {} + } + }, + "multiagent_cooking_4_1_cooked_chicken_1_cooked_porkchop_1_suspicious_stew_blocked_access_0_1_2_3": { + "conversation": "Let's work together to make suspicious_stew, cooked_chicken, cooked_porkchop.", + "agent_count": 4, + "target": { + "suspicious_stew": 1, + "cooked_chicken": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1", + "2", + "3" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_porkchop. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_porkchop. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_porkchop. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_porkchop. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 7, + "blocked_agents_count": 4, + "unique_target_items": 3, + "overall_difficulty_score": 9, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "dandelion": 1 + }, + "2": { + "coal": 16 + }, + "3": {} + } + }, + "multiagent_cooking_4_1_beetroot_soup_1_cooked_chicken_1_golden_carrot_blocked_access_2_3": { + "conversation": "Let's work together to make golden_carrot, cooked_chicken, beetroot_soup.", + "agent_count": 4, + "target": { + "golden_carrot": 1, + "cooked_chicken": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [ + "3", + "2" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_chicken, 1 beetroot_soup. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_chicken, 1 beetroot_soup. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "2": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_chicken, 1 beetroot_soup. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "3": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_chicken, 1 beetroot_soup. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 8, + "blocked_agents_count": 2, + "unique_target_items": 3, + "overall_difficulty_score": 7, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "gold_ingots": 8 + }, + "1": { + "coal": 8 + }, + "2": { + "bowl": 1 + }, + "3": {} + } + }, + "multiagent_cooking_4_1_beetroot_soup_1_cooked_chicken_1_cooked_mutton_1_cooked_porkchop_blocked_access_0_2": { + "conversation": "Let's work together to make beetroot_soup, cooked_mutton, cooked_chicken, cooked_porkchop.", + "agent_count": 4, + "target": { + "beetroot_soup": 1, + "cooked_mutton": 1, + "cooked_chicken": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [ + "0", + "2" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 cooked_chicken, 1 cooked_porkchop. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 cooked_chicken, 1 cooked_porkchop. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 cooked_chicken, 1 cooked_porkchop. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "3": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 cooked_chicken, 1 cooked_porkchop. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 9, + "blocked_agents_count": 2, + "unique_target_items": 4, + "overall_difficulty_score": 9, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 24 + }, + "2": {}, + "3": {} + } + }, + "multiagent_cooking_4_1_cooked_mutton_1_mushroom_stew_1_pumpkin_pie_blocked_access_0_1_2_3": { + "conversation": "Let's work together to make mushroom_stew, cooked_mutton, pumpkin_pie.", + "agent_count": 4, + "target": { + "mushroom_stew": 1, + "cooked_mutton": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1", + "2", + "3" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 pumpkin_pie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 pumpkin_pie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 pumpkin_pie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 pumpkin_pie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 9, + "blocked_agents_count": 4, + "unique_target_items": 3, + "overall_difficulty_score": 10, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 8 + }, + "2": { + "egg": 1 + }, + "3": {} + } + }, + "multiagent_cooking_4_1_beetroot_soup_1_cooked_mutton_1_cooked_rabbit_1_golden_carrot": { + "conversation": "Let's work together to make cooked_rabbit, beetroot_soup, cooked_mutton, golden_carrot.", + "agent_count": 4, + "target": { + "cooked_rabbit": 1, + "beetroot_soup": 1, + "cooked_mutton": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup, 1 cooked_mutton, 1 golden_carrot. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup, 1 cooked_mutton, 1 golden_carrot. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup, 1 cooked_mutton, 1 golden_carrot. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "3": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup, 1 cooked_mutton, 1 golden_carrot. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 10, + "blocked_agents_count": 0, + "unique_target_items": 4, + "overall_difficulty_score": 7, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": { + "bowl": 1 + }, + "2": { + "gold_ingots": 8 + }, + "3": {} + } + }, + "multiagent_cooking_4_1_cooked_rabbit_1_mushroom_stew_1_pumpkin_pie_1_suspicious_stew_blocked_access_0_1_2_3": { + "conversation": "Let's work together to make pumpkin_pie, cooked_rabbit, suspicious_stew, mushroom_stew.", + "agent_count": 4, + "target": { + "pumpkin_pie": 1, + "cooked_rabbit": 1, + "suspicious_stew": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1", + "2", + "3" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_rabbit, 1 suspicious_stew, 1 mushroom_stew. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_rabbit, 1 suspicious_stew, 1 mushroom_stew. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_rabbit, 1 suspicious_stew, 1 mushroom_stew. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_rabbit, 1 suspicious_stew, 1 mushroom_stew. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 12, + "blocked_agents_count": 4, + "unique_target_items": 4, + "overall_difficulty_score": 11, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "egg": 1 + }, + "1": { + "coal": 8 + }, + "2": { + "bowl": 2 + }, + "3": { + "dandelion": 1 + } + } + }, + "multiagent_cooking_4_1_cooked_chicken_1_cooked_rabbit_1_suspicious_stew": { + "conversation": "Let's work together to make suspicious_stew, cooked_chicken, cooked_rabbit.", + "agent_count": 4, + "target": { + "suspicious_stew": 1, + "cooked_chicken": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_rabbit. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_rabbit. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_rabbit. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_rabbit. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 7, + "blocked_agents_count": 0, + "unique_target_items": 3, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "dandelion": 1 + }, + "2": { + "coal": 16 + }, + "3": {} + } + }, + "multiagent_cooking_4_1_beetroot_soup_1_cooked_mutton_1_cookie_1_suspicious_stew_blocked_access_1_3": { + "conversation": "Let's work together to make cookie, beetroot_soup, cooked_mutton, suspicious_stew.", + "agent_count": 4, + "target": { + "cookie": 1, + "beetroot_soup": 1, + "cooked_mutton": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [ + "1", + "3" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 beetroot_soup, 1 cooked_mutton, 1 suspicious_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 cookie, 1 beetroot_soup, 1 cooked_mutton, 1 suspicious_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "2": "Collaborate with agents around you to make 1 cookie, 1 beetroot_soup, 1 cooked_mutton, 1 suspicious_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "3": "Collaborate with agents around you to make 1 cookie, 1 beetroot_soup, 1 cooked_mutton, 1 suspicious_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 11, + "blocked_agents_count": 2, + "unique_target_items": 4, + "overall_difficulty_score": 9, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "cocoa_beans": 1 + }, + "1": { + "bowl": 2 + }, + "2": { + "coal": 8 + }, + "3": { + "dandelion": 1 + } + } + }, + "multiagent_cooking_4_1_cooked_chicken_1_cooked_porkchop_1_cookie_1_golden_carrot_blocked_access_2_3": { + "conversation": "Let's work together to make golden_carrot, cooked_chicken, cookie, cooked_porkchop.", + "agent_count": 4, + "target": { + "golden_carrot": 1, + "cooked_chicken": 1, + "cookie": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [ + "2", + "3" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_chicken, 1 cookie, 1 cooked_porkchop. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_chicken, 1 cookie, 1 cooked_porkchop. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "2": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_chicken, 1 cookie, 1 cooked_porkchop. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "3": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_chicken, 1 cookie, 1 cooked_porkchop. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 10, + "blocked_agents_count": 2, + "unique_target_items": 4, + "overall_difficulty_score": 9, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "gold_ingots": 8 + }, + "1": { + "coal": 16 + }, + "2": { + "cocoa_beans": 1 + }, + "3": {} + } + }, + "multiagent_cooking_4_1_cooked_chicken_1_cooked_mutton_1_cooked_rabbit_blocked_access_1_3": { + "conversation": "Let's work together to make cooked_chicken, cooked_mutton, cooked_rabbit.", + "agent_count": 4, + "target": { + "cooked_chicken": 1, + "cooked_mutton": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [ + "1", + "3" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_mutton, 1 cooked_rabbit. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_mutton, 1 cooked_rabbit. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_mutton, 1 cooked_rabbit. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_mutton, 1 cooked_rabbit. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 6, + "blocked_agents_count": 2, + "unique_target_items": 3, + "overall_difficulty_score": 7, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 24 + }, + "1": {}, + "2": {}, + "3": {} + } + }, + "multiagent_cooking_4_1_cooked_chicken_1_cooked_porkchop_1_golden_carrot_blocked_access_2_3": { + "conversation": "Let's work together to make cooked_porkchop, cooked_chicken, golden_carrot.", + "agent_count": 4, + "target": { + "cooked_porkchop": 1, + "cooked_chicken": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [ + "2", + "3" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 golden_carrot. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 golden_carrot. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 golden_carrot. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "3": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 golden_carrot. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 7, + "blocked_agents_count": 2, + "unique_target_items": 3, + "overall_difficulty_score": 7, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": { + "gold_ingots": 8 + }, + "2": {}, + "3": {} + } + }, + "multiagent_cooking_4_1_beetroot_soup_1_cooked_mutton_1_cooked_porkchop_1_golden_carrot": { + "conversation": "Let's work together to make cooked_mutton, golden_carrot, cooked_porkchop, beetroot_soup.", + "agent_count": 4, + "target": { + "cooked_mutton": 1, + "golden_carrot": 1, + "cooked_porkchop": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 golden_carrot, 1 cooked_porkchop, 1 beetroot_soup. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 golden_carrot, 1 cooked_porkchop, 1 beetroot_soup. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 golden_carrot, 1 cooked_porkchop, 1 beetroot_soup. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "3": "Collaborate with agents around you to make 1 cooked_mutton, 1 golden_carrot, 1 cooked_porkchop, 1 beetroot_soup. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 10, + "blocked_agents_count": 0, + "unique_target_items": 4, + "overall_difficulty_score": 7, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": { + "gold_ingots": 8 + }, + "2": { + "bowl": 1 + }, + "3": {} + } + }, + "multiagent_cooking_4_1_cooked_mutton_1_cooked_porkchop_1_suspicious_stew_blocked_access_0_1": { + "conversation": "Let's work together to make cooked_mutton, cooked_porkchop, suspicious_stew.", + "agent_count": 4, + "target": { + "cooked_mutton": 1, + "cooked_porkchop": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [ + "1", + "0" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 suspicious_stew. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 suspicious_stew. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 suspicious_stew. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "3": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 suspicious_stew. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 7, + "blocked_agents_count": 2, + "unique_target_items": 3, + "overall_difficulty_score": 7, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": { + "bowl": 1 + }, + "2": { + "dandelion": 1 + }, + "3": {} + } + }, + "multiagent_cooking_4_1_beetroot_soup_1_cooked_rabbit_1_golden_carrot_blocked_access_1_2": { + "conversation": "Let's work together to make beetroot_soup, golden_carrot, cooked_rabbit.", + "agent_count": 4, + "target": { + "beetroot_soup": 1, + "golden_carrot": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [ + "1", + "2" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 golden_carrot, 1 cooked_rabbit. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 golden_carrot, 1 cooked_rabbit. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 golden_carrot, 1 cooked_rabbit. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "3": "Collaborate with agents around you to make 1 beetroot_soup, 1 golden_carrot, 1 cooked_rabbit. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 8, + "blocked_agents_count": 2, + "unique_target_items": 3, + "overall_difficulty_score": 7, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "gold_ingots": 8 + }, + "2": { + "coal": 8 + }, + "3": {} + } + }, + "multiagent_cooking_4_1_beetroot_soup_1_mushroom_stew_1_pumpkin_pie_1_suspicious_stew_blocked_access_0_1_2_3": { + "conversation": "Let's work together to make mushroom_stew, beetroot_soup, pumpkin_pie, suspicious_stew.", + "agent_count": 4, + "target": { + "mushroom_stew": 1, + "beetroot_soup": 1, + "pumpkin_pie": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1", + "2", + "3" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 pumpkin_pie, 1 suspicious_stew. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 pumpkin_pie, 1 suspicious_stew. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 pumpkin_pie, 1 suspicious_stew. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 pumpkin_pie, 1 suspicious_stew. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 13, + "blocked_agents_count": 4, + "unique_target_items": 4, + "overall_difficulty_score": 11, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "bowl": 3 + }, + "1": { + "egg": 1 + }, + "2": { + "dandelion": 1 + }, + "3": {} + } + }, + "multiagent_cooking_4_1_beetroot_soup_1_cooked_rabbit_1_cookie_1_pumpkin_pie_blocked_access_0_2": { + "conversation": "Let's work together to make pumpkin_pie, cookie, beetroot_soup, cooked_rabbit.", + "agent_count": 4, + "target": { + "pumpkin_pie": 1, + "cookie": 1, + "beetroot_soup": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [ + "2", + "0" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 beetroot_soup, 1 cooked_rabbit. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 beetroot_soup, 1 cooked_rabbit. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 beetroot_soup, 1 cooked_rabbit. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 beetroot_soup, 1 cooked_rabbit. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 12, + "blocked_agents_count": 2, + "unique_target_items": 4, + "overall_difficulty_score": 9, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "egg": 1 + }, + "1": { + "cocoa_beans": 1 + }, + "2": { + "bowl": 1 + }, + "3": { + "coal": 8 + } + } + }, + "multiagent_cooking_4_1_beetroot_soup_1_cooked_mutton_1_mushroom_stew_blocked_access_0_3": { + "conversation": "Let's work together to make mushroom_stew, cooked_mutton, beetroot_soup.", + "agent_count": 4, + "target": { + "mushroom_stew": 1, + "cooked_mutton": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [ + "3", + "0" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 beetroot_soup. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 beetroot_soup. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 beetroot_soup. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 beetroot_soup. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 8, + "blocked_agents_count": 2, + "unique_target_items": 3, + "overall_difficulty_score": 7, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "bowl": 2 + }, + "1": { + "coal": 8 + }, + "2": {}, + "3": {} + } + }, + "multiagent_cooking_4_1_beetroot_soup_1_golden_carrot_1_mushroom_stew_blocked_access_0_2": { + "conversation": "Let's work together to make mushroom_stew, golden_carrot, beetroot_soup.", + "agent_count": 4, + "target": { + "mushroom_stew": 1, + "golden_carrot": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [ + "2", + "0" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 beetroot_soup. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 beetroot_soup. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 beetroot_soup. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 beetroot_soup. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 9, + "blocked_agents_count": 2, + "unique_target_items": 3, + "overall_difficulty_score": 8, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "bowl": 2 + }, + "1": { + "gold_ingots": 8 + }, + "2": {}, + "3": {} + } + }, + "multiagent_cooking_4_1_beetroot_soup_1_cooked_rabbit_1_pumpkin_pie_1_suspicious_stew": { + "conversation": "Let's work together to make cooked_rabbit, pumpkin_pie, suspicious_stew, beetroot_soup.", + "agent_count": 4, + "target": { + "cooked_rabbit": 1, + "pumpkin_pie": 1, + "suspicious_stew": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie, 1 suspicious_stew, 1 beetroot_soup. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie, 1 suspicious_stew, 1 beetroot_soup. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie, 1 suspicious_stew, 1 beetroot_soup. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "3": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie, 1 suspicious_stew, 1 beetroot_soup. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 12, + "blocked_agents_count": 0, + "unique_target_items": 4, + "overall_difficulty_score": 7, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 8 + }, + "1": { + "egg": 1 + }, + "2": { + "bowl": 2 + }, + "3": { + "dandelion": 1 + } + } + }, + "multiagent_cooking_4_1_cooked_mutton_1_cookie_1_golden_carrot_1_suspicious_stew": { + "conversation": "Let's work together to make cookie, suspicious_stew, golden_carrot, cooked_mutton.", + "agent_count": 4, + "target": { + "cookie": 1, + "suspicious_stew": 1, + "golden_carrot": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 suspicious_stew, 1 golden_carrot, 1 cooked_mutton. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 cookie, 1 suspicious_stew, 1 golden_carrot, 1 cooked_mutton. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "2": "Collaborate with agents around you to make 1 cookie, 1 suspicious_stew, 1 golden_carrot, 1 cooked_mutton. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "3": "Collaborate with agents around you to make 1 cookie, 1 suspicious_stew, 1 golden_carrot, 1 cooked_mutton. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 11, + "blocked_agents_count": 0, + "unique_target_items": 4, + "overall_difficulty_score": 7, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "cocoa_beans": 1, + "coal": 8 + }, + "1": { + "bowl": 1 + }, + "2": { + "dandelion": 1 + }, + "3": { + "gold_ingots": 8 + } + } + }, + "multiagent_cooking_4_1_cooked_chicken_1_cooked_mutton_1_cooked_porkchop_1_mushroom_stew": { + "conversation": "Let's work together to make cooked_porkchop, cooked_chicken, cooked_mutton, mushroom_stew.", + "agent_count": 4, + "target": { + "cooked_porkchop": 1, + "cooked_chicken": 1, + "cooked_mutton": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 cooked_mutton, 1 mushroom_stew. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 cooked_mutton, 1 mushroom_stew. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 cooked_mutton, 1 mushroom_stew. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "3": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 cooked_mutton, 1 mushroom_stew. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 9, + "blocked_agents_count": 0, + "unique_target_items": 4, + "overall_difficulty_score": 7, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 24 + }, + "1": { + "bowl": 1 + }, + "2": {}, + "3": {} + } + }, + "multiagent_cooking_4_1_cooked_chicken_1_cooked_mutton_1_mushroom_stew_blocked_access_0_1_2_3": { + "conversation": "Let's work together to make cooked_mutton, mushroom_stew, cooked_chicken.", + "agent_count": 4, + "target": { + "cooked_mutton": 1, + "mushroom_stew": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1", + "2", + "3" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 cooked_chicken. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 cooked_chicken. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 cooked_chicken. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "3": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 cooked_chicken. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 7, + "blocked_agents_count": 4, + "unique_target_items": 3, + "overall_difficulty_score": 9, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": { + "bowl": 1 + }, + "2": {}, + "3": {} + } + }, + "multiagent_cooking_4_1_cooked_porkchop_1_cooked_rabbit_1_golden_carrot": { + "conversation": "Let's work together to make golden_carrot, cooked_rabbit, cooked_porkchop.", + "agent_count": 4, + "target": { + "golden_carrot": 1, + "cooked_rabbit": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_rabbit, 1 cooked_porkchop. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_rabbit, 1 cooked_porkchop. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "2": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_rabbit, 1 cooked_porkchop. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "3": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_rabbit, 1 cooked_porkchop. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 7, + "blocked_agents_count": 0, + "unique_target_items": 3, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "gold_ingots": 8 + }, + "1": { + "coal": 16 + }, + "2": {}, + "3": {} + } + }, + "multiagent_cooking_4_1_cooked_porkchop_1_cookie_1_pumpkin_pie_1_suspicious_stew_blocked_access_0_1_2_3": { + "conversation": "Let's work together to make suspicious_stew, cookie, cooked_porkchop, pumpkin_pie.", + "agent_count": 4, + "target": { + "suspicious_stew": 1, + "cookie": 1, + "cooked_porkchop": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1", + "2", + "3" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cookie, 1 cooked_porkchop, 1 pumpkin_pie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cookie, 1 cooked_porkchop, 1 pumpkin_pie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cookie, 1 cooked_porkchop, 1 pumpkin_pie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 cookie, 1 cooked_porkchop, 1 pumpkin_pie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 12, + "blocked_agents_count": 4, + "unique_target_items": 4, + "overall_difficulty_score": 11, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "bowl": 1, + "egg": 1 + }, + "1": { + "dandelion": 1 + }, + "2": { + "cocoa_beans": 1 + }, + "3": { + "coal": 8 + } + } + }, + "multiagent_cooking_4_1_beetroot_soup_1_cooked_chicken_1_cooked_mutton_1_cooked_porkchop_blocked_access_0_3": { + "conversation": "Let's work together to make cooked_chicken, cooked_porkchop, cooked_mutton, beetroot_soup.", + "agent_count": 4, + "target": { + "cooked_chicken": 1, + "cooked_porkchop": 1, + "cooked_mutton": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [ + "3", + "0" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop, 1 cooked_mutton, 1 beetroot_soup. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop, 1 cooked_mutton, 1 beetroot_soup. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop, 1 cooked_mutton, 1 beetroot_soup. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop, 1 cooked_mutton, 1 beetroot_soup. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 9, + "blocked_agents_count": 2, + "unique_target_items": 4, + "overall_difficulty_score": 9, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 24 + }, + "1": { + "bowl": 1 + }, + "2": {}, + "3": {} + } + }, + "multiagent_cooking_4_1_beetroot_soup_1_cooked_chicken_1_cooked_mutton_1_mushroom_stew_blocked_access_0_1_2_3": { + "conversation": "Let's work together to make mushroom_stew, beetroot_soup, cooked_mutton, cooked_chicken.", + "agent_count": 4, + "target": { + "mushroom_stew": 1, + "beetroot_soup": 1, + "cooked_mutton": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1", + "2", + "3" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 cooked_mutton, 1 cooked_chicken. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 cooked_mutton, 1 cooked_chicken. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 cooked_mutton, 1 cooked_chicken. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 cooked_mutton, 1 cooked_chicken. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 10, + "blocked_agents_count": 4, + "unique_target_items": 4, + "overall_difficulty_score": 11, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "bowl": 2 + }, + "1": { + "coal": 16 + }, + "2": {}, + "3": {} + } + }, + "multiagent_cooking_4_1_cooked_mutton_1_cooked_rabbit_1_mushroom_stew_1_pumpkin_pie_blocked_access_0_1_2_3": { + "conversation": "Let's work together to make cooked_rabbit, cooked_mutton, pumpkin_pie, mushroom_stew.", + "agent_count": 4, + "target": { + "cooked_rabbit": 1, + "cooked_mutton": 1, + "pumpkin_pie": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1", + "2", + "3" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_mutton, 1 pumpkin_pie, 1 mushroom_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_mutton, 1 pumpkin_pie, 1 mushroom_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_mutton, 1 pumpkin_pie, 1 mushroom_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "3": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_mutton, 1 pumpkin_pie, 1 mushroom_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 11, + "blocked_agents_count": 4, + "unique_target_items": 4, + "overall_difficulty_score": 11, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": { + "egg": 1 + }, + "2": { + "bowl": 1 + }, + "3": {} + } + }, + "multiagent_cooking_4_1_cooked_chicken_1_cooked_rabbit_1_cookie_1_suspicious_stew_blocked_access_0_2": { + "conversation": "Let's work together to make cooked_rabbit, suspicious_stew, cookie, cooked_chicken.", + "agent_count": 4, + "target": { + "cooked_rabbit": 1, + "suspicious_stew": 1, + "cookie": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [ + "0", + "2" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew, 1 cookie, 1 cooked_chicken. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew, 1 cookie, 1 cooked_chicken. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew, 1 cookie, 1 cooked_chicken. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "3": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew, 1 cookie, 1 cooked_chicken. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 10, + "blocked_agents_count": 2, + "unique_target_items": 4, + "overall_difficulty_score": 9, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": { + "bowl": 1 + }, + "2": { + "dandelion": 1 + }, + "3": { + "cocoa_beans": 1 + } + } + }, + "multiagent_cooking_4_1_cooked_chicken_1_golden_carrot_1_mushroom_stew_1_suspicious_stew_blocked_access_0_1_2_3": { + "conversation": "Let's work together to make cooked_chicken, suspicious_stew, golden_carrot, mushroom_stew.", + "agent_count": 4, + "target": { + "cooked_chicken": 1, + "suspicious_stew": 1, + "golden_carrot": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1", + "2", + "3" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew, 1 golden_carrot, 1 mushroom_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew, 1 golden_carrot, 1 mushroom_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew, 1 golden_carrot, 1 mushroom_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew, 1 golden_carrot, 1 mushroom_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 11, + "blocked_agents_count": 4, + "unique_target_items": 4, + "overall_difficulty_score": 11, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 8 + }, + "1": { + "bowl": 2 + }, + "2": { + "dandelion": 1 + }, + "3": { + "gold_ingots": 8 + } + } + } +} \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_train/5_agent.json b/tasks/cooking_tasks/require_collab_train/5_agent.json new file mode 100644 index 0000000..e39ee6e --- /dev/null +++ b/tasks/cooking_tasks/require_collab_train/5_agent.json @@ -0,0 +1,5018 @@ +{ + "multiagent_cooking_5_1_cooked_chicken_1_cooked_porkchop_1_cooked_rabbit_1_mushroom_stew_1_pumpkin_pie_blocked_access_1_3": { + "conversation": "Let's work together to make cooked_porkchop, mushroom_stew, cooked_chicken, cooked_rabbit, pumpkin_pie.", + "agent_count": 5, + "target": { + "cooked_porkchop": 1, + "mushroom_stew": 1, + "cooked_chicken": 1, + "cooked_rabbit": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [ + "1", + "3" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew, 1 cooked_chicken, 1 cooked_rabbit, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew, 1 cooked_chicken, 1 cooked_rabbit, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew, 1 cooked_chicken, 1 cooked_rabbit, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "3": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew, 1 cooked_chicken, 1 cooked_rabbit, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "4": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew, 1 cooked_chicken, 1 cooked_rabbit, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 13, + "blocked_agents_count": 2, + "unique_target_items": 5, + "overall_difficulty_score": 10, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 24 + }, + "1": { + "bowl": 1 + }, + "2": { + "egg": 1 + }, + "3": {}, + "4": {} + } + }, + "multiagent_cooking_5_1_beetroot_soup_1_cooked_chicken_1_cooked_porkchop_1_suspicious_stew_blocked_access_0_3": { + "conversation": "Let's work together to make beetroot_soup, cooked_porkchop, suspicious_stew, cooked_chicken.", + "agent_count": 5, + "target": { + "beetroot_soup": 1, + "cooked_porkchop": 1, + "suspicious_stew": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [ + "3", + "0" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop, 1 suspicious_stew, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop, 1 suspicious_stew, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop, 1 suspicious_stew, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "3": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop, 1 suspicious_stew, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "4": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop, 1 suspicious_stew, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 10, + "blocked_agents_count": 2, + "unique_target_items": 4, + "overall_difficulty_score": 9, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "bowl": 2 + }, + "1": { + "coal": 16 + }, + "2": { + "dandelion": 1 + }, + "3": {}, + "4": {} + } + }, + "multiagent_cooking_5_1_cooked_mutton_1_cooked_porkchop_1_cooked_rabbit_1_cookie_1_suspicious_stew": { + "conversation": "Let's work together to make cooked_mutton, cooked_rabbit, suspicious_stew, cooked_porkchop, cookie.", + "agent_count": 5, + "target": { + "cooked_mutton": 1, + "cooked_rabbit": 1, + "suspicious_stew": 1, + "cooked_porkchop": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 suspicious_stew, 1 cooked_porkchop, 1 cookie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 suspicious_stew, 1 cooked_porkchop, 1 cookie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 suspicious_stew, 1 cooked_porkchop, 1 cookie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "3": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 suspicious_stew, 1 cooked_porkchop, 1 cookie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "4": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 suspicious_stew, 1 cooked_porkchop, 1 cookie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 12, + "blocked_agents_count": 0, + "unique_target_items": 5, + "overall_difficulty_score": 8, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 24 + }, + "1": { + "bowl": 1 + }, + "2": { + "dandelion": 1 + }, + "3": { + "cocoa_beans": 1 + }, + "4": {} + } + }, + "multiagent_cooking_5_1_cooked_rabbit_1_mushroom_stew_1_pumpkin_pie_1_suspicious_stew_blocked_access_0_1_2_3_4": { + "conversation": "Let's work together to make mushroom_stew, suspicious_stew, pumpkin_pie, cooked_rabbit.", + "agent_count": 5, + "target": { + "mushroom_stew": 1, + "suspicious_stew": 1, + "pumpkin_pie": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1", + "2", + "3", + "4" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 pumpkin_pie, 1 cooked_rabbit. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 pumpkin_pie, 1 cooked_rabbit. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 pumpkin_pie, 1 cooked_rabbit. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 pumpkin_pie, 1 cooked_rabbit. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "4": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 pumpkin_pie, 1 cooked_rabbit. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 12, + "blocked_agents_count": 5, + "unique_target_items": 4, + "overall_difficulty_score": 12, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "bowl": 2 + }, + "1": { + "dandelion": 1 + }, + "2": { + "egg": 1 + }, + "3": { + "coal": 8 + }, + "4": {} + } + }, + "multiagent_cooking_5_1_cooked_mutton_1_cooked_porkchop_1_mushroom_stew_1_pumpkin_pie_blocked_access_0_1_2_3_4": { + "conversation": "Let's work together to make cooked_mutton, mushroom_stew, cooked_porkchop, pumpkin_pie.", + "agent_count": 5, + "target": { + "cooked_mutton": 1, + "mushroom_stew": 1, + "cooked_porkchop": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1", + "2", + "3", + "4" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 cooked_porkchop, 1 pumpkin_pie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 cooked_porkchop, 1 pumpkin_pie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 cooked_porkchop, 1 pumpkin_pie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "3": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 cooked_porkchop, 1 pumpkin_pie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "4": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 cooked_porkchop, 1 pumpkin_pie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 11, + "blocked_agents_count": 5, + "unique_target_items": 4, + "overall_difficulty_score": 12, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": { + "bowl": 1 + }, + "2": { + "egg": 1 + }, + "3": {}, + "4": {} + } + }, + "multiagent_cooking_5_1_cooked_mutton_1_golden_carrot_1_mushroom_stew_1_pumpkin_pie_1_suspicious_stew": { + "conversation": "Let's work together to make pumpkin_pie, suspicious_stew, mushroom_stew, golden_carrot, cooked_mutton.", + "agent_count": 5, + "target": { + "pumpkin_pie": 1, + "suspicious_stew": 1, + "mushroom_stew": 1, + "golden_carrot": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew, 1 mushroom_stew, 1 golden_carrot, 1 cooked_mutton. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew, 1 mushroom_stew, 1 golden_carrot, 1 cooked_mutton. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew, 1 mushroom_stew, 1 golden_carrot, 1 cooked_mutton. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew, 1 mushroom_stew, 1 golden_carrot, 1 cooked_mutton. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "4": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew, 1 mushroom_stew, 1 golden_carrot, 1 cooked_mutton. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 15, + "blocked_agents_count": 0, + "unique_target_items": 5, + "overall_difficulty_score": 8, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "egg": 1 + }, + "1": { + "bowl": 2 + }, + "2": { + "dandelion": 1 + }, + "3": { + "gold_ingots": 8 + }, + "4": { + "coal": 8 + } + } + }, + "multiagent_cooking_5_1_beetroot_soup_1_cooked_mutton_1_cookie_1_pumpkin_pie_1_suspicious_stew_blocked_access_1_2": { + "conversation": "Let's work together to make cookie, beetroot_soup, cooked_mutton, suspicious_stew, pumpkin_pie.", + "agent_count": 5, + "target": { + "cookie": 1, + "beetroot_soup": 1, + "cooked_mutton": 1, + "suspicious_stew": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [ + "2", + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 beetroot_soup, 1 cooked_mutton, 1 suspicious_stew, 1 pumpkin_pie. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "1": "Collaborate with agents around you to make 1 cookie, 1 beetroot_soup, 1 cooked_mutton, 1 suspicious_stew, 1 pumpkin_pie. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "2": "Collaborate with agents around you to make 1 cookie, 1 beetroot_soup, 1 cooked_mutton, 1 suspicious_stew, 1 pumpkin_pie. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "3": "Collaborate with agents around you to make 1 cookie, 1 beetroot_soup, 1 cooked_mutton, 1 suspicious_stew, 1 pumpkin_pie. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "4": "Collaborate with agents around you to make 1 cookie, 1 beetroot_soup, 1 cooked_mutton, 1 suspicious_stew, 1 pumpkin_pie. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 15, + "blocked_agents_count": 2, + "unique_target_items": 5, + "overall_difficulty_score": 10, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "cocoa_beans": 1 + }, + "1": { + "bowl": 2 + }, + "2": { + "coal": 8 + }, + "3": { + "dandelion": 1 + }, + "4": { + "egg": 1 + } + } + }, + "multiagent_cooking_5_1_beetroot_soup_1_cooked_porkchop_1_cooked_rabbit_1_cookie_1_mushroom_stew_blocked_access_0_1": { + "conversation": "Let's work together to make cooked_rabbit, cooked_porkchop, mushroom_stew, beetroot_soup, cookie.", + "agent_count": 5, + "target": { + "cooked_rabbit": 1, + "cooked_porkchop": 1, + "mushroom_stew": 1, + "beetroot_soup": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [ + "1", + "0" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 mushroom_stew, 1 beetroot_soup, 1 cookie. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 mushroom_stew, 1 beetroot_soup, 1 cookie. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 mushroom_stew, 1 beetroot_soup, 1 cookie. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "3": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 mushroom_stew, 1 beetroot_soup, 1 cookie. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "4": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 mushroom_stew, 1 beetroot_soup, 1 cookie. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 13, + "blocked_agents_count": 2, + "unique_target_items": 5, + "overall_difficulty_score": 10, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": { + "bowl": 2 + }, + "2": { + "cocoa_beans": 1 + }, + "3": {}, + "4": {} + } + }, + "multiagent_cooking_5_1_beetroot_soup_1_cooked_mutton_1_golden_carrot_1_suspicious_stew_blocked_access_0_4": { + "conversation": "Let's work together to make suspicious_stew, cooked_mutton, golden_carrot, beetroot_soup.", + "agent_count": 5, + "target": { + "suspicious_stew": 1, + "cooked_mutton": 1, + "golden_carrot": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [ + "0", + "4" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton, 1 golden_carrot, 1 beetroot_soup. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton, 1 golden_carrot, 1 beetroot_soup. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton, 1 golden_carrot, 1 beetroot_soup. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton, 1 golden_carrot, 1 beetroot_soup. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "4": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton, 1 golden_carrot, 1 beetroot_soup. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 11, + "blocked_agents_count": 2, + "unique_target_items": 4, + "overall_difficulty_score": 9, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "bowl": 2 + }, + "1": { + "dandelion": 1 + }, + "2": { + "coal": 8 + }, + "3": { + "gold_ingots": 8 + }, + "4": {} + } + }, + "multiagent_cooking_5_1_cooked_chicken_1_cooked_porkchop_1_cooked_rabbit_1_cookie_1_suspicious_stew": { + "conversation": "Let's work together to make cooked_porkchop, cooked_chicken, cookie, cooked_rabbit, suspicious_stew.", + "agent_count": 5, + "target": { + "cooked_porkchop": 1, + "cooked_chicken": 1, + "cookie": 1, + "cooked_rabbit": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 cookie, 1 cooked_rabbit, 1 suspicious_stew. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 cookie, 1 cooked_rabbit, 1 suspicious_stew. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 cookie, 1 cooked_rabbit, 1 suspicious_stew. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "3": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 cookie, 1 cooked_rabbit, 1 suspicious_stew. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "4": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 cookie, 1 cooked_rabbit, 1 suspicious_stew. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 12, + "blocked_agents_count": 0, + "unique_target_items": 5, + "overall_difficulty_score": 8, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 24 + }, + "1": { + "cocoa_beans": 1 + }, + "2": { + "bowl": 1 + }, + "3": { + "dandelion": 1 + }, + "4": {} + } + }, + "multiagent_cooking_5_1_cooked_porkchop_1_golden_carrot_1_mushroom_stew_1_pumpkin_pie_blocked_access_0_2": { + "conversation": "Let's work together to make pumpkin_pie, mushroom_stew, golden_carrot, cooked_porkchop.", + "agent_count": 5, + "target": { + "pumpkin_pie": 1, + "mushroom_stew": 1, + "golden_carrot": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [ + "0", + "2" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 golden_carrot, 1 cooked_porkchop. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 golden_carrot, 1 cooked_porkchop. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 golden_carrot, 1 cooked_porkchop. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 golden_carrot, 1 cooked_porkchop. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "4": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 golden_carrot, 1 cooked_porkchop. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 12, + "blocked_agents_count": 2, + "unique_target_items": 4, + "overall_difficulty_score": 9, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "egg": 1 + }, + "1": { + "bowl": 1 + }, + "2": { + "gold_ingots": 8 + }, + "3": { + "coal": 8 + }, + "4": {} + } + }, + "multiagent_cooking_5_1_cooked_porkchop_1_cooked_rabbit_1_mushroom_stew_1_suspicious_stew_blocked_access_0_3": { + "conversation": "Let's work together to make suspicious_stew, cooked_rabbit, cooked_porkchop, mushroom_stew.", + "agent_count": 5, + "target": { + "suspicious_stew": 1, + "cooked_rabbit": 1, + "cooked_porkchop": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [ + "3", + "0" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_rabbit, 1 cooked_porkchop, 1 mushroom_stew. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_rabbit, 1 cooked_porkchop, 1 mushroom_stew. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_rabbit, 1 cooked_porkchop, 1 mushroom_stew. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_rabbit, 1 cooked_porkchop, 1 mushroom_stew. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "4": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_rabbit, 1 cooked_porkchop, 1 mushroom_stew. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 10, + "blocked_agents_count": 2, + "unique_target_items": 4, + "overall_difficulty_score": 9, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "bowl": 2 + }, + "1": { + "dandelion": 1 + }, + "2": { + "coal": 16 + }, + "3": {}, + "4": {} + } + }, + "multiagent_cooking_5_1_cooked_chicken_1_cooked_mutton_1_cooked_porkchop_1_cooked_rabbit_1_pumpkin_pie": { + "conversation": "Let's work together to make cooked_chicken, cooked_porkchop, cooked_rabbit, cooked_mutton, pumpkin_pie.", + "agent_count": 5, + "target": { + "cooked_chicken": 1, + "cooked_porkchop": 1, + "cooked_rabbit": 1, + "cooked_mutton": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop, 1 cooked_rabbit, 1 cooked_mutton, 1 pumpkin_pie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop, 1 cooked_rabbit, 1 cooked_mutton, 1 pumpkin_pie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop, 1 cooked_rabbit, 1 cooked_mutton, 1 pumpkin_pie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop, 1 cooked_rabbit, 1 cooked_mutton, 1 pumpkin_pie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "4": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop, 1 cooked_rabbit, 1 cooked_mutton, 1 pumpkin_pie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 12, + "blocked_agents_count": 0, + "unique_target_items": 5, + "overall_difficulty_score": 8, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 32 + }, + "1": { + "egg": 1 + }, + "2": {}, + "3": {}, + "4": {} + } + }, + "multiagent_cooking_5_1_cooked_chicken_1_cookie_1_mushroom_stew_1_pumpkin_pie_1_suspicious_stew_blocked_access_0_1_2_3_4": { + "conversation": "Let's work together to make suspicious_stew, cooked_chicken, mushroom_stew, pumpkin_pie, cookie.", + "agent_count": 5, + "target": { + "suspicious_stew": 1, + "cooked_chicken": 1, + "mushroom_stew": 1, + "pumpkin_pie": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1", + "2", + "3", + "4" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 mushroom_stew, 1 pumpkin_pie, 1 cookie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 mushroom_stew, 1 pumpkin_pie, 1 cookie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 mushroom_stew, 1 pumpkin_pie, 1 cookie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 mushroom_stew, 1 pumpkin_pie, 1 cookie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "4": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 mushroom_stew, 1 pumpkin_pie, 1 cookie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 15, + "blocked_agents_count": 5, + "unique_target_items": 5, + "overall_difficulty_score": 13, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "bowl": 2 + }, + "1": { + "dandelion": 1 + }, + "2": { + "coal": 8 + }, + "3": { + "egg": 1 + }, + "4": { + "cocoa_beans": 1 + } + } + }, + "multiagent_cooking_5_1_cooked_mutton_1_cooked_porkchop_1_cooked_rabbit_1_pumpkin_pie": { + "conversation": "Let's work together to make cooked_mutton, pumpkin_pie, cooked_rabbit, cooked_porkchop.", + "agent_count": 5, + "target": { + "cooked_mutton": 1, + "pumpkin_pie": 1, + "cooked_rabbit": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie, 1 cooked_rabbit, 1 cooked_porkchop. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie, 1 cooked_rabbit, 1 cooked_porkchop. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie, 1 cooked_rabbit, 1 cooked_porkchop. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "3": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie, 1 cooked_rabbit, 1 cooked_porkchop. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "4": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie, 1 cooked_rabbit, 1 cooked_porkchop. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 10, + "blocked_agents_count": 0, + "unique_target_items": 4, + "overall_difficulty_score": 7, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 24 + }, + "1": { + "egg": 1 + }, + "2": {}, + "3": {}, + "4": {} + } + }, + "multiagent_cooking_5_1_beetroot_soup_1_cooked_chicken_1_mushroom_stew_1_suspicious_stew": { + "conversation": "Let's work together to make cooked_chicken, beetroot_soup, suspicious_stew, mushroom_stew.", + "agent_count": 5, + "target": { + "cooked_chicken": 1, + "beetroot_soup": 1, + "suspicious_stew": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 beetroot_soup, 1 suspicious_stew, 1 mushroom_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 beetroot_soup, 1 suspicious_stew, 1 mushroom_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 beetroot_soup, 1 suspicious_stew, 1 mushroom_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 beetroot_soup, 1 suspicious_stew, 1 mushroom_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "4": "Collaborate with agents around you to make 1 cooked_chicken, 1 beetroot_soup, 1 suspicious_stew, 1 mushroom_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 11, + "blocked_agents_count": 0, + "unique_target_items": 4, + "overall_difficulty_score": 7, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 8 + }, + "1": { + "bowl": 3 + }, + "2": { + "dandelion": 1 + }, + "3": {}, + "4": {} + } + }, + "multiagent_cooking_5_1_cooked_chicken_1_cookie_1_mushroom_stew_1_suspicious_stew_blocked_access_1_3": { + "conversation": "Let's work together to make cookie, suspicious_stew, cooked_chicken, mushroom_stew.", + "agent_count": 5, + "target": { + "cookie": 1, + "suspicious_stew": 1, + "cooked_chicken": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [ + "3", + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 suspicious_stew, 1 cooked_chicken, 1 mushroom_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "1": "Collaborate with agents around you to make 1 cookie, 1 suspicious_stew, 1 cooked_chicken, 1 mushroom_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "2": "Collaborate with agents around you to make 1 cookie, 1 suspicious_stew, 1 cooked_chicken, 1 mushroom_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "3": "Collaborate with agents around you to make 1 cookie, 1 suspicious_stew, 1 cooked_chicken, 1 mushroom_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "4": "Collaborate with agents around you to make 1 cookie, 1 suspicious_stew, 1 cooked_chicken, 1 mushroom_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 11, + "blocked_agents_count": 2, + "unique_target_items": 4, + "overall_difficulty_score": 9, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "cocoa_beans": 1 + }, + "1": { + "bowl": 2 + }, + "2": { + "dandelion": 1 + }, + "3": { + "coal": 8 + }, + "4": {} + } + }, + "multiagent_cooking_5_1_beetroot_soup_1_cooked_porkchop_1_golden_carrot_1_pumpkin_pie_1_suspicious_stew_blocked_access_2_3": { + "conversation": "Let's work together to make suspicious_stew, beetroot_soup, golden_carrot, pumpkin_pie, cooked_porkchop.", + "agent_count": 5, + "target": { + "suspicious_stew": 1, + "beetroot_soup": 1, + "golden_carrot": 1, + "pumpkin_pie": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [ + "2", + "3" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup, 1 golden_carrot, 1 pumpkin_pie, 1 cooked_porkchop. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup, 1 golden_carrot, 1 pumpkin_pie, 1 cooked_porkchop. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup, 1 golden_carrot, 1 pumpkin_pie, 1 cooked_porkchop. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup, 1 golden_carrot, 1 pumpkin_pie, 1 cooked_porkchop. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "4": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup, 1 golden_carrot, 1 pumpkin_pie, 1 cooked_porkchop. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 15, + "blocked_agents_count": 2, + "unique_target_items": 5, + "overall_difficulty_score": 10, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "bowl": 2 + }, + "1": { + "dandelion": 1 + }, + "2": { + "gold_ingots": 8 + }, + "3": { + "egg": 1 + }, + "4": { + "coal": 8 + } + } + }, + "multiagent_cooking_5_1_cooked_chicken_1_cooked_porkchop_1_cookie_1_suspicious_stew_blocked_access_0_4": { + "conversation": "Let's work together to make cooked_chicken, suspicious_stew, cooked_porkchop, cookie.", + "agent_count": 5, + "target": { + "cooked_chicken": 1, + "suspicious_stew": 1, + "cooked_porkchop": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [ + "4", + "0" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew, 1 cooked_porkchop, 1 cookie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew, 1 cooked_porkchop, 1 cookie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew, 1 cooked_porkchop, 1 cookie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew, 1 cooked_porkchop, 1 cookie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "4": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew, 1 cooked_porkchop, 1 cookie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 10, + "blocked_agents_count": 2, + "unique_target_items": 4, + "overall_difficulty_score": 9, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": { + "bowl": 1 + }, + "2": { + "dandelion": 1 + }, + "3": { + "cocoa_beans": 1 + }, + "4": {} + } + }, + "multiagent_cooking_5_1_cooked_mutton_1_cooked_rabbit_1_golden_carrot_1_mushroom_stew_1_suspicious_stew_blocked_access_2_4": { + "conversation": "Let's work together to make suspicious_stew, cooked_mutton, mushroom_stew, cooked_rabbit, golden_carrot.", + "agent_count": 5, + "target": { + "suspicious_stew": 1, + "cooked_mutton": 1, + "mushroom_stew": 1, + "cooked_rabbit": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [ + "4", + "2" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton, 1 mushroom_stew, 1 cooked_rabbit, 1 golden_carrot. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton, 1 mushroom_stew, 1 cooked_rabbit, 1 golden_carrot. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton, 1 mushroom_stew, 1 cooked_rabbit, 1 golden_carrot. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton, 1 mushroom_stew, 1 cooked_rabbit, 1 golden_carrot. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "4": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton, 1 mushroom_stew, 1 cooked_rabbit, 1 golden_carrot. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 13, + "blocked_agents_count": 2, + "unique_target_items": 5, + "overall_difficulty_score": 10, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "bowl": 2 + }, + "1": { + "dandelion": 1 + }, + "2": { + "coal": 16 + }, + "3": { + "gold_ingots": 8 + }, + "4": {} + } + }, + "multiagent_cooking_5_1_cooked_chicken_1_cooked_rabbit_1_golden_carrot_1_mushroom_stew_blocked_access_1_3": { + "conversation": "Let's work together to make cooked_chicken, cooked_rabbit, golden_carrot, mushroom_stew.", + "agent_count": 5, + "target": { + "cooked_chicken": 1, + "cooked_rabbit": 1, + "golden_carrot": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [ + "1", + "3" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 golden_carrot, 1 mushroom_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 golden_carrot, 1 mushroom_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 golden_carrot, 1 mushroom_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 golden_carrot, 1 mushroom_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "4": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 golden_carrot, 1 mushroom_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 10, + "blocked_agents_count": 2, + "unique_target_items": 4, + "overall_difficulty_score": 9, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": { + "gold_ingots": 8 + }, + "2": { + "bowl": 1 + }, + "3": {}, + "4": {} + } + }, + "multiagent_cooking_5_1_cooked_chicken_1_cooked_mutton_1_cooked_rabbit_1_cookie": { + "conversation": "Let's work together to make cooked_mutton, cooked_rabbit, cooked_chicken, cookie.", + "agent_count": 5, + "target": { + "cooked_mutton": 1, + "cooked_rabbit": 1, + "cooked_chicken": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 cooked_chicken, 1 cookie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 cooked_chicken, 1 cookie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 cooked_chicken, 1 cookie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "3": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 cooked_chicken, 1 cookie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "4": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 cooked_chicken, 1 cookie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 9, + "blocked_agents_count": 0, + "unique_target_items": 4, + "overall_difficulty_score": 7, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 24 + }, + "1": { + "cocoa_beans": 1 + }, + "2": {}, + "3": {}, + "4": {} + } + }, + "multiagent_cooking_5_1_cooked_porkchop_1_cooked_rabbit_1_mushroom_stew_1_pumpkin_pie_1_suspicious_stew": { + "conversation": "Let's work together to make cooked_porkchop, suspicious_stew, mushroom_stew, cooked_rabbit, pumpkin_pie.", + "agent_count": 5, + "target": { + "cooked_porkchop": 1, + "suspicious_stew": 1, + "mushroom_stew": 1, + "cooked_rabbit": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 mushroom_stew, 1 cooked_rabbit, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 mushroom_stew, 1 cooked_rabbit, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 mushroom_stew, 1 cooked_rabbit, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "3": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 mushroom_stew, 1 cooked_rabbit, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "4": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 mushroom_stew, 1 cooked_rabbit, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 14, + "blocked_agents_count": 0, + "unique_target_items": 5, + "overall_difficulty_score": 8, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": { + "bowl": 2 + }, + "2": { + "dandelion": 1 + }, + "3": { + "egg": 1 + }, + "4": {} + } + }, + "multiagent_cooking_5_1_beetroot_soup_1_cooked_chicken_1_cooked_porkchop_1_pumpkin_pie": { + "conversation": "Let's work together to make cooked_porkchop, beetroot_soup, cooked_chicken, pumpkin_pie.", + "agent_count": 5, + "target": { + "cooked_porkchop": 1, + "beetroot_soup": 1, + "cooked_chicken": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 beetroot_soup, 1 cooked_chicken, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 beetroot_soup, 1 cooked_chicken, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 beetroot_soup, 1 cooked_chicken, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "3": "Collaborate with agents around you to make 1 cooked_porkchop, 1 beetroot_soup, 1 cooked_chicken, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "4": "Collaborate with agents around you to make 1 cooked_porkchop, 1 beetroot_soup, 1 cooked_chicken, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 11, + "blocked_agents_count": 0, + "unique_target_items": 4, + "overall_difficulty_score": 7, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": { + "bowl": 1 + }, + "2": { + "egg": 1 + }, + "3": {}, + "4": {} + } + }, + "multiagent_cooking_5_1_cooked_chicken_1_cookie_1_pumpkin_pie_1_suspicious_stew_blocked_access_0_1_2_3_4": { + "conversation": "Let's work together to make pumpkin_pie, suspicious_stew, cookie, cooked_chicken.", + "agent_count": 5, + "target": { + "pumpkin_pie": 1, + "suspicious_stew": 1, + "cookie": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1", + "2", + "3", + "4" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew, 1 cookie, 1 cooked_chicken. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew, 1 cookie, 1 cooked_chicken. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew, 1 cookie, 1 cooked_chicken. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew, 1 cookie, 1 cooked_chicken. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "4": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew, 1 cookie, 1 cooked_chicken. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 12, + "blocked_agents_count": 5, + "unique_target_items": 4, + "overall_difficulty_score": 12, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "egg": 1 + }, + "1": { + "bowl": 1 + }, + "2": { + "dandelion": 1 + }, + "3": { + "cocoa_beans": 1 + }, + "4": { + "coal": 8 + } + } + }, + "multiagent_cooking_5_1_beetroot_soup_1_cooked_rabbit_1_golden_carrot_1_mushroom_stew": { + "conversation": "Let's work together to make cooked_rabbit, golden_carrot, beetroot_soup, mushroom_stew.", + "agent_count": 5, + "target": { + "cooked_rabbit": 1, + "golden_carrot": 1, + "beetroot_soup": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot, 1 beetroot_soup, 1 mushroom_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot, 1 beetroot_soup, 1 mushroom_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot, 1 beetroot_soup, 1 mushroom_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "3": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot, 1 beetroot_soup, 1 mushroom_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "4": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot, 1 beetroot_soup, 1 mushroom_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 11, + "blocked_agents_count": 0, + "unique_target_items": 4, + "overall_difficulty_score": 7, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 8 + }, + "1": { + "gold_ingots": 8 + }, + "2": { + "bowl": 2 + }, + "3": {}, + "4": {} + } + }, + "multiagent_cooking_5_1_beetroot_soup_1_cooked_porkchop_1_mushroom_stew_1_pumpkin_pie_1_suspicious_stew_blocked_access_0_3": { + "conversation": "Let's work together to make mushroom_stew, cooked_porkchop, pumpkin_pie, suspicious_stew, beetroot_soup.", + "agent_count": 5, + "target": { + "mushroom_stew": 1, + "cooked_porkchop": 1, + "pumpkin_pie": 1, + "suspicious_stew": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [ + "0", + "3" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop, 1 pumpkin_pie, 1 suspicious_stew, 1 beetroot_soup. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop, 1 pumpkin_pie, 1 suspicious_stew, 1 beetroot_soup. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop, 1 pumpkin_pie, 1 suspicious_stew, 1 beetroot_soup. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop, 1 pumpkin_pie, 1 suspicious_stew, 1 beetroot_soup. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "4": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop, 1 pumpkin_pie, 1 suspicious_stew, 1 beetroot_soup. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 15, + "blocked_agents_count": 2, + "unique_target_items": 5, + "overall_difficulty_score": 10, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "bowl": 3 + }, + "1": { + "coal": 8 + }, + "2": { + "egg": 1 + }, + "3": { + "dandelion": 1 + }, + "4": {} + } + }, + "multiagent_cooking_5_1_cooked_mutton_1_cooked_rabbit_1_cookie_1_mushroom_stew_1_suspicious_stew_blocked_access_0_4": { + "conversation": "Let's work together to make mushroom_stew, cooked_mutton, cooked_rabbit, cookie, suspicious_stew.", + "agent_count": 5, + "target": { + "mushroom_stew": 1, + "cooked_mutton": 1, + "cooked_rabbit": 1, + "cookie": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [ + "4", + "0" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 cooked_rabbit, 1 cookie, 1 suspicious_stew. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 cooked_rabbit, 1 cookie, 1 suspicious_stew. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 cooked_rabbit, 1 cookie, 1 suspicious_stew. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 cooked_rabbit, 1 cookie, 1 suspicious_stew. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "4": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 cooked_rabbit, 1 cookie, 1 suspicious_stew. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 13, + "blocked_agents_count": 2, + "unique_target_items": 5, + "overall_difficulty_score": 10, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "bowl": 2 + }, + "1": { + "coal": 16 + }, + "2": { + "cocoa_beans": 1 + }, + "3": { + "dandelion": 1 + }, + "4": {} + } + }, + "multiagent_cooking_5_1_beetroot_soup_1_cooked_chicken_1_cooked_mutton_1_mushroom_stew": { + "conversation": "Let's work together to make cooked_mutton, mushroom_stew, cooked_chicken, beetroot_soup.", + "agent_count": 5, + "target": { + "cooked_mutton": 1, + "mushroom_stew": 1, + "cooked_chicken": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 cooked_chicken, 1 beetroot_soup. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 cooked_chicken, 1 beetroot_soup. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 cooked_chicken, 1 beetroot_soup. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "3": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 cooked_chicken, 1 beetroot_soup. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "4": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 cooked_chicken, 1 beetroot_soup. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 10, + "blocked_agents_count": 0, + "unique_target_items": 4, + "overall_difficulty_score": 7, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": { + "bowl": 2 + }, + "2": {}, + "3": {}, + "4": {} + } + }, + "multiagent_cooking_5_1_cooked_chicken_1_mushroom_stew_1_pumpkin_pie_1_suspicious_stew_blocked_access_0_1_2_3_4": { + "conversation": "Let's work together to make pumpkin_pie, mushroom_stew, suspicious_stew, cooked_chicken.", + "agent_count": 5, + "target": { + "pumpkin_pie": 1, + "mushroom_stew": 1, + "suspicious_stew": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1", + "2", + "3", + "4" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 suspicious_stew, 1 cooked_chicken. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 suspicious_stew, 1 cooked_chicken. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 suspicious_stew, 1 cooked_chicken. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 suspicious_stew, 1 cooked_chicken. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "4": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 suspicious_stew, 1 cooked_chicken. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 12, + "blocked_agents_count": 5, + "unique_target_items": 4, + "overall_difficulty_score": 12, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "egg": 1 + }, + "1": { + "bowl": 2 + }, + "2": { + "dandelion": 1 + }, + "3": { + "coal": 8 + }, + "4": {} + } + }, + "multiagent_cooking_5_1_cooked_chicken_1_cooked_porkchop_1_golden_carrot_1_suspicious_stew_blocked_access_3_4": { + "conversation": "Let's work together to make cooked_chicken, golden_carrot, cooked_porkchop, suspicious_stew.", + "agent_count": 5, + "target": { + "cooked_chicken": 1, + "golden_carrot": 1, + "cooked_porkchop": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [ + "3", + "4" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cooked_porkchop, 1 suspicious_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cooked_porkchop, 1 suspicious_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cooked_porkchop, 1 suspicious_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cooked_porkchop, 1 suspicious_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "4": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cooked_porkchop, 1 suspicious_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 10, + "blocked_agents_count": 2, + "unique_target_items": 4, + "overall_difficulty_score": 9, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": { + "gold_ingots": 8 + }, + "2": { + "bowl": 1 + }, + "3": { + "dandelion": 1 + }, + "4": {} + } + }, + "multiagent_cooking_5_1_beetroot_soup_1_golden_carrot_1_mushroom_stew_1_pumpkin_pie_1_suspicious_stew_blocked_access_0_1_2_3_4": { + "conversation": "Let's work together to make golden_carrot, beetroot_soup, mushroom_stew, suspicious_stew, pumpkin_pie.", + "agent_count": 5, + "target": { + "golden_carrot": 1, + "beetroot_soup": 1, + "mushroom_stew": 1, + "suspicious_stew": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1", + "2", + "3", + "4" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup, 1 mushroom_stew, 1 suspicious_stew, 1 pumpkin_pie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup, 1 mushroom_stew, 1 suspicious_stew, 1 pumpkin_pie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "2": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup, 1 mushroom_stew, 1 suspicious_stew, 1 pumpkin_pie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "3": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup, 1 mushroom_stew, 1 suspicious_stew, 1 pumpkin_pie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "4": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup, 1 mushroom_stew, 1 suspicious_stew, 1 pumpkin_pie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 16, + "blocked_agents_count": 5, + "unique_target_items": 5, + "overall_difficulty_score": 13, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "gold_ingots": 8 + }, + "1": { + "bowl": 3 + }, + "2": { + "dandelion": 1 + }, + "3": { + "egg": 1 + }, + "4": {} + } + }, + "multiagent_cooking_5_1_cooked_chicken_1_cooked_mutton_1_cooked_rabbit_1_golden_carrot_1_pumpkin_pie": { + "conversation": "Let's work together to make cooked_rabbit, cooked_chicken, pumpkin_pie, golden_carrot, cooked_mutton.", + "agent_count": 5, + "target": { + "cooked_rabbit": 1, + "cooked_chicken": 1, + "pumpkin_pie": 1, + "golden_carrot": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken, 1 pumpkin_pie, 1 golden_carrot, 1 cooked_mutton. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken, 1 pumpkin_pie, 1 golden_carrot, 1 cooked_mutton. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken, 1 pumpkin_pie, 1 golden_carrot, 1 cooked_mutton. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "3": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken, 1 pumpkin_pie, 1 golden_carrot, 1 cooked_mutton. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "4": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken, 1 pumpkin_pie, 1 golden_carrot, 1 cooked_mutton. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 13, + "blocked_agents_count": 0, + "unique_target_items": 5, + "overall_difficulty_score": 8, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 24 + }, + "1": { + "egg": 1 + }, + "2": { + "gold_ingots": 8 + }, + "3": {}, + "4": {} + } + }, + "multiagent_cooking_5_1_cooked_mutton_1_cookie_1_pumpkin_pie_1_suspicious_stew_blocked_access_2_4": { + "conversation": "Let's work together to make pumpkin_pie, cooked_mutton, cookie, suspicious_stew.", + "agent_count": 5, + "target": { + "pumpkin_pie": 1, + "cooked_mutton": 1, + "cookie": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [ + "2", + "4" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_mutton, 1 cookie, 1 suspicious_stew. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_mutton, 1 cookie, 1 suspicious_stew. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_mutton, 1 cookie, 1 suspicious_stew. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_mutton, 1 cookie, 1 suspicious_stew. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "4": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_mutton, 1 cookie, 1 suspicious_stew. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 12, + "blocked_agents_count": 2, + "unique_target_items": 4, + "overall_difficulty_score": 9, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "egg": 1 + }, + "1": { + "coal": 8 + }, + "2": { + "cocoa_beans": 1 + }, + "3": { + "bowl": 1 + }, + "4": { + "dandelion": 1 + } + } + }, + "multiagent_cooking_5_1_beetroot_soup_1_cooked_porkchop_1_cooked_rabbit_1_mushroom_stew_1_suspicious_stew": { + "conversation": "Let's work together to make cooked_porkchop, mushroom_stew, beetroot_soup, cooked_rabbit, suspicious_stew.", + "agent_count": 5, + "target": { + "cooked_porkchop": 1, + "mushroom_stew": 1, + "beetroot_soup": 1, + "cooked_rabbit": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew, 1 beetroot_soup, 1 cooked_rabbit, 1 suspicious_stew. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew, 1 beetroot_soup, 1 cooked_rabbit, 1 suspicious_stew. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew, 1 beetroot_soup, 1 cooked_rabbit, 1 suspicious_stew. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "3": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew, 1 beetroot_soup, 1 cooked_rabbit, 1 suspicious_stew. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "4": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew, 1 beetroot_soup, 1 cooked_rabbit, 1 suspicious_stew. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 13, + "blocked_agents_count": 0, + "unique_target_items": 5, + "overall_difficulty_score": 8, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": { + "bowl": 3 + }, + "2": { + "dandelion": 1 + }, + "3": {}, + "4": {} + } + }, + "multiagent_cooking_5_1_beetroot_soup_1_cooked_mutton_1_cookie_1_mushroom_stew_1_pumpkin_pie": { + "conversation": "Let's work together to make cooked_mutton, beetroot_soup, cookie, pumpkin_pie, mushroom_stew.", + "agent_count": 5, + "target": { + "cooked_mutton": 1, + "beetroot_soup": 1, + "cookie": 1, + "pumpkin_pie": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup, 1 cookie, 1 pumpkin_pie, 1 mushroom_stew. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup, 1 cookie, 1 pumpkin_pie, 1 mushroom_stew. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup, 1 cookie, 1 pumpkin_pie, 1 mushroom_stew. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "3": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup, 1 cookie, 1 pumpkin_pie, 1 mushroom_stew. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "4": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup, 1 cookie, 1 pumpkin_pie, 1 mushroom_stew. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 15, + "blocked_agents_count": 0, + "unique_target_items": 5, + "overall_difficulty_score": 8, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 8 + }, + "1": { + "bowl": 2 + }, + "2": { + "cocoa_beans": 1 + }, + "3": { + "egg": 1 + }, + "4": {} + } + }, + "multiagent_cooking_5_1_beetroot_soup_1_cooked_mutton_1_cooked_porkchop_1_cooked_rabbit_1_cookie": { + "conversation": "Let's work together to make beetroot_soup, cookie, cooked_rabbit, cooked_porkchop, cooked_mutton.", + "agent_count": 5, + "target": { + "beetroot_soup": 1, + "cookie": 1, + "cooked_rabbit": 1, + "cooked_porkchop": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie, 1 cooked_rabbit, 1 cooked_porkchop, 1 cooked_mutton. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie, 1 cooked_rabbit, 1 cooked_porkchop, 1 cooked_mutton. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie, 1 cooked_rabbit, 1 cooked_porkchop, 1 cooked_mutton. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "3": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie, 1 cooked_rabbit, 1 cooked_porkchop, 1 cooked_mutton. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "4": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie, 1 cooked_rabbit, 1 cooked_porkchop, 1 cooked_mutton. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 12, + "blocked_agents_count": 0, + "unique_target_items": 5, + "overall_difficulty_score": 8, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "cocoa_beans": 1 + }, + "2": { + "coal": 24 + }, + "3": {}, + "4": {} + } + }, + "multiagent_cooking_5_1_beetroot_soup_1_cooked_chicken_1_cooked_porkchop_1_golden_carrot": { + "conversation": "Let's work together to make cooked_porkchop, beetroot_soup, golden_carrot, cooked_chicken.", + "agent_count": 5, + "target": { + "cooked_porkchop": 1, + "beetroot_soup": 1, + "golden_carrot": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 beetroot_soup, 1 golden_carrot, 1 cooked_chicken. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 beetroot_soup, 1 golden_carrot, 1 cooked_chicken. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 beetroot_soup, 1 golden_carrot, 1 cooked_chicken. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "3": "Collaborate with agents around you to make 1 cooked_porkchop, 1 beetroot_soup, 1 golden_carrot, 1 cooked_chicken. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "4": "Collaborate with agents around you to make 1 cooked_porkchop, 1 beetroot_soup, 1 golden_carrot, 1 cooked_chicken. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 10, + "blocked_agents_count": 0, + "unique_target_items": 4, + "overall_difficulty_score": 7, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": { + "bowl": 1 + }, + "2": { + "gold_ingots": 8 + }, + "3": {}, + "4": {} + } + }, + "multiagent_cooking_5_1_beetroot_soup_1_cooked_mutton_1_cooked_rabbit_1_golden_carrot_1_mushroom_stew_blocked_access_0_1_2_3_4": { + "conversation": "Let's work together to make beetroot_soup, mushroom_stew, golden_carrot, cooked_mutton, cooked_rabbit.", + "agent_count": 5, + "target": { + "beetroot_soup": 1, + "mushroom_stew": 1, + "golden_carrot": 1, + "cooked_mutton": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1", + "2", + "3", + "4" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 mushroom_stew, 1 golden_carrot, 1 cooked_mutton, 1 cooked_rabbit. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 mushroom_stew, 1 golden_carrot, 1 cooked_mutton, 1 cooked_rabbit. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 mushroom_stew, 1 golden_carrot, 1 cooked_mutton, 1 cooked_rabbit. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "3": "Collaborate with agents around you to make 1 beetroot_soup, 1 mushroom_stew, 1 golden_carrot, 1 cooked_mutton, 1 cooked_rabbit. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "4": "Collaborate with agents around you to make 1 beetroot_soup, 1 mushroom_stew, 1 golden_carrot, 1 cooked_mutton, 1 cooked_rabbit. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 13, + "blocked_agents_count": 5, + "unique_target_items": 5, + "overall_difficulty_score": 13, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "bowl": 2 + }, + "1": { + "gold_ingots": 8 + }, + "2": { + "coal": 16 + }, + "3": {}, + "4": {} + } + }, + "multiagent_cooking_5_1_cooked_rabbit_1_golden_carrot_1_mushroom_stew_1_pumpkin_pie": { + "conversation": "Let's work together to make cooked_rabbit, mushroom_stew, pumpkin_pie, golden_carrot.", + "agent_count": 5, + "target": { + "cooked_rabbit": 1, + "mushroom_stew": 1, + "pumpkin_pie": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew, 1 pumpkin_pie, 1 golden_carrot. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew, 1 pumpkin_pie, 1 golden_carrot. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew, 1 pumpkin_pie, 1 golden_carrot. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "3": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew, 1 pumpkin_pie, 1 golden_carrot. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "4": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew, 1 pumpkin_pie, 1 golden_carrot. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 12, + "blocked_agents_count": 0, + "unique_target_items": 4, + "overall_difficulty_score": 7, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 8 + }, + "1": { + "bowl": 1 + }, + "2": { + "egg": 1 + }, + "3": { + "gold_ingots": 8 + }, + "4": {} + } + }, + "multiagent_cooking_5_1_beetroot_soup_1_cooked_rabbit_1_cookie_1_mushroom_stew_blocked_access_0_1_2_3_4": { + "conversation": "Let's work together to make beetroot_soup, mushroom_stew, cookie, cooked_rabbit.", + "agent_count": 5, + "target": { + "beetroot_soup": 1, + "mushroom_stew": 1, + "cookie": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1", + "2", + "3", + "4" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 mushroom_stew, 1 cookie, 1 cooked_rabbit. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 mushroom_stew, 1 cookie, 1 cooked_rabbit. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 mushroom_stew, 1 cookie, 1 cooked_rabbit. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "3": "Collaborate with agents around you to make 1 beetroot_soup, 1 mushroom_stew, 1 cookie, 1 cooked_rabbit. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "4": "Collaborate with agents around you to make 1 beetroot_soup, 1 mushroom_stew, 1 cookie, 1 cooked_rabbit. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 11, + "blocked_agents_count": 5, + "unique_target_items": 4, + "overall_difficulty_score": 12, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "bowl": 2 + }, + "1": { + "cocoa_beans": 1 + }, + "2": { + "coal": 8 + }, + "3": {}, + "4": {} + } + }, + "multiagent_cooking_5_1_cooked_chicken_1_cooked_rabbit_1_cookie_1_pumpkin_pie_blocked_access_1_3": { + "conversation": "Let's work together to make cookie, cooked_rabbit, pumpkin_pie, cooked_chicken.", + "agent_count": 5, + "target": { + "cookie": 1, + "cooked_rabbit": 1, + "pumpkin_pie": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [ + "3", + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit, 1 pumpkin_pie, 1 cooked_chicken. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit, 1 pumpkin_pie, 1 cooked_chicken. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "2": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit, 1 pumpkin_pie, 1 cooked_chicken. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "3": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit, 1 pumpkin_pie, 1 cooked_chicken. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "4": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit, 1 pumpkin_pie, 1 cooked_chicken. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 11, + "blocked_agents_count": 2, + "unique_target_items": 4, + "overall_difficulty_score": 9, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "cocoa_beans": 1 + }, + "1": { + "coal": 16 + }, + "2": { + "egg": 1 + }, + "3": {}, + "4": {} + } + }, + "multiagent_cooking_5_1_cooked_porkchop_1_cooked_rabbit_1_cookie_1_mushroom_stew_blocked_access_1_4": { + "conversation": "Let's work together to make cookie, mushroom_stew, cooked_rabbit, cooked_porkchop.", + "agent_count": 5, + "target": { + "cookie": 1, + "mushroom_stew": 1, + "cooked_rabbit": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [ + "4", + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew, 1 cooked_rabbit, 1 cooked_porkchop. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "1": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew, 1 cooked_rabbit, 1 cooked_porkchop. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "2": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew, 1 cooked_rabbit, 1 cooked_porkchop. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "3": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew, 1 cooked_rabbit, 1 cooked_porkchop. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "4": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew, 1 cooked_rabbit, 1 cooked_porkchop. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 10, + "blocked_agents_count": 2, + "unique_target_items": 4, + "overall_difficulty_score": 9, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "cocoa_beans": 1 + }, + "1": { + "bowl": 1 + }, + "2": { + "coal": 16 + }, + "3": {}, + "4": {} + } + }, + "multiagent_cooking_5_1_cooked_chicken_1_cooked_mutton_1_golden_carrot_1_suspicious_stew_blocked_access_2_3": { + "conversation": "Let's work together to make golden_carrot, suspicious_stew, cooked_mutton, cooked_chicken.", + "agent_count": 5, + "target": { + "golden_carrot": 1, + "suspicious_stew": 1, + "cooked_mutton": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [ + "3", + "2" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_mutton, 1 cooked_chicken. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_mutton, 1 cooked_chicken. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "2": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_mutton, 1 cooked_chicken. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "3": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_mutton, 1 cooked_chicken. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "4": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_mutton, 1 cooked_chicken. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 10, + "blocked_agents_count": 2, + "unique_target_items": 4, + "overall_difficulty_score": 9, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "gold_ingots": 8 + }, + "1": { + "bowl": 1 + }, + "2": { + "dandelion": 1 + }, + "3": { + "coal": 16 + }, + "4": {} + } + }, + "multiagent_cooking_5_1_beetroot_soup_1_cooked_chicken_1_cooked_porkchop_1_cooked_rabbit_1_pumpkin_pie_blocked_access_0_4": { + "conversation": "Let's work together to make beetroot_soup, cooked_porkchop, pumpkin_pie, cooked_chicken, cooked_rabbit.", + "agent_count": 5, + "target": { + "beetroot_soup": 1, + "cooked_porkchop": 1, + "pumpkin_pie": 1, + "cooked_chicken": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [ + "0", + "4" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop, 1 pumpkin_pie, 1 cooked_chicken, 1 cooked_rabbit. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop, 1 pumpkin_pie, 1 cooked_chicken, 1 cooked_rabbit. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop, 1 pumpkin_pie, 1 cooked_chicken, 1 cooked_rabbit. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "3": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop, 1 pumpkin_pie, 1 cooked_chicken, 1 cooked_rabbit. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "4": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop, 1 pumpkin_pie, 1 cooked_chicken, 1 cooked_rabbit. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 13, + "blocked_agents_count": 2, + "unique_target_items": 5, + "overall_difficulty_score": 10, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 24 + }, + "2": { + "egg": 1 + }, + "3": {}, + "4": {} + } + }, + "multiagent_cooking_5_1_beetroot_soup_1_cooked_mutton_1_cooked_porkchop_1_cooked_rabbit_1_suspicious_stew": { + "conversation": "Let's work together to make cooked_mutton, cooked_rabbit, suspicious_stew, beetroot_soup, cooked_porkchop.", + "agent_count": 5, + "target": { + "cooked_mutton": 1, + "cooked_rabbit": 1, + "suspicious_stew": 1, + "beetroot_soup": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 suspicious_stew, 1 beetroot_soup, 1 cooked_porkchop. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 suspicious_stew, 1 beetroot_soup, 1 cooked_porkchop. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 suspicious_stew, 1 beetroot_soup, 1 cooked_porkchop. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "3": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 suspicious_stew, 1 beetroot_soup, 1 cooked_porkchop. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "4": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 suspicious_stew, 1 beetroot_soup, 1 cooked_porkchop. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 12, + "blocked_agents_count": 0, + "unique_target_items": 5, + "overall_difficulty_score": 8, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 24 + }, + "1": { + "bowl": 2 + }, + "2": { + "dandelion": 1 + }, + "3": {}, + "4": {} + } + }, + "multiagent_cooking_5_1_beetroot_soup_1_cooked_rabbit_1_cookie_1_pumpkin_pie": { + "conversation": "Let's work together to make pumpkin_pie, beetroot_soup, cooked_rabbit, cookie.", + "agent_count": 5, + "target": { + "pumpkin_pie": 1, + "beetroot_soup": 1, + "cooked_rabbit": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 beetroot_soup, 1 cooked_rabbit, 1 cookie. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 beetroot_soup, 1 cooked_rabbit, 1 cookie. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 beetroot_soup, 1 cooked_rabbit, 1 cookie. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 beetroot_soup, 1 cooked_rabbit, 1 cookie. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "4": "Collaborate with agents around you to make 1 pumpkin_pie, 1 beetroot_soup, 1 cooked_rabbit, 1 cookie. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 12, + "blocked_agents_count": 0, + "unique_target_items": 4, + "overall_difficulty_score": 7, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "egg": 1 + }, + "1": { + "bowl": 1 + }, + "2": { + "coal": 8 + }, + "3": { + "cocoa_beans": 1 + }, + "4": {} + } + }, + "multiagent_cooking_5_1_cooked_porkchop_1_cooked_rabbit_1_mushroom_stew_1_suspicious_stew_blocked_access_0_1_2_3_4": { + "conversation": "Let's work together to make cooked_rabbit, cooked_porkchop, mushroom_stew, suspicious_stew.", + "agent_count": 5, + "target": { + "cooked_rabbit": 1, + "cooked_porkchop": 1, + "mushroom_stew": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1", + "2", + "3", + "4" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 mushroom_stew, 1 suspicious_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 mushroom_stew, 1 suspicious_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 mushroom_stew, 1 suspicious_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "3": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 mushroom_stew, 1 suspicious_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "4": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 mushroom_stew, 1 suspicious_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 10, + "blocked_agents_count": 5, + "unique_target_items": 4, + "overall_difficulty_score": 12, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": { + "bowl": 2 + }, + "2": { + "dandelion": 1 + }, + "3": {}, + "4": {} + } + }, + "multiagent_cooking_5_1_cooked_chicken_1_cooked_mutton_1_cooked_rabbit_1_golden_carrot": { + "conversation": "Let's work together to make cooked_chicken, golden_carrot, cooked_rabbit, cooked_mutton.", + "agent_count": 5, + "target": { + "cooked_chicken": 1, + "golden_carrot": 1, + "cooked_rabbit": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cooked_rabbit, 1 cooked_mutton. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cooked_rabbit, 1 cooked_mutton. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cooked_rabbit, 1 cooked_mutton. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cooked_rabbit, 1 cooked_mutton. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "4": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cooked_rabbit, 1 cooked_mutton. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 9, + "blocked_agents_count": 0, + "unique_target_items": 4, + "overall_difficulty_score": 7, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 24 + }, + "1": { + "gold_ingots": 8 + }, + "2": {}, + "3": {}, + "4": {} + } + }, + "multiagent_cooking_5_1_beetroot_soup_1_cookie_1_pumpkin_pie_1_suspicious_stew_blocked_access_1_4": { + "conversation": "Let's work together to make pumpkin_pie, beetroot_soup, suspicious_stew, cookie.", + "agent_count": 5, + "target": { + "pumpkin_pie": 1, + "beetroot_soup": 1, + "suspicious_stew": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [ + "1", + "4" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 beetroot_soup, 1 suspicious_stew, 1 cookie. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 beetroot_soup, 1 suspicious_stew, 1 cookie. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 beetroot_soup, 1 suspicious_stew, 1 cookie. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 beetroot_soup, 1 suspicious_stew, 1 cookie. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "4": "Collaborate with agents around you to make 1 pumpkin_pie, 1 beetroot_soup, 1 suspicious_stew, 1 cookie. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 13, + "blocked_agents_count": 2, + "unique_target_items": 4, + "overall_difficulty_score": 9, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "egg": 1 + }, + "1": { + "bowl": 2 + }, + "2": { + "dandelion": 1 + }, + "3": { + "cocoa_beans": 1 + }, + "4": {} + } + }, + "multiagent_cooking_5_1_beetroot_soup_1_cooked_mutton_1_golden_carrot_1_pumpkin_pie_1_suspicious_stew_blocked_access_0_1": { + "conversation": "Let's work together to make suspicious_stew, golden_carrot, beetroot_soup, cooked_mutton, pumpkin_pie.", + "agent_count": 5, + "target": { + "suspicious_stew": 1, + "golden_carrot": 1, + "beetroot_soup": 1, + "cooked_mutton": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 golden_carrot, 1 beetroot_soup, 1 cooked_mutton, 1 pumpkin_pie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 golden_carrot, 1 beetroot_soup, 1 cooked_mutton, 1 pumpkin_pie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 golden_carrot, 1 beetroot_soup, 1 cooked_mutton, 1 pumpkin_pie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 golden_carrot, 1 beetroot_soup, 1 cooked_mutton, 1 pumpkin_pie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "4": "Collaborate with agents around you to make 1 suspicious_stew, 1 golden_carrot, 1 beetroot_soup, 1 cooked_mutton, 1 pumpkin_pie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 15, + "blocked_agents_count": 2, + "unique_target_items": 5, + "overall_difficulty_score": 10, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "bowl": 2 + }, + "1": { + "dandelion": 1 + }, + "2": { + "gold_ingots": 8 + }, + "3": { + "coal": 8 + }, + "4": { + "egg": 1 + } + } + }, + "multiagent_cooking_5_1_cooked_mutton_1_cooked_rabbit_1_golden_carrot_1_mushroom_stew_1_suspicious_stew": { + "conversation": "Let's work together to make cooked_rabbit, golden_carrot, mushroom_stew, suspicious_stew, cooked_mutton.", + "agent_count": 5, + "target": { + "cooked_rabbit": 1, + "golden_carrot": 1, + "mushroom_stew": 1, + "suspicious_stew": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot, 1 mushroom_stew, 1 suspicious_stew, 1 cooked_mutton. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot, 1 mushroom_stew, 1 suspicious_stew, 1 cooked_mutton. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot, 1 mushroom_stew, 1 suspicious_stew, 1 cooked_mutton. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "3": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot, 1 mushroom_stew, 1 suspicious_stew, 1 cooked_mutton. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "4": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot, 1 mushroom_stew, 1 suspicious_stew, 1 cooked_mutton. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 13, + "blocked_agents_count": 0, + "unique_target_items": 5, + "overall_difficulty_score": 8, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": { + "gold_ingots": 8 + }, + "2": { + "bowl": 2 + }, + "3": { + "dandelion": 1 + }, + "4": {} + } + }, + "multiagent_cooking_5_1_cooked_chicken_1_cooked_rabbit_1_golden_carrot_1_mushroom_stew_1_suspicious_stew_blocked_access_0_1_2_3_4": { + "conversation": "Let's work together to make cooked_rabbit, suspicious_stew, mushroom_stew, golden_carrot, cooked_chicken.", + "agent_count": 5, + "target": { + "cooked_rabbit": 1, + "suspicious_stew": 1, + "mushroom_stew": 1, + "golden_carrot": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1", + "2", + "3", + "4" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew, 1 mushroom_stew, 1 golden_carrot, 1 cooked_chicken. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew, 1 mushroom_stew, 1 golden_carrot, 1 cooked_chicken. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew, 1 mushroom_stew, 1 golden_carrot, 1 cooked_chicken. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "3": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew, 1 mushroom_stew, 1 golden_carrot, 1 cooked_chicken. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "4": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew, 1 mushroom_stew, 1 golden_carrot, 1 cooked_chicken. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 13, + "blocked_agents_count": 5, + "unique_target_items": 5, + "overall_difficulty_score": 13, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": { + "bowl": 2 + }, + "2": { + "dandelion": 1 + }, + "3": { + "gold_ingots": 8 + }, + "4": {} + } + }, + "multiagent_cooking_5_1_cooked_mutton_1_cookie_1_golden_carrot_1_mushroom_stew": { + "conversation": "Let's work together to make golden_carrot, cooked_mutton, mushroom_stew, cookie.", + "agent_count": 5, + "target": { + "golden_carrot": 1, + "cooked_mutton": 1, + "mushroom_stew": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton, 1 mushroom_stew, 1 cookie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton, 1 mushroom_stew, 1 cookie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "2": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton, 1 mushroom_stew, 1 cookie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "3": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton, 1 mushroom_stew, 1 cookie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "4": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton, 1 mushroom_stew, 1 cookie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 11, + "blocked_agents_count": 0, + "unique_target_items": 4, + "overall_difficulty_score": 7, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "gold_ingots": 8 + }, + "1": { + "coal": 8 + }, + "2": { + "bowl": 1 + }, + "3": { + "cocoa_beans": 1 + }, + "4": {} + } + }, + "multiagent_cooking_5_1_cooked_chicken_1_cooked_rabbit_1_cookie_1_golden_carrot_blocked_access_0_1_2_3_4": { + "conversation": "Let's work together to make cooked_chicken, cooked_rabbit, golden_carrot, cookie.", + "agent_count": 5, + "target": { + "cooked_chicken": 1, + "cooked_rabbit": 1, + "golden_carrot": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1", + "2", + "3", + "4" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 golden_carrot, 1 cookie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 golden_carrot, 1 cookie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 golden_carrot, 1 cookie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 golden_carrot, 1 cookie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "4": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 golden_carrot, 1 cookie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 10, + "blocked_agents_count": 5, + "unique_target_items": 4, + "overall_difficulty_score": 12, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": { + "gold_ingots": 8 + }, + "2": { + "cocoa_beans": 1 + }, + "3": {}, + "4": {} + } + }, + "multiagent_cooking_5_1_cooked_chicken_1_cookie_1_mushroom_stew_1_suspicious_stew_blocked_access_0_2": { + "conversation": "Let's work together to make mushroom_stew, suspicious_stew, cooked_chicken, cookie.", + "agent_count": 5, + "target": { + "mushroom_stew": 1, + "suspicious_stew": 1, + "cooked_chicken": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [ + "2", + "0" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 cooked_chicken, 1 cookie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 cooked_chicken, 1 cookie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 cooked_chicken, 1 cookie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 cooked_chicken, 1 cookie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "4": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 cooked_chicken, 1 cookie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 11, + "blocked_agents_count": 2, + "unique_target_items": 4, + "overall_difficulty_score": 9, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "bowl": 2 + }, + "1": { + "dandelion": 1 + }, + "2": { + "coal": 8 + }, + "3": { + "cocoa_beans": 1 + }, + "4": {} + } + }, + "multiagent_cooking_5_1_beetroot_soup_1_cooked_chicken_1_golden_carrot_1_pumpkin_pie_1_suspicious_stew": { + "conversation": "Let's work together to make beetroot_soup, suspicious_stew, golden_carrot, pumpkin_pie, cooked_chicken.", + "agent_count": 5, + "target": { + "beetroot_soup": 1, + "suspicious_stew": 1, + "golden_carrot": 1, + "pumpkin_pie": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 suspicious_stew, 1 golden_carrot, 1 pumpkin_pie, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 suspicious_stew, 1 golden_carrot, 1 pumpkin_pie, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 suspicious_stew, 1 golden_carrot, 1 pumpkin_pie, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "3": "Collaborate with agents around you to make 1 beetroot_soup, 1 suspicious_stew, 1 golden_carrot, 1 pumpkin_pie, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "4": "Collaborate with agents around you to make 1 beetroot_soup, 1 suspicious_stew, 1 golden_carrot, 1 pumpkin_pie, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 15, + "blocked_agents_count": 0, + "unique_target_items": 5, + "overall_difficulty_score": 8, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "bowl": 2 + }, + "1": { + "dandelion": 1 + }, + "2": { + "gold_ingots": 8 + }, + "3": { + "egg": 1 + }, + "4": { + "coal": 8 + } + } + }, + "multiagent_cooking_5_1_beetroot_soup_1_cooked_chicken_1_cooked_porkchop_1_golden_carrot_1_suspicious_stew_blocked_access_0_1_2_3_4": { + "conversation": "Let's work together to make suspicious_stew, cooked_chicken, cooked_porkchop, beetroot_soup, golden_carrot.", + "agent_count": 5, + "target": { + "suspicious_stew": 1, + "cooked_chicken": 1, + "cooked_porkchop": 1, + "beetroot_soup": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1", + "2", + "3", + "4" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_porkchop, 1 beetroot_soup, 1 golden_carrot. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_porkchop, 1 beetroot_soup, 1 golden_carrot. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_porkchop, 1 beetroot_soup, 1 golden_carrot. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_porkchop, 1 beetroot_soup, 1 golden_carrot. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "4": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_porkchop, 1 beetroot_soup, 1 golden_carrot. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 13, + "blocked_agents_count": 5, + "unique_target_items": 5, + "overall_difficulty_score": 13, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "bowl": 2 + }, + "1": { + "dandelion": 1 + }, + "2": { + "coal": 16 + }, + "3": { + "gold_ingots": 8 + }, + "4": {} + } + }, + "multiagent_cooking_5_1_cooked_chicken_1_cookie_1_golden_carrot_1_mushroom_stew_blocked_access_2_3": { + "conversation": "Let's work together to make mushroom_stew, golden_carrot, cooked_chicken, cookie.", + "agent_count": 5, + "target": { + "mushroom_stew": 1, + "golden_carrot": 1, + "cooked_chicken": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [ + "2", + "3" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 cooked_chicken, 1 cookie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 cooked_chicken, 1 cookie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 cooked_chicken, 1 cookie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 cooked_chicken, 1 cookie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "4": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 cooked_chicken, 1 cookie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 11, + "blocked_agents_count": 2, + "unique_target_items": 4, + "overall_difficulty_score": 9, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "gold_ingots": 8 + }, + "2": { + "coal": 8 + }, + "3": { + "cocoa_beans": 1 + }, + "4": {} + } + }, + "multiagent_cooking_5_1_beetroot_soup_1_cooked_mutton_1_cookie_1_golden_carrot_blocked_access_0_3": { + "conversation": "Let's work together to make beetroot_soup, cooked_mutton, cookie, golden_carrot.", + "agent_count": 5, + "target": { + "beetroot_soup": 1, + "cooked_mutton": 1, + "cookie": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [ + "3", + "0" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 cookie, 1 golden_carrot. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 cookie, 1 golden_carrot. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 cookie, 1 golden_carrot. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "3": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 cookie, 1 golden_carrot. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "4": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 cookie, 1 golden_carrot. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 11, + "blocked_agents_count": 2, + "unique_target_items": 4, + "overall_difficulty_score": 9, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 8 + }, + "2": { + "cocoa_beans": 1 + }, + "3": { + "gold_ingots": 8 + }, + "4": {} + } + }, + "multiagent_cooking_5_1_beetroot_soup_1_cooked_chicken_1_cooked_mutton_1_suspicious_stew": { + "conversation": "Let's work together to make beetroot_soup, cooked_mutton, suspicious_stew, cooked_chicken.", + "agent_count": 5, + "target": { + "beetroot_soup": 1, + "cooked_mutton": 1, + "suspicious_stew": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 suspicious_stew, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 suspicious_stew, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 suspicious_stew, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "3": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 suspicious_stew, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "4": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 suspicious_stew, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 10, + "blocked_agents_count": 0, + "unique_target_items": 4, + "overall_difficulty_score": 7, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "bowl": 2 + }, + "1": { + "coal": 16 + }, + "2": { + "dandelion": 1 + }, + "3": {}, + "4": {} + } + }, + "multiagent_cooking_5_1_beetroot_soup_1_cooked_chicken_1_cooked_porkchop_1_cooked_rabbit_1_cookie_blocked_access_0_1_2_3_4": { + "conversation": "Let's work together to make cooked_porkchop, beetroot_soup, cooked_chicken, cookie, cooked_rabbit.", + "agent_count": 5, + "target": { + "cooked_porkchop": 1, + "beetroot_soup": 1, + "cooked_chicken": 1, + "cookie": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1", + "2", + "3", + "4" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 beetroot_soup, 1 cooked_chicken, 1 cookie, 1 cooked_rabbit. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 beetroot_soup, 1 cooked_chicken, 1 cookie, 1 cooked_rabbit. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 beetroot_soup, 1 cooked_chicken, 1 cookie, 1 cooked_rabbit. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "3": "Collaborate with agents around you to make 1 cooked_porkchop, 1 beetroot_soup, 1 cooked_chicken, 1 cookie, 1 cooked_rabbit. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "4": "Collaborate with agents around you to make 1 cooked_porkchop, 1 beetroot_soup, 1 cooked_chicken, 1 cookie, 1 cooked_rabbit. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 12, + "blocked_agents_count": 5, + "unique_target_items": 5, + "overall_difficulty_score": 13, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 24 + }, + "1": { + "bowl": 1 + }, + "2": { + "cocoa_beans": 1 + }, + "3": {}, + "4": {} + } + }, + "multiagent_cooking_5_1_cooked_chicken_1_cooked_mutton_1_cooked_rabbit_1_mushroom_stew_1_pumpkin_pie": { + "conversation": "Let's work together to make cooked_rabbit, pumpkin_pie, cooked_mutton, cooked_chicken, mushroom_stew.", + "agent_count": 5, + "target": { + "cooked_rabbit": 1, + "pumpkin_pie": 1, + "cooked_mutton": 1, + "cooked_chicken": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie, 1 cooked_mutton, 1 cooked_chicken, 1 mushroom_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie, 1 cooked_mutton, 1 cooked_chicken, 1 mushroom_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie, 1 cooked_mutton, 1 cooked_chicken, 1 mushroom_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "3": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie, 1 cooked_mutton, 1 cooked_chicken, 1 mushroom_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "4": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie, 1 cooked_mutton, 1 cooked_chicken, 1 mushroom_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 13, + "blocked_agents_count": 0, + "unique_target_items": 5, + "overall_difficulty_score": 8, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 24 + }, + "1": { + "egg": 1 + }, + "2": { + "bowl": 1 + }, + "3": {}, + "4": {} + } + }, + "multiagent_cooking_5_1_cooked_mutton_1_cooked_porkchop_1_cookie_1_mushroom_stew_1_suspicious_stew": { + "conversation": "Let's work together to make mushroom_stew, cooked_mutton, suspicious_stew, cookie, cooked_porkchop.", + "agent_count": 5, + "target": { + "mushroom_stew": 1, + "cooked_mutton": 1, + "suspicious_stew": 1, + "cookie": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 suspicious_stew, 1 cookie, 1 cooked_porkchop. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 suspicious_stew, 1 cookie, 1 cooked_porkchop. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 suspicious_stew, 1 cookie, 1 cooked_porkchop. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 suspicious_stew, 1 cookie, 1 cooked_porkchop. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "4": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 suspicious_stew, 1 cookie, 1 cooked_porkchop. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 13, + "blocked_agents_count": 0, + "unique_target_items": 5, + "overall_difficulty_score": 8, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "bowl": 2 + }, + "1": { + "coal": 16 + }, + "2": { + "dandelion": 1 + }, + "3": { + "cocoa_beans": 1 + }, + "4": {} + } + }, + "multiagent_cooking_5_1_beetroot_soup_1_cooked_chicken_1_cooked_mutton_1_cooked_porkchop_blocked_access_2_3": { + "conversation": "Let's work together to make cooked_porkchop, cooked_mutton, beetroot_soup, cooked_chicken.", + "agent_count": 5, + "target": { + "cooked_porkchop": 1, + "cooked_mutton": 1, + "beetroot_soup": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [ + "2", + "3" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton, 1 beetroot_soup, 1 cooked_chicken. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton, 1 beetroot_soup, 1 cooked_chicken. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton, 1 beetroot_soup, 1 cooked_chicken. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "3": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton, 1 beetroot_soup, 1 cooked_chicken. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "4": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton, 1 beetroot_soup, 1 cooked_chicken. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 9, + "blocked_agents_count": 2, + "unique_target_items": 4, + "overall_difficulty_score": 9, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 24 + }, + "1": { + "bowl": 1 + }, + "2": {}, + "3": {}, + "4": {} + } + }, + "multiagent_cooking_5_1_beetroot_soup_1_cooked_mutton_1_cooked_rabbit_1_cookie_1_suspicious_stew_blocked_access_0_3": { + "conversation": "Let's work together to make cookie, cooked_rabbit, beetroot_soup, cooked_mutton, suspicious_stew.", + "agent_count": 5, + "target": { + "cookie": 1, + "cooked_rabbit": 1, + "beetroot_soup": 1, + "cooked_mutton": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [ + "3", + "0" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit, 1 beetroot_soup, 1 cooked_mutton, 1 suspicious_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit, 1 beetroot_soup, 1 cooked_mutton, 1 suspicious_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "2": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit, 1 beetroot_soup, 1 cooked_mutton, 1 suspicious_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "3": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit, 1 beetroot_soup, 1 cooked_mutton, 1 suspicious_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "4": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit, 1 beetroot_soup, 1 cooked_mutton, 1 suspicious_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 13, + "blocked_agents_count": 2, + "unique_target_items": 5, + "overall_difficulty_score": 10, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "cocoa_beans": 1 + }, + "1": { + "coal": 16 + }, + "2": { + "bowl": 2 + }, + "3": { + "dandelion": 1 + }, + "4": {} + } + }, + "multiagent_cooking_5_1_cooked_porkchop_1_cookie_1_mushroom_stew_1_pumpkin_pie": { + "conversation": "Let's work together to make mushroom_stew, cooked_porkchop, pumpkin_pie, cookie.", + "agent_count": 5, + "target": { + "mushroom_stew": 1, + "cooked_porkchop": 1, + "pumpkin_pie": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop, 1 pumpkin_pie, 1 cookie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop, 1 pumpkin_pie, 1 cookie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop, 1 pumpkin_pie, 1 cookie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop, 1 pumpkin_pie, 1 cookie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "4": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop, 1 pumpkin_pie, 1 cookie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 12, + "blocked_agents_count": 0, + "unique_target_items": 4, + "overall_difficulty_score": 7, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 8 + }, + "2": { + "egg": 1 + }, + "3": { + "cocoa_beans": 1 + }, + "4": {} + } + }, + "multiagent_cooking_5_1_cooked_chicken_1_cooked_porkchop_1_golden_carrot_1_mushroom_stew_1_pumpkin_pie_blocked_access_0_1_2_3_4": { + "conversation": "Let's work together to make cooked_chicken, golden_carrot, cooked_porkchop, pumpkin_pie, mushroom_stew.", + "agent_count": 5, + "target": { + "cooked_chicken": 1, + "golden_carrot": 1, + "cooked_porkchop": 1, + "pumpkin_pie": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1", + "2", + "3", + "4" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cooked_porkchop, 1 pumpkin_pie, 1 mushroom_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cooked_porkchop, 1 pumpkin_pie, 1 mushroom_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cooked_porkchop, 1 pumpkin_pie, 1 mushroom_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cooked_porkchop, 1 pumpkin_pie, 1 mushroom_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "4": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cooked_porkchop, 1 pumpkin_pie, 1 mushroom_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 14, + "blocked_agents_count": 5, + "unique_target_items": 5, + "overall_difficulty_score": 13, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": { + "gold_ingots": 8 + }, + "2": { + "egg": 1 + }, + "3": { + "bowl": 1 + }, + "4": {} + } + }, + "multiagent_cooking_5_1_beetroot_soup_1_cooked_chicken_1_cooked_mutton_1_golden_carrot_1_pumpkin_pie_blocked_access_0_4": { + "conversation": "Let's work together to make beetroot_soup, pumpkin_pie, cooked_mutton, golden_carrot, cooked_chicken.", + "agent_count": 5, + "target": { + "beetroot_soup": 1, + "pumpkin_pie": 1, + "cooked_mutton": 1, + "golden_carrot": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [ + "0", + "4" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie, 1 cooked_mutton, 1 golden_carrot, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie, 1 cooked_mutton, 1 golden_carrot, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie, 1 cooked_mutton, 1 golden_carrot, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "3": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie, 1 cooked_mutton, 1 golden_carrot, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "4": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie, 1 cooked_mutton, 1 golden_carrot, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 14, + "blocked_agents_count": 2, + "unique_target_items": 5, + "overall_difficulty_score": 10, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "egg": 1 + }, + "2": { + "coal": 16 + }, + "3": { + "gold_ingots": 8 + }, + "4": {} + } + }, + "multiagent_cooking_5_1_beetroot_soup_1_cooked_chicken_1_cooked_mutton_1_cookie_1_golden_carrot": { + "conversation": "Let's work together to make cooked_chicken, golden_carrot, cookie, beetroot_soup, cooked_mutton.", + "agent_count": 5, + "target": { + "cooked_chicken": 1, + "golden_carrot": 1, + "cookie": 1, + "beetroot_soup": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cookie, 1 beetroot_soup, 1 cooked_mutton. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cookie, 1 beetroot_soup, 1 cooked_mutton. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cookie, 1 beetroot_soup, 1 cooked_mutton. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cookie, 1 beetroot_soup, 1 cooked_mutton. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "4": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cookie, 1 beetroot_soup, 1 cooked_mutton. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 13, + "blocked_agents_count": 0, + "unique_target_items": 5, + "overall_difficulty_score": 8, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 16 + }, + "1": { + "gold_ingots": 8 + }, + "2": { + "cocoa_beans": 1 + }, + "3": { + "bowl": 1 + }, + "4": {} + } + } +} \ No newline at end of file diff --git a/tasks/cooking_tasks/train_tasks/train_tasks_3_agents.json b/tasks/cooking_tasks/train_tasks/train_tasks_3_agents.json index aeb364c..35e9248 100644 --- a/tasks/cooking_tasks/train_tasks/train_tasks_3_agents.json +++ b/tasks/cooking_tasks/train_tasks/train_tasks_3_agents.json @@ -8,7 +8,7 @@ "pumpkin_pie": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 500, "recipes": { "golden_carrot": [ "Step 1: Go to the farm and collect 1 carrot.", @@ -52,7 +52,7 @@ "cooked_rabbit": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 500, "recipes": { "mushroom_stew": [ "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", @@ -95,7 +95,7 @@ "suspicious_stew": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 500, "recipes": { "cookie": [ "Step 1: Go to the farm and collect 2 wheat.", @@ -134,7 +134,7 @@ "suspicious_stew": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 500, "recipes": { "golden_carrot": [ "Step 1: Go to the farm and collect 1 carrot.", @@ -178,7 +178,7 @@ "pumpkin_pie": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 500, "recipes": { "cooked_chicken": [ "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", @@ -220,7 +220,7 @@ "beetroot_soup": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 500, "recipes": { "golden_carrot": [ "Step 1: Go to the farm and collect 1 carrot.", @@ -265,7 +265,7 @@ "pumpkin_pie": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 500, "recipes": { "cooked_rabbit": [ "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", @@ -307,7 +307,7 @@ "cooked_rabbit": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 500, "recipes": { "cooked_porkchop": [ "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", @@ -349,7 +349,7 @@ "golden_carrot": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 500, "recipes": { "cooked_chicken": [ "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", @@ -387,7 +387,7 @@ "cooked_mutton": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 500, "recipes": { "cooked_rabbit": [ "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", @@ -431,7 +431,7 @@ "cooked_porkchop": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 500, "recipes": { "pumpkin_pie": [ "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", @@ -473,7 +473,7 @@ "cooked_porkchop": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 500, "recipes": { "suspicious_stew": [ "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", @@ -514,7 +514,7 @@ "suspicious_stew": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 500, "recipes": { "mushroom_stew": [ "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", @@ -560,7 +560,7 @@ "cooked_mutton": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 500, "recipes": { "cooked_chicken": [ "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", @@ -602,7 +602,7 @@ "beetroot_soup": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 500, "recipes": { "cooked_porkchop": [ "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", @@ -644,7 +644,7 @@ "golden_carrot": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 500, "recipes": { "suspicious_stew": [ "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", @@ -685,7 +685,7 @@ "cooked_mutton": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 500, "recipes": { "golden_carrot": [ "Step 1: Go to the farm and collect 1 carrot.", @@ -724,7 +724,7 @@ "pumpkin_pie": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 500, "recipes": { "cooked_porkchop": [ "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", @@ -765,7 +765,7 @@ "mushroom_stew": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 500, "recipes": { "beetroot_soup": [ "Step 1: Go to the farm and collect 6 beetroot.", @@ -808,7 +808,7 @@ "pumpkin_pie": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 500, "recipes": { "cooked_mutton": [ "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", @@ -851,7 +851,7 @@ "mushroom_stew": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 500, "recipes": { "suspicious_stew": [ "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", @@ -895,7 +895,7 @@ "beetroot_soup": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 500, "recipes": { "cooked_porkchop": [ "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", @@ -938,7 +938,7 @@ "pumpkin_pie": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 500, "recipes": { "cooked_chicken": [ "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", @@ -983,7 +983,7 @@ "cooked_rabbit": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 500, "recipes": { "mushroom_stew": [ "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", @@ -1021,7 +1021,7 @@ "cooked_chicken": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 500, "recipes": { "mushroom_stew": [ "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", @@ -1062,7 +1062,7 @@ "cooked_chicken": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 500, "recipes": { "cooked_rabbit": [ "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", @@ -1100,7 +1100,7 @@ "cooked_mutton": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 500, "recipes": { "cooked_porkchop": [ "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", @@ -1139,7 +1139,7 @@ "pumpkin_pie": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 500, "recipes": { "mushroom_stew": [ "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", @@ -1181,7 +1181,7 @@ "pumpkin_pie": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 500, "recipes": { "cooked_porkchop": [ "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", @@ -1217,7 +1217,7 @@ "cooked_porkchop": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 500, "recipes": { "suspicious_stew": [ "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", @@ -1255,7 +1255,7 @@ "cooked_chicken": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 500, "recipes": { "beetroot_soup": [ "Step 1: Go to the farm and collect 6 beetroot.", @@ -1297,7 +1297,7 @@ "cooked_porkchop": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 500, "recipes": { "golden_carrot": [ "Step 1: Go to the farm and collect 1 carrot.", @@ -1341,7 +1341,7 @@ "pumpkin_pie": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 500, "recipes": { "suspicious_stew": [ "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", @@ -1385,7 +1385,7 @@ "beetroot_soup": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 500, "recipes": { "cooked_chicken": [ "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", @@ -1424,7 +1424,7 @@ "mushroom_stew": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 500, "recipes": { "golden_carrot": [ "Step 1: Go to the farm and collect 1 carrot.", @@ -1465,7 +1465,7 @@ "cooked_rabbit": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 500, "recipes": { "cooked_porkchop": [ "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", @@ -1504,7 +1504,7 @@ "cooked_porkchop": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 500, "recipes": { "beetroot_soup": [ "Step 1: Go to the farm and collect 6 beetroot.", @@ -1545,7 +1545,7 @@ "cookie": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 500, "recipes": { "beetroot_soup": [ "Step 1: Go to the farm and collect 6 beetroot.", @@ -1582,7 +1582,7 @@ "mushroom_stew": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 500, "recipes": { "cooked_mutton": [ "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", @@ -1626,7 +1626,7 @@ "cooked_chicken": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 500, "recipes": { "cooked_rabbit": [ "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", @@ -1661,7 +1661,7 @@ "cookie": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 500, "recipes": { "cooked_mutton": [ "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", @@ -1701,7 +1701,7 @@ "pumpkin_pie": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 500, "recipes": { "golden_carrot": [ "Step 1: Go to the farm and collect 1 carrot.", @@ -1746,7 +1746,7 @@ "pumpkin_pie": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 500, "recipes": { "beetroot_soup": [ "Step 1: Go to the farm and collect 6 beetroot.", @@ -1788,7 +1788,7 @@ "suspicious_stew": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 500, "recipes": { "cooked_porkchop": [ "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", @@ -1827,7 +1827,7 @@ "cooked_chicken": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 500, "recipes": { "cooked_porkchop": [ "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", @@ -1862,7 +1862,7 @@ "cooked_mutton": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 500, "recipes": { "suspicious_stew": [ "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", @@ -1903,7 +1903,7 @@ "cooked_rabbit": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 500, "recipes": { "pumpkin_pie": [ "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", @@ -1942,7 +1942,7 @@ "suspicious_stew": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 500, "recipes": { "golden_carrot": [ "Step 1: Go to the farm and collect 1 carrot.", @@ -1985,7 +1985,7 @@ "cooked_porkchop": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 500, "recipes": { "cooked_chicken": [ "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", @@ -2026,7 +2026,7 @@ "cookie": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 500, "recipes": { "cooked_chicken": [ "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", @@ -2063,7 +2063,7 @@ "cooked_rabbit": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 500, "recipes": { "mushroom_stew": [ "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", @@ -2098,7 +2098,7 @@ "cooked_chicken": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 500, "recipes": { "pumpkin_pie": [ "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", @@ -2139,7 +2139,7 @@ "cooked_mutton": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 500, "recipes": { "beetroot_soup": [ "Step 1: Go to the farm and collect 6 beetroot.", @@ -2179,7 +2179,7 @@ "beetroot_soup": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 500, "recipes": { "cooked_chicken": [ "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", @@ -2219,7 +2219,7 @@ "pumpkin_pie": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 500, "recipes": { "cooked_mutton": [ "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", @@ -2258,7 +2258,7 @@ "golden_carrot": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 500, "recipes": { "cooked_rabbit": [ "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", @@ -2301,7 +2301,7 @@ "cooked_rabbit": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 500, "recipes": { "cookie": [ "Step 1: Go to the farm and collect 2 wheat.", @@ -2345,7 +2345,7 @@ "mushroom_stew": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 500, "recipes": { "pumpkin_pie": [ "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", @@ -2389,7 +2389,7 @@ "cooked_chicken": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 500, "recipes": { "golden_carrot": [ "Step 1: Go to the farm and collect 1 carrot.", @@ -2432,7 +2432,7 @@ "cookie": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 500, "recipes": { "golden_carrot": [ "Step 1: Go to the farm and collect 1 carrot.", @@ -2473,7 +2473,7 @@ "cookie": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 500, "recipes": { "cooked_chicken": [ "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", @@ -2514,7 +2514,7 @@ "golden_carrot": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 500, "recipes": { "cooked_mutton": [ "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", @@ -2553,7 +2553,7 @@ "pumpkin_pie": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 500, "recipes": { "cooked_rabbit": [ "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", @@ -2590,7 +2590,7 @@ "cookie": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 500, "recipes": { "cooked_chicken": [ "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", @@ -2631,7 +2631,7 @@ "cooked_chicken": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 500, "recipes": { "pumpkin_pie": [ "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", @@ -2673,7 +2673,7 @@ "cooked_rabbit": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 500, "recipes": { "cooked_mutton": [ "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", @@ -2714,7 +2714,7 @@ "pumpkin_pie": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 500, "recipes": { "beetroot_soup": [ "Step 1: Go to the farm and collect 6 beetroot.", @@ -2751,7 +2751,7 @@ "cookie": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 500, "recipes": { "cooked_mutton": [ "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", @@ -2787,7 +2787,7 @@ "beetroot_soup": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 500, "recipes": { "cooked_mutton": [ "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", @@ -2828,7 +2828,7 @@ "cooked_porkchop": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 500, "recipes": { "cooked_chicken": [ "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", diff --git a/tasks/cooking_tasks/train_tasks/train_tasks_4_agents.json b/tasks/cooking_tasks/train_tasks/train_tasks_4_agents.json index 422a4db..f074fd8 100644 --- a/tasks/cooking_tasks/train_tasks/train_tasks_4_agents.json +++ b/tasks/cooking_tasks/train_tasks/train_tasks_4_agents.json @@ -8,7 +8,7 @@ "beetroot_soup": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "golden_carrot": [ "Step 1: Go to the farm and collect 1 carrot.", @@ -56,7 +56,7 @@ "pumpkin_pie": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "cooked_porkchop": [ "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", @@ -104,7 +104,7 @@ "cooked_chicken": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "pumpkin_pie": [ "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", @@ -156,7 +156,7 @@ "suspicious_stew": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "golden_carrot": [ "Step 1: Go to the farm and collect 1 carrot.", @@ -204,7 +204,7 @@ "golden_carrot": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "pumpkin_pie": [ "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", @@ -254,7 +254,7 @@ "beetroot_soup": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "pumpkin_pie": [ "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", @@ -302,7 +302,7 @@ "suspicious_stew": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "mushroom_stew": [ "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", @@ -351,7 +351,7 @@ "cooked_porkchop": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "golden_carrot": [ "Step 1: Go to the farm and collect 1 carrot.", @@ -399,7 +399,7 @@ "mushroom_stew": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "pumpkin_pie": [ "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", @@ -448,7 +448,7 @@ "pumpkin_pie": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "mushroom_stew": [ "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", @@ -500,7 +500,7 @@ "suspicious_stew": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "cooked_chicken": [ "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", @@ -546,7 +546,7 @@ "suspicious_stew": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "cookie": [ "Step 1: Go to the farm and collect 2 wheat.", @@ -588,7 +588,7 @@ "cookie": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "suspicious_stew": [ "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", @@ -630,7 +630,7 @@ "cooked_mutton": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "suspicious_stew": [ "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", @@ -675,7 +675,7 @@ "cooked_rabbit": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "cooked_chicken": [ "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", @@ -721,7 +721,7 @@ "beetroot_soup": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "suspicious_stew": [ "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", @@ -773,7 +773,7 @@ "cookie": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "golden_carrot": [ "Step 1: Go to the farm and collect 1 carrot.", @@ -823,7 +823,7 @@ "pumpkin_pie": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "cooked_mutton": [ "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", @@ -871,7 +871,7 @@ "cooked_rabbit": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "golden_carrot": [ "Step 1: Go to the farm and collect 1 carrot.", @@ -913,7 +913,7 @@ "suspicious_stew": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "cooked_chicken": [ "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", @@ -958,7 +958,7 @@ "cookie": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "pumpkin_pie": [ "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", @@ -1002,7 +1002,7 @@ "cookie": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "cooked_mutton": [ "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", @@ -1048,7 +1048,7 @@ "cooked_mutton": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "cooked_porkchop": [ "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", @@ -1093,7 +1093,7 @@ "golden_carrot": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "mushroom_stew": [ "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", @@ -1144,7 +1144,7 @@ "pumpkin_pie": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "cookie": [ "Step 1: Go to the farm and collect 2 wheat.", @@ -1192,7 +1192,7 @@ "suspicious_stew": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "cooked_rabbit": [ "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", @@ -1238,7 +1238,7 @@ "golden_carrot": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "cooked_porkchop": [ "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", @@ -1285,7 +1285,7 @@ "suspicious_stew": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "cookie": [ "Step 1: Go to the farm and collect 2 wheat.", @@ -1334,7 +1334,7 @@ "pumpkin_pie": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "mushroom_stew": [ "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", @@ -1388,7 +1388,7 @@ "cooked_rabbit": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "mushroom_stew": [ "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", @@ -1435,7 +1435,7 @@ "cooked_chicken": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "beetroot_soup": [ "Step 1: Go to the farm and collect 6 beetroot.", @@ -1482,7 +1482,7 @@ "cooked_mutton": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "golden_carrot": [ "Step 1: Go to the farm and collect 1 carrot.", @@ -1533,7 +1533,7 @@ "mushroom_stew": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "cooked_rabbit": [ "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", @@ -1581,7 +1581,7 @@ "cooked_mutton": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "pumpkin_pie": [ "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", @@ -1632,7 +1632,7 @@ "cooked_rabbit": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "cooked_mutton": [ "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", @@ -1677,7 +1677,7 @@ "pumpkin_pie": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "suspicious_stew": [ "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", @@ -1728,7 +1728,7 @@ "mushroom_stew": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "cooked_porkchop": [ "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", @@ -1779,7 +1779,7 @@ "cooked_porkchop": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "golden_carrot": [ "Step 1: Go to the farm and collect 1 carrot.", @@ -1824,7 +1824,7 @@ "cooked_mutton": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "cookie": [ "Step 1: Go to the farm and collect 2 wheat.", @@ -1865,7 +1865,7 @@ "suspicious_stew": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "cookie": [ "Step 1: Go to the farm and collect 2 wheat.", @@ -1909,7 +1909,7 @@ "pumpkin_pie": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "cookie": [ "Step 1: Go to the farm and collect 2 wheat.", @@ -1958,7 +1958,7 @@ "cooked_porkchop": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "suspicious_stew": [ "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", @@ -2004,7 +2004,7 @@ "beetroot_soup": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "golden_carrot": [ "Step 1: Go to the farm and collect 1 carrot.", @@ -2050,7 +2050,7 @@ "cooked_porkchop": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "beetroot_soup": [ "Step 1: Go to the farm and collect 6 beetroot.", @@ -2098,7 +2098,7 @@ "pumpkin_pie": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "mushroom_stew": [ "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", @@ -2147,7 +2147,7 @@ "golden_carrot": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "cooked_rabbit": [ "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", @@ -2194,7 +2194,7 @@ "mushroom_stew": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "pumpkin_pie": [ "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", @@ -2247,7 +2247,7 @@ "cooked_rabbit": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "suspicious_stew": [ "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", @@ -2289,7 +2289,7 @@ "suspicious_stew": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "cookie": [ "Step 1: Go to the farm and collect 2 wheat.", @@ -2340,7 +2340,7 @@ "cooked_porkchop": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "golden_carrot": [ "Step 1: Go to the farm and collect 1 carrot.", @@ -2389,7 +2389,7 @@ "cooked_rabbit": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "cooked_chicken": [ "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", @@ -2432,7 +2432,7 @@ "golden_carrot": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "cooked_porkchop": [ "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", @@ -2477,7 +2477,7 @@ "beetroot_soup": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "cooked_mutton": [ "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", @@ -2523,7 +2523,7 @@ "suspicious_stew": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "cooked_mutton": [ "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", @@ -2567,7 +2567,7 @@ "cooked_rabbit": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "beetroot_soup": [ "Step 1: Go to the farm and collect 6 beetroot.", @@ -2613,7 +2613,7 @@ "suspicious_stew": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "mushroom_stew": [ "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", @@ -2668,7 +2668,7 @@ "cooked_rabbit": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "pumpkin_pie": [ "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", @@ -2719,7 +2719,7 @@ "beetroot_soup": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "mushroom_stew": [ "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", @@ -2764,7 +2764,7 @@ "beetroot_soup": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "mushroom_stew": [ "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", @@ -2811,7 +2811,7 @@ "beetroot_soup": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "cooked_rabbit": [ "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", @@ -2860,7 +2860,7 @@ "cooked_mutton": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "cookie": [ "Step 1: Go to the farm and collect 2 wheat.", @@ -2908,7 +2908,7 @@ "mushroom_stew": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "cooked_porkchop": [ "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", @@ -2953,7 +2953,7 @@ "cooked_chicken": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "cooked_mutton": [ "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", @@ -2999,7 +2999,7 @@ "cooked_porkchop": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "golden_carrot": [ "Step 1: Go to the farm and collect 1 carrot.", @@ -3041,7 +3041,7 @@ "pumpkin_pie": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "suspicious_stew": [ "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", @@ -3095,7 +3095,7 @@ "beetroot_soup": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "cooked_chicken": [ "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", @@ -3144,7 +3144,7 @@ "cooked_chicken": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "mushroom_stew": [ "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", @@ -3196,7 +3196,7 @@ "mushroom_stew": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "cooked_rabbit": [ "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", @@ -3249,7 +3249,7 @@ "cooked_chicken": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "cooked_rabbit": [ "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", @@ -3299,7 +3299,7 @@ "mushroom_stew": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "cooked_chicken": [ "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", diff --git a/tasks/cooking_tasks/train_tasks/train_tasks_5_agents.json b/tasks/cooking_tasks/train_tasks/train_tasks_5_agents.json index b918c5a..1704d6a 100644 --- a/tasks/cooking_tasks/train_tasks/train_tasks_5_agents.json +++ b/tasks/cooking_tasks/train_tasks/train_tasks_5_agents.json @@ -10,7 +10,7 @@ "pumpkin_pie": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "cooked_porkchop": [ "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", @@ -66,7 +66,7 @@ "cooked_chicken": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "beetroot_soup": [ "Step 1: Go to the farm and collect 6 beetroot.", @@ -118,7 +118,7 @@ "cookie": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "cooked_mutton": [ "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", @@ -170,7 +170,7 @@ "cooked_rabbit": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "mushroom_stew": [ "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", @@ -226,7 +226,7 @@ "pumpkin_pie": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "cooked_mutton": [ "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", @@ -282,7 +282,7 @@ "cooked_mutton": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "pumpkin_pie": [ "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", @@ -338,7 +338,7 @@ "pumpkin_pie": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "cookie": [ "Step 1: Go to the farm and collect 2 wheat.", @@ -397,7 +397,7 @@ "cookie": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "cooked_rabbit": [ "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", @@ -453,7 +453,7 @@ "beetroot_soup": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "suspicious_stew": [ "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", @@ -506,7 +506,7 @@ "suspicious_stew": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "cooked_porkchop": [ "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", @@ -558,7 +558,7 @@ "cooked_porkchop": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "pumpkin_pie": [ "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", @@ -611,7 +611,7 @@ "mushroom_stew": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "suspicious_stew": [ "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", @@ -663,7 +663,7 @@ "pumpkin_pie": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "cooked_chicken": [ "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", @@ -716,7 +716,7 @@ "cookie": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "suspicious_stew": [ "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", @@ -777,7 +777,7 @@ "cooked_porkchop": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "cooked_mutton": [ "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", @@ -825,7 +825,7 @@ "mushroom_stew": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "cooked_chicken": [ "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", @@ -874,7 +874,7 @@ "mushroom_stew": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "cookie": [ "Step 1: Go to the farm and collect 2 wheat.", @@ -927,7 +927,7 @@ "cooked_porkchop": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "suspicious_stew": [ "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", @@ -985,7 +985,7 @@ "cookie": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "cooked_chicken": [ "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", @@ -1037,7 +1037,7 @@ "golden_carrot": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "suspicious_stew": [ "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", @@ -1093,7 +1093,7 @@ "mushroom_stew": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "cooked_chicken": [ "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", @@ -1144,7 +1144,7 @@ "cookie": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "cooked_mutton": [ "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", @@ -1192,7 +1192,7 @@ "pumpkin_pie": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "cooked_porkchop": [ "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", @@ -1246,7 +1246,7 @@ "pumpkin_pie": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "cooked_porkchop": [ "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", @@ -1295,7 +1295,7 @@ "cooked_chicken": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "pumpkin_pie": [ "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", @@ -1351,7 +1351,7 @@ "mushroom_stew": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "cooked_rabbit": [ "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", @@ -1401,7 +1401,7 @@ "beetroot_soup": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "mushroom_stew": [ "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", @@ -1460,7 +1460,7 @@ "suspicious_stew": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "mushroom_stew": [ "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", @@ -1516,7 +1516,7 @@ "beetroot_soup": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "cooked_mutton": [ "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", @@ -1564,7 +1564,7 @@ "cooked_chicken": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "pumpkin_pie": [ "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", @@ -1620,7 +1620,7 @@ "suspicious_stew": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "cooked_chicken": [ "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", @@ -1672,7 +1672,7 @@ "pumpkin_pie": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "golden_carrot": [ "Step 1: Go to the farm and collect 1 carrot.", @@ -1735,7 +1735,7 @@ "cooked_mutton": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "cooked_rabbit": [ "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", @@ -1788,7 +1788,7 @@ "suspicious_stew": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "pumpkin_pie": [ "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", @@ -1842,7 +1842,7 @@ "suspicious_stew": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "cooked_porkchop": [ "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", @@ -1896,7 +1896,7 @@ "mushroom_stew": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "cooked_mutton": [ "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", @@ -1952,7 +1952,7 @@ "cooked_mutton": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "beetroot_soup": [ "Step 1: Go to the farm and collect 6 beetroot.", @@ -2004,7 +2004,7 @@ "cooked_chicken": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "cooked_porkchop": [ "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", @@ -2053,7 +2053,7 @@ "cooked_rabbit": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "beetroot_soup": [ "Step 1: Go to the farm and collect 6 beetroot.", @@ -2112,7 +2112,7 @@ "golden_carrot": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "cooked_rabbit": [ "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", @@ -2162,7 +2162,7 @@ "cooked_rabbit": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "beetroot_soup": [ "Step 1: Go to the farm and collect 6 beetroot.", @@ -2217,7 +2217,7 @@ "cooked_chicken": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "cookie": [ "Step 1: Go to the farm and collect 2 wheat.", @@ -2269,7 +2269,7 @@ "cooked_porkchop": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "cookie": [ "Step 1: Go to the farm and collect 2 wheat.", @@ -2320,7 +2320,7 @@ "cooked_chicken": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "golden_carrot": [ "Step 1: Go to the farm and collect 1 carrot.", @@ -2372,7 +2372,7 @@ "cooked_rabbit": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "beetroot_soup": [ "Step 1: Go to the farm and collect 6 beetroot.", @@ -2429,7 +2429,7 @@ "cooked_porkchop": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "cooked_mutton": [ "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", @@ -2481,7 +2481,7 @@ "cookie": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "pumpkin_pie": [ "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", @@ -2531,7 +2531,7 @@ "suspicious_stew": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "cooked_rabbit": [ "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", @@ -2585,7 +2585,7 @@ "cooked_mutton": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "cooked_chicken": [ "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", @@ -2632,7 +2632,7 @@ "cookie": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "pumpkin_pie": [ "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", @@ -2687,7 +2687,7 @@ "pumpkin_pie": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "suspicious_stew": [ "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", @@ -2746,7 +2746,7 @@ "cooked_mutton": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "cooked_rabbit": [ "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", @@ -2800,7 +2800,7 @@ "cooked_chicken": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "cooked_rabbit": [ "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", @@ -2859,7 +2859,7 @@ "cookie": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "golden_carrot": [ "Step 1: Go to the farm and collect 1 carrot.", @@ -2908,7 +2908,7 @@ "cookie": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "cooked_chicken": [ "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", @@ -2962,7 +2962,7 @@ "cookie": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "mushroom_stew": [ "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", @@ -3015,7 +3015,7 @@ "cooked_chicken": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "beetroot_soup": [ "Step 1: Go to the farm and collect 6 beetroot.", @@ -3071,7 +3071,7 @@ "golden_carrot": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "suspicious_stew": [ "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", @@ -3130,7 +3130,7 @@ "cookie": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "mushroom_stew": [ "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", @@ -3182,7 +3182,7 @@ "golden_carrot": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "beetroot_soup": [ "Step 1: Go to the farm and collect 6 beetroot.", @@ -3234,7 +3234,7 @@ "cooked_chicken": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "beetroot_soup": [ "Step 1: Go to the farm and collect 6 beetroot.", @@ -3283,7 +3283,7 @@ "cooked_rabbit": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "cooked_porkchop": [ "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", @@ -3342,7 +3342,7 @@ "mushroom_stew": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "cooked_rabbit": [ "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", @@ -3396,7 +3396,7 @@ "cooked_porkchop": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "mushroom_stew": [ "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", @@ -3449,7 +3449,7 @@ "cooked_chicken": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "cooked_porkchop": [ "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", @@ -3500,7 +3500,7 @@ "suspicious_stew": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "cookie": [ "Step 1: Go to the farm and collect 2 wheat.", @@ -3556,7 +3556,7 @@ "cookie": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "mushroom_stew": [ "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", @@ -3607,7 +3607,7 @@ "mushroom_stew": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "cooked_chicken": [ "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", @@ -3668,7 +3668,7 @@ "cooked_chicken": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "beetroot_soup": [ "Step 1: Go to the farm and collect 6 beetroot.", @@ -3726,7 +3726,7 @@ "cooked_mutton": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 1500, "recipes": { "cooked_chicken": [ "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", From bdd42b219d364b7a87b58557fdbf1db948cbe1bf Mon Sep 17 00:00:00 2001 From: aeromechanic000 Date: Tue, 6 May 2025 17:23:35 +0800 Subject: [PATCH 028/101] return key instead of keys[name] --- README.md | 2 +- src/utils/keys.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f291c2f..df6b1e6 100644 --- a/README.md +++ b/README.md @@ -172,4 +172,4 @@ Some of the node modules that we depend on have bugs in them. To add a patch, ch Year = {2023}, url={https://github.com/kolbytn/mindcraft} } -``` +``` \ No newline at end of file diff --git a/src/utils/keys.js b/src/utils/keys.js index 745ae6c..af77c4d 100644 --- a/src/utils/keys.js +++ b/src/utils/keys.js @@ -16,7 +16,7 @@ export function getKey(name) { if (!key) { throw new Error(`API key "${name}" not found in keys.json or environment variables!`); } - return keys[name]; + return key; } export function hasKey(name) { From 156e5d87fc123a3bb0f317b4fc3fe87706e62de0 Mon Sep 17 00:00:00 2001 From: Isadora White Date: Tue, 6 May 2025 11:44:39 -0700 Subject: [PATCH 029/101] fixing gold ingot issue --- ...ake_collaboration_required_cooking_task.py | 22 +- .../require_collab_test/2_agent.json | 16 +- .../require_collab_test/3_agent.json | 16 +- .../require_collab_test/4_agent.json | 16 +- .../require_collab_test/5_agent.json | 16 +- .../require_collab_train/2_agent.json | 18 +- .../2_agent_blocked_access.json | 18 +- .../require_collab_train/3_agent.json | 176 +++++----- .../require_collab_train/4_agent.json | 278 ++++++++-------- .../require_collab_train/5_agent.json | 306 +++++++++--------- 10 files changed, 441 insertions(+), 441 deletions(-) diff --git a/tasks/cooking_tasks/make_collaboration_required_cooking_task.py b/tasks/cooking_tasks/make_collaboration_required_cooking_task.py index 8482332..8bcd9cc 100644 --- a/tasks/cooking_tasks/make_collaboration_required_cooking_task.py +++ b/tasks/cooking_tasks/make_collaboration_required_cooking_task.py @@ -202,7 +202,7 @@ COOKING_ITEMS = { "description": "A magical golden apple", "complexity": "hard", "required_chest_items": { - "gold_ingots": 8, + "gold_ingot": 8, "apple": 1 } }, @@ -217,7 +217,7 @@ COOKING_ITEMS = { "description": "A magical golden carrot", "complexity": "hard", "required_chest_items": { - "gold_ingots": 8, + "gold_ingot": 8, } }, @@ -229,7 +229,7 @@ chest_items = { "dandelion": 64, "cocoa_beans": 64, "apple": 64, - "gold_ingots": 8, + "gold_ingot": 8, "salmon": 64, "cod": 64, "kelp": 64, @@ -292,13 +292,13 @@ def reconfigure_tasks(task_path, new_task_path): with open(new_task_path, 'w') as f: json.dump(tasks, f, indent=4) -# reconfigure_tasks("mindcraft/tasks/cooking_tasks/equal_load_test_tasks/2_agent.json", "mindcraft/tasks/cooking_tasks/require_collab_test/2_agent.json") -# reconfigure_tasks("mindcraft/tasks/cooking_tasks/equal_load_test_tasks/3_agent.json", "mindcraft/tasks/cooking_tasks/require_collab_test/3_agent.json") -# reconfigure_tasks("mindcraft/tasks/cooking_tasks/equal_load_test_tasks/4_agent.json", "mindcraft/tasks/cooking_tasks/require_collab_test/4_agent.json") -# reconfigure_tasks("mindcraft/tasks/cooking_tasks/equal_load_test_tasks/5_agent.json", "mindcraft/tasks/cooking_tasks/require_collab_test/5_agent.json") +reconfigure_tasks("mindcraft/tasks/cooking_tasks/equal_load_test_tasks/2_agent.json", "mindcraft/tasks/cooking_tasks/require_collab_test/2_agent.json") +reconfigure_tasks("mindcraft/tasks/cooking_tasks/equal_load_test_tasks/3_agent.json", "mindcraft/tasks/cooking_tasks/require_collab_test/3_agent.json") +reconfigure_tasks("mindcraft/tasks/cooking_tasks/equal_load_test_tasks/4_agent.json", "mindcraft/tasks/cooking_tasks/require_collab_test/4_agent.json") +reconfigure_tasks("mindcraft/tasks/cooking_tasks/equal_load_test_tasks/5_agent.json", "mindcraft/tasks/cooking_tasks/require_collab_test/5_agent.json") -# reconfigure_tasks("mindcraft/tasks/cooking_tasks/train_tasks/2_agent_cooking_train_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_train/2_agent.json") +reconfigure_tasks("mindcraft/tasks/cooking_tasks/train_tasks/2_agent_cooking_train_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_train/2_agent.json") reconfigure_tasks("mindcraft/tasks/cooking_tasks/train_tasks/train_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_train/2_agent_blocked_access.json") -# reconfigure_tasks("mindcraft/tasks/cooking_tasks/train_tasks/train_tasks_3_agents.json", "mindcraft/tasks/cooking_tasks/require_collab_train/3_agent.json") -# reconfigure_tasks("mindcraft/tasks/cooking_tasks/train_tasks/train_tasks_4_agents.json", "mindcraft/tasks/cooking_tasks/require_collab_train/4_agent.json") -# reconfigure_tasks("mindcraft/tasks/cooking_tasks/train_tasks/train_tasks_5_agents.json", "mindcraft/tasks/cooking_tasks/require_collab_train/5_agent.json") \ No newline at end of file +reconfigure_tasks("mindcraft/tasks/cooking_tasks/train_tasks/train_tasks_3_agents.json", "mindcraft/tasks/cooking_tasks/require_collab_train/3_agent.json") +reconfigure_tasks("mindcraft/tasks/cooking_tasks/train_tasks/train_tasks_4_agents.json", "mindcraft/tasks/cooking_tasks/require_collab_train/4_agent.json") +reconfigure_tasks("mindcraft/tasks/cooking_tasks/train_tasks/train_tasks_5_agents.json", "mindcraft/tasks/cooking_tasks/require_collab_train/5_agent.json") \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_test/2_agent.json b/tasks/cooking_tasks/require_collab_test/2_agent.json index dc97acc..8a2c3f2 100644 --- a/tasks/cooking_tasks/require_collab_test/2_agent.json +++ b/tasks/cooking_tasks/require_collab_test/2_agent.json @@ -110,7 +110,7 @@ "initial_inventory": { "0": { "milk_bucket": 3, - "gold_ingots": 8, + "gold_ingot": 8, "coal": 8 }, "1": { @@ -164,7 +164,7 @@ "apple": 1 }, "1": { - "gold_ingots": 8 + "gold_ingot": 8 } } }, @@ -217,7 +217,7 @@ "initial_inventory": { "0": { "milk_bucket": 3, - "gold_ingots": 8, + "gold_ingot": 8, "coal": 16 }, "1": { @@ -278,7 +278,7 @@ "egg": 1 }, "1": { - "gold_ingots": 8, + "gold_ingot": 8, "milk_bucket": 3, "coal": 8 } @@ -332,7 +332,7 @@ "apple": 1 }, "1": { - "gold_ingots": 8, + "gold_ingot": 8, "coal": 8 } } @@ -388,7 +388,7 @@ }, "1": { "egg": 1, - "gold_ingots": 8 + "gold_ingot": 8 } } }, @@ -451,7 +451,7 @@ "egg": 1 }, "1": { - "gold_ingots": 8, + "gold_ingot": 8, "milk_bucket": 3, "bowl": 1 } @@ -514,7 +514,7 @@ "milk_bucket": 3 }, "1": { - "gold_ingots": 8, + "gold_ingot": 8, "bowl": 1, "egg": 1 } diff --git a/tasks/cooking_tasks/require_collab_test/3_agent.json b/tasks/cooking_tasks/require_collab_test/3_agent.json index 25e01d4..6b975d1 100644 --- a/tasks/cooking_tasks/require_collab_test/3_agent.json +++ b/tasks/cooking_tasks/require_collab_test/3_agent.json @@ -121,7 +121,7 @@ "coal": 8 }, "2": { - "gold_ingots": 8, + "gold_ingot": 8, "bowl": 1 } } @@ -170,7 +170,7 @@ "coal": 16 }, "1": { - "gold_ingots": 8 + "gold_ingot": 8 }, "2": { "apple": 1 @@ -234,7 +234,7 @@ "coal": 16 }, "2": { - "gold_ingots": 8 + "gold_ingot": 8 } } }, @@ -290,7 +290,7 @@ "milk_bucket": 3 }, "1": { - "gold_ingots": 8, + "gold_ingot": 8, "egg": 1 }, "2": { @@ -348,7 +348,7 @@ "coal": 8 }, "1": { - "gold_ingots": 8 + "gold_ingot": 8 }, "2": { "apple": 1 @@ -402,7 +402,7 @@ "initial_inventory": { "0": { "milk_bucket": 3, - "gold_ingots": 8 + "gold_ingot": 8 }, "1": { "egg": 1, @@ -472,7 +472,7 @@ "milk_bucket": 3 }, "1": { - "gold_ingots": 8, + "gold_ingot": 8, "egg": 1 }, "2": { @@ -538,7 +538,7 @@ "bowl": 1 }, "1": { - "gold_ingots": 8, + "gold_ingot": 8, "milk_bucket": 3 }, "2": { diff --git a/tasks/cooking_tasks/require_collab_test/4_agent.json b/tasks/cooking_tasks/require_collab_test/4_agent.json index dfc1ac4..0faf624 100644 --- a/tasks/cooking_tasks/require_collab_test/4_agent.json +++ b/tasks/cooking_tasks/require_collab_test/4_agent.json @@ -125,7 +125,7 @@ "bowl": 1 }, "2": { - "gold_ingots": 8 + "gold_ingot": 8 }, "3": { "apple": 1 @@ -177,7 +177,7 @@ "coal": 16 }, "1": { - "gold_ingots": 8 + "gold_ingot": 8 }, "2": { "apple": 1 @@ -242,7 +242,7 @@ "egg": 1 }, "2": { - "gold_ingots": 8 + "gold_ingot": 8 }, "3": { "apple": 1 @@ -302,7 +302,7 @@ "egg": 1 }, "1": { - "gold_ingots": 8, + "gold_ingot": 8, "coal": 8 }, "2": { @@ -362,7 +362,7 @@ "bowl": 1 }, "1": { - "gold_ingots": 8 + "gold_ingot": 8 }, "2": { "apple": 1 @@ -430,7 +430,7 @@ "bowl": 1 }, "3": { - "gold_ingots": 8 + "gold_ingot": 8 } } }, @@ -494,7 +494,7 @@ "egg": 1 }, "1": { - "gold_ingots": 8, + "gold_ingot": 8, "bowl": 1 }, "2": { @@ -563,7 +563,7 @@ "milk_bucket": 3 }, "1": { - "gold_ingots": 8, + "gold_ingot": 8, "egg": 1 }, "2": { diff --git a/tasks/cooking_tasks/require_collab_test/5_agent.json b/tasks/cooking_tasks/require_collab_test/5_agent.json index 7b37fb9..806da33 100644 --- a/tasks/cooking_tasks/require_collab_test/5_agent.json +++ b/tasks/cooking_tasks/require_collab_test/5_agent.json @@ -127,7 +127,7 @@ "egg": 1 }, "2": { - "gold_ingots": 8 + "gold_ingot": 8 }, "3": { "apple": 1 @@ -183,7 +183,7 @@ "coal": 16 }, "1": { - "gold_ingots": 8 + "gold_ingot": 8 }, "2": { "apple": 1 @@ -249,7 +249,7 @@ "egg": 1 }, "2": { - "gold_ingots": 8 + "gold_ingot": 8 }, "3": { "apple": 1 @@ -313,7 +313,7 @@ "coal": 8 }, "1": { - "gold_ingots": 8 + "gold_ingot": 8 }, "2": { "apple": 1 @@ -376,7 +376,7 @@ "bowl": 1 }, "1": { - "gold_ingots": 8 + "gold_ingot": 8 }, "2": { "apple": 1 @@ -444,7 +444,7 @@ "bowl": 1 }, "3": { - "gold_ingots": 8 + "gold_ingot": 8 }, "4": { "apple": 1 @@ -512,7 +512,7 @@ "bowl": 1 }, "1": { - "gold_ingots": 8 + "gold_ingot": 8 }, "2": { "apple": 1 @@ -584,7 +584,7 @@ "egg": 1 }, "1": { - "gold_ingots": 8 + "gold_ingot": 8 }, "2": { "apple": 1 diff --git a/tasks/cooking_tasks/require_collab_train/2_agent.json b/tasks/cooking_tasks/require_collab_train/2_agent.json index 1a2c00b..08953ca 100644 --- a/tasks/cooking_tasks/require_collab_train/2_agent.json +++ b/tasks/cooking_tasks/require_collab_train/2_agent.json @@ -31,7 +31,7 @@ "coal": 8 }, "1": { - "gold_ingots": 8 + "gold_ingot": 8 } } }, @@ -64,7 +64,7 @@ }, "initial_inventory": { "0": { - "gold_ingots": 8 + "gold_ingot": 8 }, "1": { "coal": 8 @@ -134,7 +134,7 @@ }, "initial_inventory": { "0": { - "gold_ingots": 8 + "gold_ingot": 8 }, "1": { "cocoa_beans": 1 @@ -385,7 +385,7 @@ }, "initial_inventory": { "0": { - "gold_ingots": 8 + "gold_ingot": 8 }, "1": { "coal": 8 @@ -420,7 +420,7 @@ }, "initial_inventory": { "0": { - "gold_ingots": 8 + "gold_ingot": 8 }, "1": { "bowl": 1 @@ -459,7 +459,7 @@ "egg": 1 }, "1": { - "gold_ingots": 8 + "gold_ingot": 8 } } }, @@ -602,7 +602,7 @@ "coal": 8 }, "1": { - "gold_ingots": 8 + "gold_ingot": 8 } } }, @@ -1032,7 +1032,7 @@ }, "initial_inventory": { "0": { - "gold_ingots": 8, + "gold_ingot": 8, "dandelion": 1 }, "1": { @@ -1286,7 +1286,7 @@ "bowl": 1 }, "1": { - "gold_ingots": 8 + "gold_ingot": 8 } } }, diff --git a/tasks/cooking_tasks/require_collab_train/2_agent_blocked_access.json b/tasks/cooking_tasks/require_collab_train/2_agent_blocked_access.json index b863b49..0f0c229 100644 --- a/tasks/cooking_tasks/require_collab_train/2_agent_blocked_access.json +++ b/tasks/cooking_tasks/require_collab_train/2_agent_blocked_access.json @@ -166,7 +166,7 @@ "bowl": 1 }, "1": { - "gold_ingots": 8 + "gold_ingot": 8 } } }, @@ -828,7 +828,7 @@ "egg": 1 }, "1": { - "gold_ingots": 8 + "gold_ingot": 8 } } }, @@ -872,7 +872,7 @@ "initial_inventory": { "0": { "bowl": 1, - "gold_ingots": 8 + "gold_ingot": 8 }, "1": { "dandelion": 1 @@ -1737,7 +1737,7 @@ "cocoa_beans": 1 }, "1": { - "gold_ingots": 8 + "gold_ingot": 8 } } }, @@ -1777,7 +1777,7 @@ "difficulty": "medium", "initial_inventory": { "0": { - "gold_ingots": 8 + "gold_ingot": 8 }, "1": { "bowl": 1 @@ -2001,7 +2001,7 @@ "coal": 8 }, "1": { - "gold_ingots": 8 + "gold_ingot": 8 } } }, @@ -2251,7 +2251,7 @@ "difficulty": "medium", "initial_inventory": { "0": { - "gold_ingots": 8, + "gold_ingot": 8, "dandelion": 1 }, "1": { @@ -2301,7 +2301,7 @@ "egg": 1 }, "1": { - "gold_ingots": 8 + "gold_ingot": 8 } } }, @@ -2387,7 +2387,7 @@ "difficulty": "medium", "initial_inventory": { "0": { - "gold_ingots": 8 + "gold_ingot": 8 }, "1": { "coal": 8 diff --git a/tasks/cooking_tasks/require_collab_train/3_agent.json b/tasks/cooking_tasks/require_collab_train/3_agent.json index 04d9d83..d017c45 100644 --- a/tasks/cooking_tasks/require_collab_train/3_agent.json +++ b/tasks/cooking_tasks/require_collab_train/3_agent.json @@ -32,7 +32,7 @@ "0" ], "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton, 1 pumpkin_pie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton, 1 pumpkin_pie. ", "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton, 1 pumpkin_pie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", "2": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton, 1 pumpkin_pie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" }, @@ -46,7 +46,7 @@ "difficulty": "hard", "initial_inventory": { "0": { - "gold_ingots": 8 + "gold_ingot": 8 }, "1": { "coal": 8 @@ -91,9 +91,9 @@ "2" ], "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken, 1 cooked_rabbit. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken, 1 cooked_rabbit. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken, 1 cooked_rabbit. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken, 1 cooked_rabbit. ", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken, 1 cooked_rabbit. ", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken, 1 cooked_rabbit. " }, "difficulty_metrics": { "total_recipe_steps": 7, @@ -139,7 +139,7 @@ ], "goal": { "0": "Collaborate with agents around you to make 1 cookie, 1 suspicious_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "1": "Collaborate with agents around you to make 1 cookie, 1 suspicious_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 cookie, 1 suspicious_stew. ", "2": "Collaborate with agents around you to make 1 cookie, 1 suspicious_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" }, "difficulty_metrics": { @@ -194,7 +194,7 @@ ], "goal": { "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cookie, 1 suspicious_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cookie, 1 suspicious_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cookie, 1 suspicious_stew. ", "2": "Collaborate with agents around you to make 1 golden_carrot, 1 cookie, 1 suspicious_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" }, "difficulty_metrics": { @@ -207,7 +207,7 @@ "difficulty": "hard", "initial_inventory": { "0": { - "gold_ingots": 8, + "gold_ingot": 8, "dandelion": 1 }, "1": { @@ -307,9 +307,9 @@ "2" ], "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_porkchop, 1 beetroot_soup. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_porkchop, 1 beetroot_soup. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_porkchop, 1 beetroot_soup. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_porkchop, 1 beetroot_soup. ", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_porkchop, 1 beetroot_soup. ", + "2": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_porkchop, 1 beetroot_soup. " }, "difficulty_metrics": { "total_recipe_steps": 8, @@ -321,7 +321,7 @@ "difficulty": "hard", "initial_inventory": { "0": { - "gold_ingots": 8 + "gold_ingot": 8 }, "1": { "coal": 8 @@ -422,7 +422,7 @@ ], "goal": { "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie, 1 cooked_rabbit. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie, 1 cooked_rabbit. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie, 1 cooked_rabbit. ", "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie, 1 cooked_rabbit. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" }, "difficulty_metrics": { @@ -471,7 +471,7 @@ "goal": { "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot. " }, "difficulty_metrics": { "total_recipe_steps": 5, @@ -486,7 +486,7 @@ "coal": 8 }, "1": { - "gold_ingots": 8 + "gold_ingot": 8 }, "2": {} } @@ -526,9 +526,9 @@ "2" ], "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew, 1 cooked_mutton. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew, 1 cooked_mutton. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew, 1 cooked_mutton. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew, 1 cooked_mutton. ", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew, 1 cooked_mutton. ", + "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew, 1 cooked_mutton. " }, "difficulty_metrics": { "total_recipe_steps": 7, @@ -690,9 +690,9 @@ "2" ], "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cookie, 1 suspicious_stew. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cookie, 1 suspicious_stew. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cookie, 1 suspicious_stew. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cookie, 1 suspicious_stew. ", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cookie, 1 suspicious_stew. ", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cookie, 1 suspicious_stew. " }, "difficulty_metrics": { "total_recipe_steps": 9, @@ -747,7 +747,7 @@ "0" ], "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 mushroom_stew, 1 cooked_mutton. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 mushroom_stew, 1 cooked_mutton. ", "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 mushroom_stew, 1 cooked_mutton. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 mushroom_stew, 1 cooked_mutton. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" }, @@ -802,7 +802,7 @@ "0" ], "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton, 1 beetroot_soup. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton, 1 beetroot_soup. ", "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton, 1 beetroot_soup. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton, 1 beetroot_soup. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" }, @@ -869,7 +869,7 @@ "initial_inventory": { "0": { "bowl": 1, - "gold_ingots": 8 + "gold_ingot": 8 }, "1": { "dandelion": 1 @@ -924,7 +924,7 @@ "difficulty": "medium", "initial_inventory": { "0": { - "gold_ingots": 8 + "gold_ingot": 8 }, "1": { "coal": 16 @@ -961,9 +961,9 @@ "2" ], "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie. ", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie. ", + "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie. " }, "difficulty_metrics": { "total_recipe_steps": 6, @@ -1016,7 +1016,7 @@ ], "goal": { "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 mushroom_stew. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 mushroom_stew. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 mushroom_stew. ", "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 mushroom_stew. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" }, "difficulty_metrics": { @@ -1071,7 +1071,7 @@ "0" ], "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 pumpkin_pie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 pumpkin_pie. ", "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 pumpkin_pie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 pumpkin_pie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" }, @@ -1124,7 +1124,7 @@ "0" ], "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 golden_carrot, 1 mushroom_stew. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 golden_carrot, 1 mushroom_stew. ", "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 golden_carrot, 1 mushroom_stew. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 golden_carrot, 1 mushroom_stew. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" }, @@ -1144,7 +1144,7 @@ "dandelion": 1 }, "2": { - "gold_ingots": 8 + "gold_ingot": 8 } } }, @@ -1181,7 +1181,7 @@ ], "goal": { "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 beetroot_soup. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 beetroot_soup. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 beetroot_soup. ", "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 beetroot_soup. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" }, "difficulty_metrics": { @@ -1239,9 +1239,9 @@ "2" ], "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 pumpkin_pie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 pumpkin_pie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 pumpkin_pie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 pumpkin_pie. ", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 pumpkin_pie. ", + "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 pumpkin_pie. " }, "difficulty_metrics": { "total_recipe_steps": 9, @@ -1256,7 +1256,7 @@ "coal": 8 }, "1": { - "gold_ingots": 8 + "gold_ingot": 8 }, "2": { "egg": 1 @@ -1291,7 +1291,7 @@ "goal": { "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_rabbit. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_rabbit. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_rabbit. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_rabbit. " }, "difficulty_metrics": { "total_recipe_steps": 5, @@ -1344,7 +1344,7 @@ "0" ], "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop, 1 cooked_chicken. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop, 1 cooked_chicken. ", "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop, 1 cooked_chicken. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop, 1 cooked_chicken. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" }, @@ -1395,9 +1395,9 @@ "2" ], "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken. ", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken. ", + "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken. " }, "difficulty_metrics": { "total_recipe_steps": 4, @@ -1444,9 +1444,9 @@ "2" ], "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton. ", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton. ", + "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton. " }, "difficulty_metrics": { "total_recipe_steps": 4, @@ -1592,7 +1592,7 @@ ], "goal": { "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop. ", "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" }, "difficulty_metrics": { @@ -1650,7 +1650,7 @@ "goal": { "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_rabbit, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_rabbit, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_rabbit, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_rabbit, 1 cooked_chicken. " }, "difficulty_metrics": { "total_recipe_steps": 7, @@ -1705,7 +1705,7 @@ "goal": { "0": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie, 1 cooked_porkchop. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", "1": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie, 1 cooked_porkchop. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie, 1 cooked_porkchop. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + "2": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie, 1 cooked_porkchop. " }, "difficulty_metrics": { "total_recipe_steps": 9, @@ -1717,7 +1717,7 @@ "difficulty": "hard", "initial_inventory": { "0": { - "gold_ingots": 8 + "gold_ingot": 8 }, "1": { "egg": 1 @@ -1762,7 +1762,7 @@ "goal": { "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_rabbit, 1 pumpkin_pie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_rabbit, 1 pumpkin_pie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_rabbit, 1 pumpkin_pie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" + "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_rabbit, 1 pumpkin_pie. " }, "difficulty_metrics": { "total_recipe_steps": 9, @@ -1865,9 +1865,9 @@ "2" ], "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew. ", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew. ", + "2": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew. " }, "difficulty_metrics": { "total_recipe_steps": 6, @@ -1879,7 +1879,7 @@ "difficulty": "hard", "initial_inventory": { "0": { - "gold_ingots": 8 + "gold_ingot": 8 }, "1": { "bowl": 1 @@ -1972,7 +1972,7 @@ "0" ], "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_chicken, 1 cooked_porkchop. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_chicken, 1 cooked_porkchop. ", "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_chicken, 1 cooked_porkchop. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_chicken, 1 cooked_porkchop. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" }, @@ -2073,9 +2073,9 @@ "2" ], "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cookie, 1 mushroom_stew. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cookie, 1 mushroom_stew. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 cookie, 1 mushroom_stew. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cookie, 1 mushroom_stew. ", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cookie, 1 mushroom_stew. ", + "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 cookie, 1 mushroom_stew. " }, "difficulty_metrics": { "total_recipe_steps": 8, @@ -2230,9 +2230,9 @@ "2" ], "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_porkchop, 1 pumpkin_pie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_porkchop, 1 pumpkin_pie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_porkchop, 1 pumpkin_pie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_porkchop, 1 pumpkin_pie. ", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_porkchop, 1 pumpkin_pie. ", + "2": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_porkchop, 1 pumpkin_pie. " }, "difficulty_metrics": { "total_recipe_steps": 9, @@ -2244,7 +2244,7 @@ "difficulty": "hard", "initial_inventory": { "0": { - "gold_ingots": 8 + "gold_ingot": 8 }, "1": { "coal": 8 @@ -2282,9 +2282,9 @@ "2" ], "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie. ", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie. ", + "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie. " }, "difficulty_metrics": { "total_recipe_steps": 7, @@ -2439,7 +2439,7 @@ "goal": { "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_mutton. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_mutton. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_mutton. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" + "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_mutton. " }, "difficulty_metrics": { "total_recipe_steps": 7, @@ -2488,7 +2488,7 @@ "0" ], "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_rabbit. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_rabbit. ", "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_rabbit. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_rabbit. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" }, @@ -2554,7 +2554,7 @@ "difficulty": "hard", "initial_inventory": { "0": { - "gold_ingots": 8, + "gold_ingot": 8, "dandelion": 1 }, "1": { @@ -2600,7 +2600,7 @@ "goal": { "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew, 1 cooked_porkchop. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew, 1 cooked_porkchop. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew, 1 cooked_porkchop. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew, 1 cooked_porkchop. " }, "difficulty_metrics": { "total_recipe_steps": 7, @@ -2650,7 +2650,7 @@ "goal": { "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cookie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cookie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 cookie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" + "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 cookie. " }, "difficulty_metrics": { "total_recipe_steps": 5, @@ -2745,9 +2745,9 @@ "2" ], "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken. ", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken. ", + "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken. " }, "difficulty_metrics": { "total_recipe_steps": 6, @@ -2867,7 +2867,7 @@ "coal": 8 }, "1": { - "gold_ingots": 8 + "gold_ingot": 8 }, "2": { "bowl": 1 @@ -2902,7 +2902,7 @@ ], "goal": { "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie. ", "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" }, "difficulty_metrics": { @@ -2957,7 +2957,7 @@ "goal": { "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew, 1 golden_carrot. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew, 1 golden_carrot. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew, 1 golden_carrot. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew, 1 golden_carrot. " }, "difficulty_metrics": { "total_recipe_steps": 8, @@ -2975,7 +2975,7 @@ "bowl": 1 }, "2": { - "gold_ingots": 8 + "gold_ingot": 8 } } }, @@ -3014,9 +3014,9 @@ "2" ], "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_mutton, 1 cooked_rabbit. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_mutton, 1 cooked_rabbit. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "2": "Collaborate with agents around you to make 1 cookie, 1 cooked_mutton, 1 cooked_rabbit. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" + "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_mutton, 1 cooked_rabbit. ", + "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_mutton, 1 cooked_rabbit. ", + "2": "Collaborate with agents around you to make 1 cookie, 1 cooked_mutton, 1 cooked_rabbit. " }, "difficulty_metrics": { "total_recipe_steps": 7, @@ -3069,7 +3069,7 @@ "0" ], "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_porkchop, 1 mushroom_stew. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_porkchop, 1 mushroom_stew. ", "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_porkchop, 1 mushroom_stew. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_porkchop, 1 mushroom_stew. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" }, @@ -3127,7 +3127,7 @@ "goal": { "0": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_chicken. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", "1": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_chicken. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_chicken. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + "2": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_chicken. " }, "difficulty_metrics": { "total_recipe_steps": 8, @@ -3139,7 +3139,7 @@ "difficulty": "hard", "initial_inventory": { "0": { - "gold_ingots": 8, + "gold_ingot": 8, "coal": 8 }, "1": { @@ -3194,7 +3194,7 @@ "difficulty": "medium", "initial_inventory": { "0": { - "gold_ingots": 8 + "gold_ingot": 8 }, "1": { "coal": 8 @@ -3306,7 +3306,7 @@ "coal": 16 }, "1": { - "gold_ingots": 8 + "gold_ingot": 8 }, "2": {} } @@ -3503,7 +3503,7 @@ "goal": { "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 suspicious_stew, 1 cooked_rabbit. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 suspicious_stew, 1 cooked_rabbit. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 suspicious_stew, 1 cooked_rabbit. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" + "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 suspicious_stew, 1 cooked_rabbit. " }, "difficulty_metrics": { "total_recipe_steps": 7, @@ -3705,7 +3705,7 @@ ], "goal": { "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cooked_porkchop. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cooked_porkchop. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cooked_porkchop. ", "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cooked_porkchop. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" }, "difficulty_metrics": { @@ -3721,7 +3721,7 @@ "coal": 16 }, "1": { - "gold_ingots": 8 + "gold_ingot": 8 }, "2": {} } diff --git a/tasks/cooking_tasks/require_collab_train/4_agent.json b/tasks/cooking_tasks/require_collab_train/4_agent.json index 8aac04d..70b49ca 100644 --- a/tasks/cooking_tasks/require_collab_train/4_agent.json +++ b/tasks/cooking_tasks/require_collab_train/4_agent.json @@ -33,9 +33,9 @@ ], "goal": { "0": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie, 1 beetroot_soup. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie, 1 beetroot_soup. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie, 1 beetroot_soup. ", "2": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie, 1 beetroot_soup. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "3": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie, 1 beetroot_soup. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" + "3": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie, 1 beetroot_soup. " }, "difficulty_metrics": { "total_recipe_steps": 10, @@ -47,7 +47,7 @@ "difficulty": "hard", "initial_inventory": { "0": { - "gold_ingots": 8 + "gold_ingot": 8 }, "1": { "egg": 1 @@ -114,7 +114,7 @@ "coal": 16 }, "1": { - "gold_ingots": 8 + "gold_ingot": 8 }, "2": { "egg": 1 @@ -163,9 +163,9 @@ ], "goal": { "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 mushroom_stew, 1 cooked_chicken. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 mushroom_stew, 1 cooked_chicken. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 mushroom_stew, 1 cooked_chicken. ", "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 mushroom_stew, 1 cooked_chicken. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 mushroom_stew, 1 cooked_chicken. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 mushroom_stew, 1 cooked_chicken. " }, "difficulty_metrics": { "total_recipe_steps": 12, @@ -241,7 +241,7 @@ "difficulty": "hard", "initial_inventory": { "0": { - "gold_ingots": 8 + "gold_ingot": 8 }, "1": { "bowl": 2 @@ -295,9 +295,9 @@ "0" ], "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken, 1 cooked_porkchop, 1 golden_carrot. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken, 1 cooked_porkchop, 1 golden_carrot. ", "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken, 1 cooked_porkchop, 1 golden_carrot. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken, 1 cooked_porkchop, 1 golden_carrot. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken, 1 cooked_porkchop, 1 golden_carrot. ", "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken, 1 cooked_porkchop, 1 golden_carrot. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" }, "difficulty_metrics": { @@ -316,7 +316,7 @@ "coal": 16 }, "2": { - "gold_ingots": 8 + "gold_ingot": 8 }, "3": {} } @@ -356,8 +356,8 @@ "goal": { "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 beetroot_soup. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 beetroot_soup. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 beetroot_soup. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 beetroot_soup. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" + "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 beetroot_soup. ", + "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 beetroot_soup. " }, "difficulty_metrics": { "total_recipe_steps": 10, @@ -479,10 +479,10 @@ "3" ], "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_porkchop. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_porkchop. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_porkchop. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "3": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_porkchop. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_porkchop. ", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_porkchop. ", + "2": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_porkchop. ", + "3": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_porkchop. " }, "difficulty_metrics": { "total_recipe_steps": 8, @@ -494,7 +494,7 @@ "difficulty": "hard", "initial_inventory": { "0": { - "gold_ingots": 8 + "gold_ingot": 8 }, "1": { "bowl": 1 @@ -614,8 +614,8 @@ "goal": { "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken, 1 beetroot_soup, 1 pumpkin_pie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken, 1 beetroot_soup, 1 pumpkin_pie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken, 1 beetroot_soup, 1 pumpkin_pie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken, 1 beetroot_soup, 1 pumpkin_pie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken, 1 beetroot_soup, 1 pumpkin_pie. ", + "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken, 1 beetroot_soup, 1 pumpkin_pie. " }, "difficulty_metrics": { "total_recipe_steps": 12, @@ -693,7 +693,7 @@ "coal": 16 }, "1": { - "gold_ingots": 8 + "gold_ingot": 8 }, "2": { "bowl": 1 @@ -854,9 +854,9 @@ ], "goal": { "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop, 1 cooked_mutton. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop, 1 cooked_mutton. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop, 1 cooked_mutton. ", "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop, 1 cooked_mutton. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop, 1 cooked_mutton. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" + "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop, 1 cooked_mutton. " }, "difficulty_metrics": { "total_recipe_steps": 7, @@ -981,8 +981,8 @@ "0" ], "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop, 1 pumpkin_pie, 1 beetroot_soup. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop, 1 pumpkin_pie, 1 beetroot_soup. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop, 1 pumpkin_pie, 1 beetroot_soup. ", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop, 1 pumpkin_pie, 1 beetroot_soup. ", "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop, 1 pumpkin_pie, 1 beetroot_soup. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop, 1 pumpkin_pie, 1 beetroot_soup. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" }, @@ -1060,7 +1060,7 @@ "difficulty": "hard", "initial_inventory": { "0": { - "gold_ingots": 8 + "gold_ingot": 8 }, "1": { "bowl": 1 @@ -1184,7 +1184,7 @@ "difficulty": "medium", "initial_inventory": { "0": { - "gold_ingots": 8 + "gold_ingot": 8 }, "1": { "bowl": 1 @@ -1228,10 +1228,10 @@ "0" ], "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 mushroom_stew, 1 suspicious_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 mushroom_stew, 1 suspicious_stew. ", "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 mushroom_stew, 1 suspicious_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 mushroom_stew, 1 suspicious_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 mushroom_stew, 1 suspicious_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 mushroom_stew, 1 suspicious_stew. " }, "difficulty_metrics": { "total_recipe_steps": 8, @@ -1366,7 +1366,7 @@ "coal": 16 }, "1": { - "gold_ingots": 8 + "gold_ingot": 8 }, "2": { "cocoa_beans": 1 @@ -1408,10 +1408,10 @@ "3" ], "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 cooked_mutton. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 cooked_mutton. ", "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 cooked_mutton. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 cooked_mutton. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "3": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 cooked_mutton. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" + "3": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 cooked_mutton. " }, "difficulty_metrics": { "total_recipe_steps": 7, @@ -1473,10 +1473,10 @@ "0" ], "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_rabbit, 1 beetroot_soup, 1 golden_carrot. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_rabbit, 1 beetroot_soup, 1 golden_carrot. ", "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_rabbit, 1 beetroot_soup, 1 golden_carrot. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_rabbit, 1 beetroot_soup, 1 golden_carrot. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_rabbit, 1 beetroot_soup, 1 golden_carrot. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_rabbit, 1 beetroot_soup, 1 golden_carrot. " }, "difficulty_metrics": { "total_recipe_steps": 11, @@ -1494,7 +1494,7 @@ "coal": 8 }, "2": { - "gold_ingots": 8 + "gold_ingot": 8 }, "3": {} } @@ -1687,7 +1687,7 @@ "dandelion": 1 }, "3": { - "gold_ingots": 8 + "gold_ingot": 8 } } }, @@ -1725,10 +1725,10 @@ "3" ], "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew, 1 suspicious_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "1": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew, 1 suspicious_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "2": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew, 1 suspicious_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "3": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew, 1 suspicious_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + "0": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew, 1 suspicious_stew. ", + "1": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew, 1 suspicious_stew. ", + "2": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew, 1 suspicious_stew. ", + "3": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew, 1 suspicious_stew. " }, "difficulty_metrics": { "total_recipe_steps": 9, @@ -1793,10 +1793,10 @@ "3" ], "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 cooked_mutton, 1 pumpkin_pie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 cooked_mutton, 1 pumpkin_pie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 cooked_mutton, 1 pumpkin_pie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 cooked_mutton, 1 pumpkin_pie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 cooked_mutton, 1 pumpkin_pie. ", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 cooked_mutton, 1 pumpkin_pie. ", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 cooked_mutton, 1 pumpkin_pie. ", + "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 cooked_mutton, 1 pumpkin_pie. " }, "difficulty_metrics": { "total_recipe_steps": 12, @@ -1811,7 +1811,7 @@ "bowl": 1 }, "1": { - "gold_ingots": 8 + "gold_ingot": 8 }, "2": { "coal": 8 @@ -1988,10 +1988,10 @@ "0" ], "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie, 1 cooked_porkchop, 1 cooked_mutton. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie, 1 cooked_porkchop, 1 cooked_mutton. ", "1": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie, 1 cooked_porkchop, 1 cooked_mutton. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", "2": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie, 1 cooked_porkchop, 1 cooked_mutton. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "3": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie, 1 cooked_porkchop, 1 cooked_mutton. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" + "3": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie, 1 cooked_porkchop, 1 cooked_mutton. " }, "difficulty_metrics": { "total_recipe_steps": 11, @@ -2003,7 +2003,7 @@ "difficulty": "hard", "initial_inventory": { "0": { - "gold_ingots": 8 + "gold_ingot": 8 }, "1": { "egg": 1 @@ -2071,7 +2071,7 @@ "cocoa_beans": 1 }, "2": { - "gold_ingots": 8 + "gold_ingot": 8 }, "3": { "bowl": 1 @@ -2119,9 +2119,9 @@ ], "goal": { "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 golden_carrot, 1 cooked_mutton. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 golden_carrot, 1 cooked_mutton. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 golden_carrot, 1 cooked_mutton. ", "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 golden_carrot, 1 cooked_mutton. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 golden_carrot, 1 cooked_mutton. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" + "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 golden_carrot, 1 cooked_mutton. " }, "difficulty_metrics": { "total_recipe_steps": 12, @@ -2139,7 +2139,7 @@ "cocoa_beans": 1 }, "2": { - "gold_ingots": 8 + "gold_ingot": 8 }, "3": { "coal": 8 @@ -2181,9 +2181,9 @@ ], "goal": { "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup, 1 cooked_rabbit. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup, 1 cooked_rabbit. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup, 1 cooked_rabbit. ", "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup, 1 cooked_rabbit. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "3": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup, 1 cooked_rabbit. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" + "3": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup, 1 cooked_rabbit. " }, "difficulty_metrics": { "total_recipe_steps": 7, @@ -2246,9 +2246,9 @@ ], "goal": { "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_porkchop, 1 pumpkin_pie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_porkchop, 1 pumpkin_pie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_porkchop, 1 pumpkin_pie. ", "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_porkchop, 1 pumpkin_pie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_porkchop, 1 pumpkin_pie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" + "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_porkchop, 1 pumpkin_pie. " }, "difficulty_metrics": { "total_recipe_steps": 11, @@ -2315,10 +2315,10 @@ "3" ], "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 suspicious_stew, 1 mushroom_stew. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 suspicious_stew, 1 mushroom_stew. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 suspicious_stew, 1 mushroom_stew. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "3": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 suspicious_stew, 1 mushroom_stew. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 suspicious_stew, 1 mushroom_stew. ", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 suspicious_stew, 1 mushroom_stew. ", + "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 suspicious_stew, 1 mushroom_stew. ", + "3": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 suspicious_stew, 1 mushroom_stew. " }, "difficulty_metrics": { "total_recipe_steps": 10, @@ -2376,8 +2376,8 @@ "goal": { "0": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_porkchop. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", "1": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_porkchop. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_porkchop. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "3": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_porkchop. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + "2": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_porkchop. ", + "3": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_porkchop. " }, "difficulty_metrics": { "total_recipe_steps": 8, @@ -2389,7 +2389,7 @@ "difficulty": "hard", "initial_inventory": { "0": { - "gold_ingots": 8 + "gold_ingot": 8 }, "1": { "bowl": 1 @@ -2550,10 +2550,10 @@ "3" ], "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 golden_carrot, 1 pumpkin_pie. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "1": "Collaborate with agents around you to make 1 cookie, 1 golden_carrot, 1 pumpkin_pie. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "2": "Collaborate with agents around you to make 1 cookie, 1 golden_carrot, 1 pumpkin_pie. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "3": "Collaborate with agents around you to make 1 cookie, 1 golden_carrot, 1 pumpkin_pie. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" + "0": "Collaborate with agents around you to make 1 cookie, 1 golden_carrot, 1 pumpkin_pie. ", + "1": "Collaborate with agents around you to make 1 cookie, 1 golden_carrot, 1 pumpkin_pie. ", + "2": "Collaborate with agents around you to make 1 cookie, 1 golden_carrot, 1 pumpkin_pie. ", + "3": "Collaborate with agents around you to make 1 cookie, 1 golden_carrot, 1 pumpkin_pie. " }, "difficulty_metrics": { "total_recipe_steps": 10, @@ -2568,7 +2568,7 @@ "cocoa_beans": 1 }, "1": { - "gold_ingots": 8 + "gold_ingot": 8 }, "2": { "egg": 1 @@ -2612,10 +2612,10 @@ "3" ], "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_porkchop. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_porkchop. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_porkchop. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_porkchop. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_porkchop. ", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_porkchop. ", + "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_porkchop. ", + "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_porkchop. " }, "difficulty_metrics": { "total_recipe_steps": 7, @@ -2673,8 +2673,8 @@ "goal": { "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_chicken, 1 beetroot_soup. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_chicken, 1 beetroot_soup. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_chicken, 1 beetroot_soup. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "3": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_chicken, 1 beetroot_soup. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" + "2": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_chicken, 1 beetroot_soup. ", + "3": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_chicken, 1 beetroot_soup. " }, "difficulty_metrics": { "total_recipe_steps": 8, @@ -2686,7 +2686,7 @@ "difficulty": "hard", "initial_inventory": { "0": { - "gold_ingots": 8 + "gold_ingot": 8 }, "1": { "coal": 8 @@ -2738,9 +2738,9 @@ "2" ], "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 cooked_chicken, 1 cooked_porkchop. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 cooked_chicken, 1 cooked_porkchop. ", "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 cooked_chicken, 1 cooked_porkchop. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 cooked_chicken, 1 cooked_porkchop. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 cooked_chicken, 1 cooked_porkchop. ", "3": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 cooked_chicken, 1 cooked_porkchop. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" }, "difficulty_metrics": { @@ -2798,10 +2798,10 @@ "3" ], "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 pumpkin_pie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 pumpkin_pie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 pumpkin_pie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 pumpkin_pie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 pumpkin_pie. ", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 pumpkin_pie. ", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 pumpkin_pie. ", + "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 pumpkin_pie. " }, "difficulty_metrics": { "total_recipe_steps": 9, @@ -2882,7 +2882,7 @@ "bowl": 1 }, "2": { - "gold_ingots": 8 + "gold_ingot": 8 }, "3": {} } @@ -2929,10 +2929,10 @@ "3" ], "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_rabbit, 1 suspicious_stew, 1 mushroom_stew. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_rabbit, 1 suspicious_stew, 1 mushroom_stew. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_rabbit, 1 suspicious_stew, 1 mushroom_stew. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_rabbit, 1 suspicious_stew, 1 mushroom_stew. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_rabbit, 1 suspicious_stew, 1 mushroom_stew. ", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_rabbit, 1 suspicious_stew, 1 mushroom_stew. ", + "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_rabbit, 1 suspicious_stew, 1 mushroom_stew. ", + "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_rabbit, 1 suspicious_stew, 1 mushroom_stew. " }, "difficulty_metrics": { "total_recipe_steps": 12, @@ -3054,9 +3054,9 @@ ], "goal": { "0": "Collaborate with agents around you to make 1 cookie, 1 beetroot_soup, 1 cooked_mutton, 1 suspicious_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "1": "Collaborate with agents around you to make 1 cookie, 1 beetroot_soup, 1 cooked_mutton, 1 suspicious_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 cookie, 1 beetroot_soup, 1 cooked_mutton, 1 suspicious_stew. ", "2": "Collaborate with agents around you to make 1 cookie, 1 beetroot_soup, 1 cooked_mutton, 1 suspicious_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "3": "Collaborate with agents around you to make 1 cookie, 1 beetroot_soup, 1 cooked_mutton, 1 suspicious_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + "3": "Collaborate with agents around you to make 1 cookie, 1 beetroot_soup, 1 cooked_mutton, 1 suspicious_stew. " }, "difficulty_metrics": { "total_recipe_steps": 11, @@ -3123,8 +3123,8 @@ "goal": { "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_chicken, 1 cookie, 1 cooked_porkchop. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_chicken, 1 cookie, 1 cooked_porkchop. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_chicken, 1 cookie, 1 cooked_porkchop. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "3": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_chicken, 1 cookie, 1 cooked_porkchop. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + "2": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_chicken, 1 cookie, 1 cooked_porkchop. ", + "3": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_chicken, 1 cookie, 1 cooked_porkchop. " }, "difficulty_metrics": { "total_recipe_steps": 10, @@ -3136,7 +3136,7 @@ "difficulty": "hard", "initial_inventory": { "0": { - "gold_ingots": 8 + "gold_ingot": 8 }, "1": { "coal": 16 @@ -3183,9 +3183,9 @@ ], "goal": { "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_mutton, 1 cooked_rabbit. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_mutton, 1 cooked_rabbit. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_mutton, 1 cooked_rabbit. ", "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_mutton, 1 cooked_rabbit. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_mutton, 1 cooked_rabbit. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" + "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_mutton, 1 cooked_rabbit. " }, "difficulty_metrics": { "total_recipe_steps": 6, @@ -3240,8 +3240,8 @@ "goal": { "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 golden_carrot. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 golden_carrot. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 golden_carrot. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "3": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 golden_carrot. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 golden_carrot. ", + "3": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 golden_carrot. " }, "difficulty_metrics": { "total_recipe_steps": 7, @@ -3256,7 +3256,7 @@ "coal": 16 }, "1": { - "gold_ingots": 8 + "gold_ingot": 8 }, "2": {}, "3": {} @@ -3317,7 +3317,7 @@ "coal": 16 }, "1": { - "gold_ingots": 8 + "gold_ingot": 8 }, "2": { "bowl": 1 @@ -3359,8 +3359,8 @@ "0" ], "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 suspicious_stew. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 suspicious_stew. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 suspicious_stew. ", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 suspicious_stew. ", "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 suspicious_stew. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", "3": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 suspicious_stew. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" }, @@ -3419,8 +3419,8 @@ ], "goal": { "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 golden_carrot, 1 cooked_rabbit. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 golden_carrot, 1 cooked_rabbit. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 golden_carrot, 1 cooked_rabbit. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 golden_carrot, 1 cooked_rabbit. ", + "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 golden_carrot, 1 cooked_rabbit. ", "3": "Collaborate with agents around you to make 1 beetroot_soup, 1 golden_carrot, 1 cooked_rabbit. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" }, "difficulty_metrics": { @@ -3436,7 +3436,7 @@ "bowl": 1 }, "1": { - "gold_ingots": 8 + "gold_ingot": 8 }, "2": { "coal": 8 @@ -3485,10 +3485,10 @@ "3" ], "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 pumpkin_pie, 1 suspicious_stew. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 pumpkin_pie, 1 suspicious_stew. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 pumpkin_pie, 1 suspicious_stew. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 pumpkin_pie, 1 suspicious_stew. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 pumpkin_pie, 1 suspicious_stew. ", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 pumpkin_pie, 1 suspicious_stew. ", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 pumpkin_pie, 1 suspicious_stew. ", + "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 pumpkin_pie, 1 suspicious_stew. " }, "difficulty_metrics": { "total_recipe_steps": 13, @@ -3551,9 +3551,9 @@ "0" ], "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 beetroot_soup, 1 cooked_rabbit. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 beetroot_soup, 1 cooked_rabbit. ", "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 beetroot_soup, 1 cooked_rabbit. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 beetroot_soup, 1 cooked_rabbit. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 beetroot_soup, 1 cooked_rabbit. ", "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 beetroot_soup, 1 cooked_rabbit. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" }, "difficulty_metrics": { @@ -3612,10 +3612,10 @@ "0" ], "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 beetroot_soup. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 beetroot_soup. ", "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 beetroot_soup. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 beetroot_soup. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 beetroot_soup. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" + "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 beetroot_soup. " }, "difficulty_metrics": { "total_recipe_steps": 8, @@ -3668,9 +3668,9 @@ "0" ], "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 beetroot_soup. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 beetroot_soup. ", "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 beetroot_soup. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 beetroot_soup. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 beetroot_soup. ", "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 beetroot_soup. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" }, "difficulty_metrics": { @@ -3686,7 +3686,7 @@ "bowl": 2 }, "1": { - "gold_ingots": 8 + "gold_ingot": 8 }, "2": {}, "3": {} @@ -3818,7 +3818,7 @@ "dandelion": 1 }, "3": { - "gold_ingots": 8 + "gold_ingot": 8 } } }, @@ -3920,10 +3920,10 @@ "3" ], "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 cooked_chicken. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 cooked_chicken. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 cooked_chicken. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "3": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 cooked_chicken. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 cooked_chicken. ", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 cooked_chicken. ", + "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 cooked_chicken. ", + "3": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 cooked_chicken. " }, "difficulty_metrics": { "total_recipe_steps": 7, @@ -3990,7 +3990,7 @@ "difficulty": "medium", "initial_inventory": { "0": { - "gold_ingots": 8 + "gold_ingot": 8 }, "1": { "coal": 16 @@ -4041,10 +4041,10 @@ "3" ], "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cookie, 1 cooked_porkchop, 1 pumpkin_pie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cookie, 1 cooked_porkchop, 1 pumpkin_pie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cookie, 1 cooked_porkchop, 1 pumpkin_pie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 cookie, 1 cooked_porkchop, 1 pumpkin_pie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cookie, 1 cooked_porkchop, 1 pumpkin_pie. ", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cookie, 1 cooked_porkchop, 1 pumpkin_pie. ", + "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cookie, 1 cooked_porkchop, 1 pumpkin_pie. ", + "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 cookie, 1 cooked_porkchop, 1 pumpkin_pie. " }, "difficulty_metrics": { "total_recipe_steps": 12, @@ -4111,10 +4111,10 @@ "0" ], "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop, 1 cooked_mutton, 1 beetroot_soup. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop, 1 cooked_mutton, 1 beetroot_soup. ", "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop, 1 cooked_mutton, 1 beetroot_soup. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop, 1 cooked_mutton, 1 beetroot_soup. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop, 1 cooked_mutton, 1 beetroot_soup. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" + "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop, 1 cooked_mutton, 1 beetroot_soup. " }, "difficulty_metrics": { "total_recipe_steps": 9, @@ -4177,10 +4177,10 @@ "3" ], "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 cooked_mutton, 1 cooked_chicken. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 cooked_mutton, 1 cooked_chicken. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 cooked_mutton, 1 cooked_chicken. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 cooked_mutton, 1 cooked_chicken. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 cooked_mutton, 1 cooked_chicken. ", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 cooked_mutton, 1 cooked_chicken. ", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 cooked_mutton, 1 cooked_chicken. ", + "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 cooked_mutton, 1 cooked_chicken. " }, "difficulty_metrics": { "total_recipe_steps": 10, @@ -4244,10 +4244,10 @@ "3" ], "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_mutton, 1 pumpkin_pie, 1 mushroom_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_mutton, 1 pumpkin_pie, 1 mushroom_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_mutton, 1 pumpkin_pie, 1 mushroom_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "3": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_mutton, 1 pumpkin_pie, 1 mushroom_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_mutton, 1 pumpkin_pie, 1 mushroom_stew. ", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_mutton, 1 pumpkin_pie, 1 mushroom_stew. ", + "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_mutton, 1 pumpkin_pie, 1 mushroom_stew. ", + "3": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_mutton, 1 pumpkin_pie, 1 mushroom_stew. " }, "difficulty_metrics": { "total_recipe_steps": 11, @@ -4310,9 +4310,9 @@ "2" ], "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew, 1 cookie, 1 cooked_chicken. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew, 1 cookie, 1 cooked_chicken. ", "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew, 1 cookie, 1 cooked_chicken. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew, 1 cookie, 1 cooked_chicken. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew, 1 cookie, 1 cooked_chicken. ", "3": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew, 1 cookie, 1 cooked_chicken. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" }, "difficulty_metrics": { @@ -4379,10 +4379,10 @@ "3" ], "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew, 1 golden_carrot, 1 mushroom_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew, 1 golden_carrot, 1 mushroom_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew, 1 golden_carrot, 1 mushroom_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew, 1 golden_carrot, 1 mushroom_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew, 1 golden_carrot, 1 mushroom_stew. ", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew, 1 golden_carrot, 1 mushroom_stew. ", + "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew, 1 golden_carrot, 1 mushroom_stew. ", + "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew, 1 golden_carrot, 1 mushroom_stew. " }, "difficulty_metrics": { "total_recipe_steps": 11, @@ -4403,7 +4403,7 @@ "dandelion": 1 }, "3": { - "gold_ingots": 8 + "gold_ingot": 8 } } } diff --git a/tasks/cooking_tasks/require_collab_train/5_agent.json b/tasks/cooking_tasks/require_collab_train/5_agent.json index e39ee6e..ebd40b8 100644 --- a/tasks/cooking_tasks/require_collab_train/5_agent.json +++ b/tasks/cooking_tasks/require_collab_train/5_agent.json @@ -48,9 +48,9 @@ ], "goal": { "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew, 1 cooked_chicken, 1 cooked_rabbit, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew, 1 cooked_chicken, 1 cooked_rabbit, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew, 1 cooked_chicken, 1 cooked_rabbit, 1 pumpkin_pie. ", "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew, 1 cooked_chicken, 1 cooked_rabbit, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "3": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew, 1 cooked_chicken, 1 cooked_rabbit, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "3": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew, 1 cooked_chicken, 1 cooked_rabbit, 1 pumpkin_pie. ", "4": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew, 1 cooked_chicken, 1 cooked_rabbit, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" }, "difficulty_metrics": { @@ -115,10 +115,10 @@ "0" ], "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop, 1 suspicious_stew, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop, 1 suspicious_stew, 1 cooked_chicken. ", "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop, 1 suspicious_stew, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop, 1 suspicious_stew, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "3": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop, 1 suspicious_stew, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "3": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop, 1 suspicious_stew, 1 cooked_chicken. ", "4": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop, 1 suspicious_stew, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" }, "difficulty_metrics": { @@ -260,11 +260,11 @@ "4" ], "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 pumpkin_pie, 1 cooked_rabbit. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 pumpkin_pie, 1 cooked_rabbit. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 pumpkin_pie, 1 cooked_rabbit. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 pumpkin_pie, 1 cooked_rabbit. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "4": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 pumpkin_pie, 1 cooked_rabbit. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 pumpkin_pie, 1 cooked_rabbit. ", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 pumpkin_pie, 1 cooked_rabbit. ", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 pumpkin_pie, 1 cooked_rabbit. ", + "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 pumpkin_pie, 1 cooked_rabbit. ", + "4": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 pumpkin_pie, 1 cooked_rabbit. " }, "difficulty_metrics": { "total_recipe_steps": 12, @@ -334,11 +334,11 @@ "4" ], "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 cooked_porkchop, 1 pumpkin_pie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 cooked_porkchop, 1 pumpkin_pie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 cooked_porkchop, 1 pumpkin_pie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "3": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 cooked_porkchop, 1 pumpkin_pie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "4": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 cooked_porkchop, 1 pumpkin_pie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 cooked_porkchop, 1 pumpkin_pie. ", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 cooked_porkchop, 1 pumpkin_pie. ", + "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 cooked_porkchop, 1 pumpkin_pie. ", + "3": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 cooked_porkchop, 1 pumpkin_pie. ", + "4": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 cooked_porkchop, 1 pumpkin_pie. " }, "difficulty_metrics": { "total_recipe_steps": 11, @@ -430,7 +430,7 @@ "dandelion": 1 }, "3": { - "gold_ingots": 8 + "gold_ingot": 8 }, "4": { "coal": 8 @@ -484,8 +484,8 @@ ], "goal": { "0": "Collaborate with agents around you to make 1 cookie, 1 beetroot_soup, 1 cooked_mutton, 1 suspicious_stew, 1 pumpkin_pie. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "1": "Collaborate with agents around you to make 1 cookie, 1 beetroot_soup, 1 cooked_mutton, 1 suspicious_stew, 1 pumpkin_pie. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "2": "Collaborate with agents around you to make 1 cookie, 1 beetroot_soup, 1 cooked_mutton, 1 suspicious_stew, 1 pumpkin_pie. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "1": "Collaborate with agents around you to make 1 cookie, 1 beetroot_soup, 1 cooked_mutton, 1 suspicious_stew, 1 pumpkin_pie. ", + "2": "Collaborate with agents around you to make 1 cookie, 1 beetroot_soup, 1 cooked_mutton, 1 suspicious_stew, 1 pumpkin_pie. ", "3": "Collaborate with agents around you to make 1 cookie, 1 beetroot_soup, 1 cooked_mutton, 1 suspicious_stew, 1 pumpkin_pie. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", "4": "Collaborate with agents around you to make 1 cookie, 1 beetroot_soup, 1 cooked_mutton, 1 suspicious_stew, 1 pumpkin_pie. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" }, @@ -561,8 +561,8 @@ "0" ], "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 mushroom_stew, 1 beetroot_soup, 1 cookie. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 mushroom_stew, 1 beetroot_soup, 1 cookie. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 mushroom_stew, 1 beetroot_soup, 1 cookie. ", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 mushroom_stew, 1 beetroot_soup, 1 cookie. ", "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 mushroom_stew, 1 beetroot_soup, 1 cookie. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", "3": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 mushroom_stew, 1 beetroot_soup, 1 cookie. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", "4": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 mushroom_stew, 1 beetroot_soup, 1 cookie. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" @@ -628,11 +628,11 @@ "4" ], "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton, 1 golden_carrot, 1 beetroot_soup. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton, 1 golden_carrot, 1 beetroot_soup. ", "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton, 1 golden_carrot, 1 beetroot_soup. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton, 1 golden_carrot, 1 beetroot_soup. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton, 1 golden_carrot, 1 beetroot_soup. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "4": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton, 1 golden_carrot, 1 beetroot_soup. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" + "4": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton, 1 golden_carrot, 1 beetroot_soup. " }, "difficulty_metrics": { "total_recipe_steps": 11, @@ -653,7 +653,7 @@ "coal": 8 }, "3": { - "gold_ingots": 8 + "gold_ingot": 8 }, "4": {} } @@ -772,9 +772,9 @@ "2" ], "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 golden_carrot, 1 cooked_porkchop. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 golden_carrot, 1 cooked_porkchop. ", "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 golden_carrot, 1 cooked_porkchop. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 golden_carrot, 1 cooked_porkchop. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 golden_carrot, 1 cooked_porkchop. ", "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 golden_carrot, 1 cooked_porkchop. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", "4": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 golden_carrot, 1 cooked_porkchop. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" }, @@ -794,7 +794,7 @@ "bowl": 1 }, "2": { - "gold_ingots": 8 + "gold_ingot": 8 }, "3": { "coal": 8 @@ -842,10 +842,10 @@ "0" ], "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_rabbit, 1 cooked_porkchop, 1 mushroom_stew. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_rabbit, 1 cooked_porkchop, 1 mushroom_stew. ", "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_rabbit, 1 cooked_porkchop, 1 mushroom_stew. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_rabbit, 1 cooked_porkchop, 1 mushroom_stew. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_rabbit, 1 cooked_porkchop, 1 mushroom_stew. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_rabbit, 1 cooked_porkchop, 1 mushroom_stew. ", "4": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_rabbit, 1 cooked_porkchop, 1 mushroom_stew. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" }, "difficulty_metrics": { @@ -991,11 +991,11 @@ "4" ], "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 mushroom_stew, 1 pumpkin_pie, 1 cookie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 mushroom_stew, 1 pumpkin_pie, 1 cookie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 mushroom_stew, 1 pumpkin_pie, 1 cookie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 mushroom_stew, 1 pumpkin_pie, 1 cookie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "4": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 mushroom_stew, 1 pumpkin_pie, 1 cookie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 mushroom_stew, 1 pumpkin_pie, 1 cookie. ", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 mushroom_stew, 1 pumpkin_pie, 1 cookie. ", + "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 mushroom_stew, 1 pumpkin_pie, 1 cookie. ", + "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 mushroom_stew, 1 pumpkin_pie, 1 cookie. ", + "4": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 mushroom_stew, 1 pumpkin_pie, 1 cookie. " }, "difficulty_metrics": { "total_recipe_steps": 15, @@ -1192,9 +1192,9 @@ ], "goal": { "0": "Collaborate with agents around you to make 1 cookie, 1 suspicious_stew, 1 cooked_chicken, 1 mushroom_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "1": "Collaborate with agents around you to make 1 cookie, 1 suspicious_stew, 1 cooked_chicken, 1 mushroom_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "1": "Collaborate with agents around you to make 1 cookie, 1 suspicious_stew, 1 cooked_chicken, 1 mushroom_stew. ", "2": "Collaborate with agents around you to make 1 cookie, 1 suspicious_stew, 1 cooked_chicken, 1 mushroom_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "3": "Collaborate with agents around you to make 1 cookie, 1 suspicious_stew, 1 cooked_chicken, 1 mushroom_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "3": "Collaborate with agents around you to make 1 cookie, 1 suspicious_stew, 1 cooked_chicken, 1 mushroom_stew. ", "4": "Collaborate with agents around you to make 1 cookie, 1 suspicious_stew, 1 cooked_chicken, 1 mushroom_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" }, "difficulty_metrics": { @@ -1269,8 +1269,8 @@ "goal": { "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup, 1 golden_carrot, 1 pumpkin_pie, 1 cooked_porkchop. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup, 1 golden_carrot, 1 pumpkin_pie, 1 cooked_porkchop. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup, 1 golden_carrot, 1 pumpkin_pie, 1 cooked_porkchop. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup, 1 golden_carrot, 1 pumpkin_pie, 1 cooked_porkchop. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup, 1 golden_carrot, 1 pumpkin_pie, 1 cooked_porkchop. ", + "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup, 1 golden_carrot, 1 pumpkin_pie, 1 cooked_porkchop. ", "4": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup, 1 golden_carrot, 1 pumpkin_pie, 1 cooked_porkchop. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" }, "difficulty_metrics": { @@ -1289,7 +1289,7 @@ "dandelion": 1 }, "2": { - "gold_ingots": 8 + "gold_ingot": 8 }, "3": { "egg": 1 @@ -1339,11 +1339,11 @@ "0" ], "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew, 1 cooked_porkchop, 1 cookie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew, 1 cooked_porkchop, 1 cookie. ", "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew, 1 cooked_porkchop, 1 cookie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew, 1 cooked_porkchop, 1 cookie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew, 1 cooked_porkchop, 1 cookie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "4": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew, 1 cooked_porkchop, 1 cookie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" + "4": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew, 1 cooked_porkchop, 1 cookie. " }, "difficulty_metrics": { "total_recipe_steps": 10, @@ -1417,9 +1417,9 @@ "goal": { "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton, 1 mushroom_stew, 1 cooked_rabbit, 1 golden_carrot. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton, 1 mushroom_stew, 1 cooked_rabbit, 1 golden_carrot. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton, 1 mushroom_stew, 1 cooked_rabbit, 1 golden_carrot. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton, 1 mushroom_stew, 1 cooked_rabbit, 1 golden_carrot. ", "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton, 1 mushroom_stew, 1 cooked_rabbit, 1 golden_carrot. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "4": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton, 1 mushroom_stew, 1 cooked_rabbit, 1 golden_carrot. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + "4": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton, 1 mushroom_stew, 1 cooked_rabbit, 1 golden_carrot. " }, "difficulty_metrics": { "total_recipe_steps": 13, @@ -1440,7 +1440,7 @@ "coal": 16 }, "3": { - "gold_ingots": 8 + "gold_ingot": 8 }, "4": {} } @@ -1486,9 +1486,9 @@ ], "goal": { "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 golden_carrot, 1 mushroom_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 golden_carrot, 1 mushroom_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 golden_carrot, 1 mushroom_stew. ", "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 golden_carrot, 1 mushroom_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 golden_carrot, 1 mushroom_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 golden_carrot, 1 mushroom_stew. ", "4": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 golden_carrot, 1 mushroom_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" }, "difficulty_metrics": { @@ -1504,7 +1504,7 @@ "coal": 16 }, "1": { - "gold_ingots": 8 + "gold_ingot": 8 }, "2": { "bowl": 1 @@ -1760,11 +1760,11 @@ "4" ], "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew, 1 cookie, 1 cooked_chicken. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew, 1 cookie, 1 cooked_chicken. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew, 1 cookie, 1 cooked_chicken. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew, 1 cookie, 1 cooked_chicken. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "4": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew, 1 cookie, 1 cooked_chicken. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew, 1 cookie, 1 cooked_chicken. ", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew, 1 cookie, 1 cooked_chicken. ", + "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew, 1 cookie, 1 cooked_chicken. ", + "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew, 1 cookie, 1 cooked_chicken. ", + "4": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew, 1 cookie, 1 cooked_chicken. " }, "difficulty_metrics": { "total_recipe_steps": 12, @@ -1847,7 +1847,7 @@ "coal": 8 }, "1": { - "gold_ingots": 8 + "gold_ingot": 8 }, "2": { "bowl": 2 @@ -1902,10 +1902,10 @@ "3" ], "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop, 1 pumpkin_pie, 1 suspicious_stew, 1 beetroot_soup. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop, 1 pumpkin_pie, 1 suspicious_stew, 1 beetroot_soup. ", "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop, 1 pumpkin_pie, 1 suspicious_stew, 1 beetroot_soup. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop, 1 pumpkin_pie, 1 suspicious_stew, 1 beetroot_soup. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop, 1 pumpkin_pie, 1 suspicious_stew, 1 beetroot_soup. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop, 1 pumpkin_pie, 1 suspicious_stew, 1 beetroot_soup. ", "4": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop, 1 pumpkin_pie, 1 suspicious_stew, 1 beetroot_soup. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" }, "difficulty_metrics": { @@ -1978,11 +1978,11 @@ "0" ], "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 cooked_rabbit, 1 cookie, 1 suspicious_stew. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 cooked_rabbit, 1 cookie, 1 suspicious_stew. ", "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 cooked_rabbit, 1 cookie, 1 suspicious_stew. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 cooked_rabbit, 1 cookie, 1 suspicious_stew. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 cooked_rabbit, 1 cookie, 1 suspicious_stew. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "4": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 cooked_rabbit, 1 cookie, 1 suspicious_stew. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + "4": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 cooked_rabbit, 1 cookie, 1 suspicious_stew. " }, "difficulty_metrics": { "total_recipe_steps": 13, @@ -2114,11 +2114,11 @@ "4" ], "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 suspicious_stew, 1 cooked_chicken. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 suspicious_stew, 1 cooked_chicken. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 suspicious_stew, 1 cooked_chicken. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 suspicious_stew, 1 cooked_chicken. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "4": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 suspicious_stew, 1 cooked_chicken. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 suspicious_stew, 1 cooked_chicken. ", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 suspicious_stew, 1 cooked_chicken. ", + "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 suspicious_stew, 1 cooked_chicken. ", + "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 suspicious_stew, 1 cooked_chicken. ", + "4": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 suspicious_stew, 1 cooked_chicken. " }, "difficulty_metrics": { "total_recipe_steps": 12, @@ -2187,8 +2187,8 @@ "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cooked_porkchop, 1 suspicious_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cooked_porkchop, 1 suspicious_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cooked_porkchop, 1 suspicious_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cooked_porkchop, 1 suspicious_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "4": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cooked_porkchop, 1 suspicious_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cooked_porkchop, 1 suspicious_stew. ", + "4": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cooked_porkchop, 1 suspicious_stew. " }, "difficulty_metrics": { "total_recipe_steps": 10, @@ -2203,7 +2203,7 @@ "coal": 16 }, "1": { - "gold_ingots": 8 + "gold_ingot": 8 }, "2": { "bowl": 1 @@ -2262,11 +2262,11 @@ "4" ], "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup, 1 mushroom_stew, 1 suspicious_stew, 1 pumpkin_pie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup, 1 mushroom_stew, 1 suspicious_stew, 1 pumpkin_pie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup, 1 mushroom_stew, 1 suspicious_stew, 1 pumpkin_pie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "3": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup, 1 mushroom_stew, 1 suspicious_stew, 1 pumpkin_pie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "4": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup, 1 mushroom_stew, 1 suspicious_stew, 1 pumpkin_pie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup, 1 mushroom_stew, 1 suspicious_stew, 1 pumpkin_pie. ", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup, 1 mushroom_stew, 1 suspicious_stew, 1 pumpkin_pie. ", + "2": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup, 1 mushroom_stew, 1 suspicious_stew, 1 pumpkin_pie. ", + "3": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup, 1 mushroom_stew, 1 suspicious_stew, 1 pumpkin_pie. ", + "4": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup, 1 mushroom_stew, 1 suspicious_stew, 1 pumpkin_pie. " }, "difficulty_metrics": { "total_recipe_steps": 16, @@ -2278,7 +2278,7 @@ "difficulty": "hard", "initial_inventory": { "0": { - "gold_ingots": 8 + "gold_ingot": 8 }, "1": { "bowl": 3 @@ -2359,7 +2359,7 @@ "egg": 1 }, "2": { - "gold_ingots": 8 + "gold_ingot": 8 }, "3": {}, "4": {} @@ -2407,9 +2407,9 @@ "goal": { "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_mutton, 1 cookie, 1 suspicious_stew. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_mutton, 1 cookie, 1 suspicious_stew. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_mutton, 1 cookie, 1 suspicious_stew. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_mutton, 1 cookie, 1 suspicious_stew. ", "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_mutton, 1 cookie, 1 suspicious_stew. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "4": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_mutton, 1 cookie, 1 suspicious_stew. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + "4": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_mutton, 1 cookie, 1 suspicious_stew. " }, "difficulty_metrics": { "total_recipe_steps": 12, @@ -2712,7 +2712,7 @@ "bowl": 1 }, "2": { - "gold_ingots": 8 + "gold_ingot": 8 }, "3": {}, "4": {} @@ -2767,11 +2767,11 @@ "4" ], "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 mushroom_stew, 1 golden_carrot, 1 cooked_mutton, 1 cooked_rabbit. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 mushroom_stew, 1 golden_carrot, 1 cooked_mutton, 1 cooked_rabbit. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 mushroom_stew, 1 golden_carrot, 1 cooked_mutton, 1 cooked_rabbit. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "3": "Collaborate with agents around you to make 1 beetroot_soup, 1 mushroom_stew, 1 golden_carrot, 1 cooked_mutton, 1 cooked_rabbit. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "4": "Collaborate with agents around you to make 1 beetroot_soup, 1 mushroom_stew, 1 golden_carrot, 1 cooked_mutton, 1 cooked_rabbit. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 mushroom_stew, 1 golden_carrot, 1 cooked_mutton, 1 cooked_rabbit. ", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 mushroom_stew, 1 golden_carrot, 1 cooked_mutton, 1 cooked_rabbit. ", + "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 mushroom_stew, 1 golden_carrot, 1 cooked_mutton, 1 cooked_rabbit. ", + "3": "Collaborate with agents around you to make 1 beetroot_soup, 1 mushroom_stew, 1 golden_carrot, 1 cooked_mutton, 1 cooked_rabbit. ", + "4": "Collaborate with agents around you to make 1 beetroot_soup, 1 mushroom_stew, 1 golden_carrot, 1 cooked_mutton, 1 cooked_rabbit. " }, "difficulty_metrics": { "total_recipe_steps": 13, @@ -2786,7 +2786,7 @@ "bowl": 2 }, "1": { - "gold_ingots": 8 + "gold_ingot": 8 }, "2": { "coal": 16 @@ -2857,7 +2857,7 @@ "egg": 1 }, "3": { - "gold_ingots": 8 + "gold_ingot": 8 }, "4": {} } @@ -2904,11 +2904,11 @@ "4" ], "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 mushroom_stew, 1 cookie, 1 cooked_rabbit. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 mushroom_stew, 1 cookie, 1 cooked_rabbit. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 mushroom_stew, 1 cookie, 1 cooked_rabbit. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "3": "Collaborate with agents around you to make 1 beetroot_soup, 1 mushroom_stew, 1 cookie, 1 cooked_rabbit. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "4": "Collaborate with agents around you to make 1 beetroot_soup, 1 mushroom_stew, 1 cookie, 1 cooked_rabbit. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 mushroom_stew, 1 cookie, 1 cooked_rabbit. ", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 mushroom_stew, 1 cookie, 1 cooked_rabbit. ", + "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 mushroom_stew, 1 cookie, 1 cooked_rabbit. ", + "3": "Collaborate with agents around you to make 1 beetroot_soup, 1 mushroom_stew, 1 cookie, 1 cooked_rabbit. ", + "4": "Collaborate with agents around you to make 1 beetroot_soup, 1 mushroom_stew, 1 cookie, 1 cooked_rabbit. " }, "difficulty_metrics": { "total_recipe_steps": 11, @@ -2974,9 +2974,9 @@ ], "goal": { "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit, 1 pumpkin_pie, 1 cooked_chicken. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit, 1 pumpkin_pie, 1 cooked_chicken. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit, 1 pumpkin_pie, 1 cooked_chicken. ", "2": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit, 1 pumpkin_pie, 1 cooked_chicken. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "3": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit, 1 pumpkin_pie, 1 cooked_chicken. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "3": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit, 1 pumpkin_pie, 1 cooked_chicken. ", "4": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit, 1 pumpkin_pie, 1 cooked_chicken. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" }, "difficulty_metrics": { @@ -3042,10 +3042,10 @@ ], "goal": { "0": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew, 1 cooked_rabbit, 1 cooked_porkchop. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "1": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew, 1 cooked_rabbit, 1 cooked_porkchop. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "1": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew, 1 cooked_rabbit, 1 cooked_porkchop. ", "2": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew, 1 cooked_rabbit, 1 cooked_porkchop. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", "3": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew, 1 cooked_rabbit, 1 cooked_porkchop. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "4": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew, 1 cooked_rabbit, 1 cooked_porkchop. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + "4": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew, 1 cooked_rabbit, 1 cooked_porkchop. " }, "difficulty_metrics": { "total_recipe_steps": 10, @@ -3111,8 +3111,8 @@ "goal": { "0": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_mutton, 1 cooked_chicken. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", "1": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_mutton, 1 cooked_chicken. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_mutton, 1 cooked_chicken. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "3": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_mutton, 1 cooked_chicken. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "2": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_mutton, 1 cooked_chicken. ", + "3": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_mutton, 1 cooked_chicken. ", "4": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_mutton, 1 cooked_chicken. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" }, "difficulty_metrics": { @@ -3125,7 +3125,7 @@ "difficulty": "hard", "initial_inventory": { "0": { - "gold_ingots": 8 + "gold_ingot": 8 }, "1": { "bowl": 1 @@ -3187,11 +3187,11 @@ "4" ], "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop, 1 pumpkin_pie, 1 cooked_chicken, 1 cooked_rabbit. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop, 1 pumpkin_pie, 1 cooked_chicken, 1 cooked_rabbit. ", "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop, 1 pumpkin_pie, 1 cooked_chicken, 1 cooked_rabbit. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop, 1 pumpkin_pie, 1 cooked_chicken, 1 cooked_rabbit. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", "3": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop, 1 pumpkin_pie, 1 cooked_chicken, 1 cooked_rabbit. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "4": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop, 1 pumpkin_pie, 1 cooked_chicken, 1 cooked_rabbit. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" + "4": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop, 1 pumpkin_pie, 1 cooked_chicken, 1 cooked_rabbit. " }, "difficulty_metrics": { "total_recipe_steps": 13, @@ -3397,11 +3397,11 @@ "4" ], "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 mushroom_stew, 1 suspicious_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 mushroom_stew, 1 suspicious_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 mushroom_stew, 1 suspicious_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "3": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 mushroom_stew, 1 suspicious_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "4": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 mushroom_stew, 1 suspicious_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 mushroom_stew, 1 suspicious_stew. ", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 mushroom_stew, 1 suspicious_stew. ", + "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 mushroom_stew, 1 suspicious_stew. ", + "3": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 mushroom_stew, 1 suspicious_stew. ", + "4": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 mushroom_stew, 1 suspicious_stew. " }, "difficulty_metrics": { "total_recipe_steps": 10, @@ -3482,7 +3482,7 @@ "coal": 24 }, "1": { - "gold_ingots": 8 + "gold_ingot": 8 }, "2": {}, "3": {}, @@ -3529,10 +3529,10 @@ ], "goal": { "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 beetroot_soup, 1 suspicious_stew, 1 cookie. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 beetroot_soup, 1 suspicious_stew, 1 cookie. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 beetroot_soup, 1 suspicious_stew, 1 cookie. ", "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 beetroot_soup, 1 suspicious_stew, 1 cookie. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 beetroot_soup, 1 suspicious_stew, 1 cookie. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "4": "Collaborate with agents around you to make 1 pumpkin_pie, 1 beetroot_soup, 1 suspicious_stew, 1 cookie. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" + "4": "Collaborate with agents around you to make 1 pumpkin_pie, 1 beetroot_soup, 1 suspicious_stew, 1 cookie. " }, "difficulty_metrics": { "total_recipe_steps": 13, @@ -3604,8 +3604,8 @@ "1" ], "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 golden_carrot, 1 beetroot_soup, 1 cooked_mutton, 1 pumpkin_pie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 golden_carrot, 1 beetroot_soup, 1 cooked_mutton, 1 pumpkin_pie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 golden_carrot, 1 beetroot_soup, 1 cooked_mutton, 1 pumpkin_pie. ", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 golden_carrot, 1 beetroot_soup, 1 cooked_mutton, 1 pumpkin_pie. ", "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 golden_carrot, 1 beetroot_soup, 1 cooked_mutton, 1 pumpkin_pie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 golden_carrot, 1 beetroot_soup, 1 cooked_mutton, 1 pumpkin_pie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", "4": "Collaborate with agents around you to make 1 suspicious_stew, 1 golden_carrot, 1 beetroot_soup, 1 cooked_mutton, 1 pumpkin_pie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" @@ -3626,7 +3626,7 @@ "dandelion": 1 }, "2": { - "gold_ingots": 8 + "gold_ingot": 8 }, "3": { "coal": 8 @@ -3698,7 +3698,7 @@ "coal": 16 }, "1": { - "gold_ingots": 8 + "gold_ingot": 8 }, "2": { "bowl": 2 @@ -3758,11 +3758,11 @@ "4" ], "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew, 1 mushroom_stew, 1 golden_carrot, 1 cooked_chicken. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew, 1 mushroom_stew, 1 golden_carrot, 1 cooked_chicken. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew, 1 mushroom_stew, 1 golden_carrot, 1 cooked_chicken. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "3": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew, 1 mushroom_stew, 1 golden_carrot, 1 cooked_chicken. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "4": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew, 1 mushroom_stew, 1 golden_carrot, 1 cooked_chicken. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew, 1 mushroom_stew, 1 golden_carrot, 1 cooked_chicken. ", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew, 1 mushroom_stew, 1 golden_carrot, 1 cooked_chicken. ", + "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew, 1 mushroom_stew, 1 golden_carrot, 1 cooked_chicken. ", + "3": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew, 1 mushroom_stew, 1 golden_carrot, 1 cooked_chicken. ", + "4": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew, 1 mushroom_stew, 1 golden_carrot, 1 cooked_chicken. " }, "difficulty_metrics": { "total_recipe_steps": 13, @@ -3783,7 +3783,7 @@ "dandelion": 1 }, "3": { - "gold_ingots": 8 + "gold_ingot": 8 }, "4": {} } @@ -3840,7 +3840,7 @@ "difficulty": "hard", "initial_inventory": { "0": { - "gold_ingots": 8 + "gold_ingot": 8 }, "1": { "coal": 8 @@ -3897,11 +3897,11 @@ "4" ], "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 golden_carrot, 1 cookie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 golden_carrot, 1 cookie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 golden_carrot, 1 cookie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 golden_carrot, 1 cookie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "4": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 golden_carrot, 1 cookie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 golden_carrot, 1 cookie. ", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 golden_carrot, 1 cookie. ", + "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 golden_carrot, 1 cookie. ", + "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 golden_carrot, 1 cookie. ", + "4": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 golden_carrot, 1 cookie. " }, "difficulty_metrics": { "total_recipe_steps": 10, @@ -3916,7 +3916,7 @@ "coal": 16 }, "1": { - "gold_ingots": 8 + "gold_ingot": 8 }, "2": { "cocoa_beans": 1 @@ -3964,9 +3964,9 @@ "0" ], "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 cooked_chicken, 1 cookie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 cooked_chicken, 1 cookie. ", "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 cooked_chicken, 1 cookie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 cooked_chicken, 1 cookie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 cooked_chicken, 1 cookie. ", "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 cooked_chicken, 1 cookie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", "4": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 cooked_chicken, 1 cookie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" }, @@ -4059,7 +4059,7 @@ "dandelion": 1 }, "2": { - "gold_ingots": 8 + "gold_ingot": 8 }, "3": { "egg": 1 @@ -4118,11 +4118,11 @@ "4" ], "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_porkchop, 1 beetroot_soup, 1 golden_carrot. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_porkchop, 1 beetroot_soup, 1 golden_carrot. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_porkchop, 1 beetroot_soup, 1 golden_carrot. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_porkchop, 1 beetroot_soup, 1 golden_carrot. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "4": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_porkchop, 1 beetroot_soup, 1 golden_carrot. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_porkchop, 1 beetroot_soup, 1 golden_carrot. ", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_porkchop, 1 beetroot_soup, 1 golden_carrot. ", + "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_porkchop, 1 beetroot_soup, 1 golden_carrot. ", + "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_porkchop, 1 beetroot_soup, 1 golden_carrot. ", + "4": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_porkchop, 1 beetroot_soup, 1 golden_carrot. " }, "difficulty_metrics": { "total_recipe_steps": 13, @@ -4143,7 +4143,7 @@ "coal": 16 }, "3": { - "gold_ingots": 8 + "gold_ingot": 8 }, "4": {} } @@ -4189,8 +4189,8 @@ "goal": { "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 cooked_chicken, 1 cookie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 cooked_chicken, 1 cookie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 cooked_chicken, 1 cookie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 cooked_chicken, 1 cookie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 cooked_chicken, 1 cookie. ", + "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 cooked_chicken, 1 cookie. ", "4": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 cooked_chicken, 1 cookie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" }, "difficulty_metrics": { @@ -4206,7 +4206,7 @@ "bowl": 1 }, "1": { - "gold_ingots": 8 + "gold_ingot": 8 }, "2": { "coal": 8 @@ -4256,10 +4256,10 @@ "0" ], "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 cookie, 1 golden_carrot. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 cookie, 1 golden_carrot. ", "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 cookie, 1 golden_carrot. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 cookie, 1 golden_carrot. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "3": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 cookie, 1 golden_carrot. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "3": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 cookie, 1 golden_carrot. ", "4": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 cookie, 1 golden_carrot. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" }, "difficulty_metrics": { @@ -4281,7 +4281,7 @@ "cocoa_beans": 1 }, "3": { - "gold_ingots": 8 + "gold_ingot": 8 }, "4": {} } @@ -4401,11 +4401,11 @@ "4" ], "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 beetroot_soup, 1 cooked_chicken, 1 cookie, 1 cooked_rabbit. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 beetroot_soup, 1 cooked_chicken, 1 cookie, 1 cooked_rabbit. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 beetroot_soup, 1 cooked_chicken, 1 cookie, 1 cooked_rabbit. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "3": "Collaborate with agents around you to make 1 cooked_porkchop, 1 beetroot_soup, 1 cooked_chicken, 1 cookie, 1 cooked_rabbit. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "4": "Collaborate with agents around you to make 1 cooked_porkchop, 1 beetroot_soup, 1 cooked_chicken, 1 cookie, 1 cooked_rabbit. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 beetroot_soup, 1 cooked_chicken, 1 cookie, 1 cooked_rabbit. ", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 beetroot_soup, 1 cooked_chicken, 1 cookie, 1 cooked_rabbit. ", + "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 beetroot_soup, 1 cooked_chicken, 1 cookie, 1 cooked_rabbit. ", + "3": "Collaborate with agents around you to make 1 cooked_porkchop, 1 beetroot_soup, 1 cooked_chicken, 1 cookie, 1 cooked_rabbit. ", + "4": "Collaborate with agents around you to make 1 cooked_porkchop, 1 beetroot_soup, 1 cooked_chicken, 1 cookie, 1 cooked_rabbit. " }, "difficulty_metrics": { "total_recipe_steps": 12, @@ -4618,8 +4618,8 @@ "goal": { "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton, 1 beetroot_soup, 1 cooked_chicken. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton, 1 beetroot_soup, 1 cooked_chicken. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton, 1 beetroot_soup, 1 cooked_chicken. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "3": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton, 1 beetroot_soup, 1 cooked_chicken. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton, 1 beetroot_soup, 1 cooked_chicken. ", + "3": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton, 1 beetroot_soup, 1 cooked_chicken. ", "4": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton, 1 beetroot_soup, 1 cooked_chicken. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" }, "difficulty_metrics": { @@ -4688,10 +4688,10 @@ "0" ], "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit, 1 beetroot_soup, 1 cooked_mutton, 1 suspicious_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit, 1 beetroot_soup, 1 cooked_mutton, 1 suspicious_stew. ", "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit, 1 beetroot_soup, 1 cooked_mutton, 1 suspicious_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", "2": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit, 1 beetroot_soup, 1 cooked_mutton, 1 suspicious_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "3": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit, 1 beetroot_soup, 1 cooked_mutton, 1 suspicious_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "3": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit, 1 beetroot_soup, 1 cooked_mutton, 1 suspicious_stew. ", "4": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit, 1 beetroot_soup, 1 cooked_mutton, 1 suspicious_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" }, "difficulty_metrics": { @@ -4835,11 +4835,11 @@ "4" ], "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cooked_porkchop, 1 pumpkin_pie, 1 mushroom_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cooked_porkchop, 1 pumpkin_pie, 1 mushroom_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cooked_porkchop, 1 pumpkin_pie, 1 mushroom_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cooked_porkchop, 1 pumpkin_pie, 1 mushroom_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "4": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cooked_porkchop, 1 pumpkin_pie, 1 mushroom_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cooked_porkchop, 1 pumpkin_pie, 1 mushroom_stew. ", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cooked_porkchop, 1 pumpkin_pie, 1 mushroom_stew. ", + "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cooked_porkchop, 1 pumpkin_pie, 1 mushroom_stew. ", + "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cooked_porkchop, 1 pumpkin_pie, 1 mushroom_stew. ", + "4": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cooked_porkchop, 1 pumpkin_pie, 1 mushroom_stew. " }, "difficulty_metrics": { "total_recipe_steps": 14, @@ -4854,7 +4854,7 @@ "coal": 16 }, "1": { - "gold_ingots": 8 + "gold_ingot": 8 }, "2": { "egg": 1 @@ -4912,11 +4912,11 @@ "4" ], "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie, 1 cooked_mutton, 1 golden_carrot, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie, 1 cooked_mutton, 1 golden_carrot, 1 cooked_chicken. ", "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie, 1 cooked_mutton, 1 golden_carrot, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie, 1 cooked_mutton, 1 golden_carrot, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", "3": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie, 1 cooked_mutton, 1 golden_carrot, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "4": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie, 1 cooked_mutton, 1 golden_carrot, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + "4": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie, 1 cooked_mutton, 1 golden_carrot, 1 cooked_chicken. " }, "difficulty_metrics": { "total_recipe_steps": 14, @@ -4937,7 +4937,7 @@ "coal": 16 }, "3": { - "gold_ingots": 8 + "gold_ingot": 8 }, "4": {} } @@ -5004,7 +5004,7 @@ "coal": 16 }, "1": { - "gold_ingots": 8 + "gold_ingot": 8 }, "2": { "cocoa_beans": 1 From 216a4cde5d67aea7ff85e30958dc25cbdce88d17 Mon Sep 17 00:00:00 2001 From: Isadora White Date: Tue, 6 May 2025 18:28:22 -0700 Subject: [PATCH 030/101] 2 and 3 item tasks --- ...ake_collaboration_required_cooking_task.py | 43 +- .../require_collab_test_2_items/2_agent.json | 380 ++++++++++++ .../require_collab_test_2_items/3_agent.json | 411 +++++++++++++ .../require_collab_test_2_items/4_agent.json | 442 ++++++++++++++ .../4_agent_long_timeout.json | 442 ++++++++++++++ .../require_collab_test_2_items/5_agent.json | 473 +++++++++++++++ .../5_agent_long_timeout.json | 442 ++++++++++++++ .../require_collab_test_3_items/2_agent.json | 441 ++++++++++++++ .../require_collab_test_3_items/3_agent.json | 478 +++++++++++++++ .../require_collab_test_3_items/4_agent.json | 515 ++++++++++++++++ .../4_agent_long_timeout.json | 515 ++++++++++++++++ .../require_collab_test_3_items/5_agent.json | 552 ++++++++++++++++++ .../5_agent_long_timeout.json | 552 ++++++++++++++++++ 13 files changed, 5674 insertions(+), 12 deletions(-) create mode 100644 tasks/cooking_tasks/require_collab_test_2_items/2_agent.json create mode 100644 tasks/cooking_tasks/require_collab_test_2_items/3_agent.json create mode 100644 tasks/cooking_tasks/require_collab_test_2_items/4_agent.json create mode 100644 tasks/cooking_tasks/require_collab_test_2_items/4_agent_long_timeout.json create mode 100644 tasks/cooking_tasks/require_collab_test_2_items/5_agent.json create mode 100644 tasks/cooking_tasks/require_collab_test_2_items/5_agent_long_timeout.json create mode 100644 tasks/cooking_tasks/require_collab_test_3_items/2_agent.json create mode 100644 tasks/cooking_tasks/require_collab_test_3_items/3_agent.json create mode 100644 tasks/cooking_tasks/require_collab_test_3_items/4_agent.json create mode 100644 tasks/cooking_tasks/require_collab_test_3_items/4_agent_long_timeout.json create mode 100644 tasks/cooking_tasks/require_collab_test_3_items/5_agent.json create mode 100644 tasks/cooking_tasks/require_collab_test_3_items/5_agent_long_timeout.json diff --git a/tasks/cooking_tasks/make_collaboration_required_cooking_task.py b/tasks/cooking_tasks/make_collaboration_required_cooking_task.py index 8bcd9cc..90791b0 100644 --- a/tasks/cooking_tasks/make_collaboration_required_cooking_task.py +++ b/tasks/cooking_tasks/make_collaboration_required_cooking_task.py @@ -244,7 +244,7 @@ chest_items = { "iron_ingot": 64, } -def reconfigure_tasks(task_path, new_task_path): +def reconfigure_tasks(task_path, new_task_path, num_agents=None): with open(task_path, 'r') as f: tasks = json.load(f) task_ids = tasks.keys() @@ -265,14 +265,23 @@ def reconfigure_tasks(task_path, new_task_path): print(inventory) task["recipes"] = new_recipes # assign inventory to the agents - num_agents = task.get("agent_count", 0) + task.get("human_count", 0) + if num_agents is None: + num_agents = task.get("agent_count", 0) + task.get("human_count", 0) + else: + task["agent_count"] = num_agents initial_inventory = {} for i in range(num_agents): initial_inventory[i] = {} items_lst = list(inventory.keys()) for i in range(len(items_lst)): agent_num = i % num_agents - initial_inventory[agent_num][items_lst[i]] = inventory[items_lst[i]] + if inventory[items_lst[i]] == 1: + initial_inventory[agent_num][items_lst[i]] = 1 + elif inventory[items_lst[i]] > 1: + num_per_agent = inventory[items_lst[i]] // num_agents + 1 + for j in range(num_agents): + initial_inventory[j][items_lst[i]] = num_per_agent + # initial_inventory[agent_num][items_lst[i]] = inventory[items_lst[i]] task["initial_inventory"] = initial_inventory goals = task.get("goal", {}) @@ -292,13 +301,23 @@ def reconfigure_tasks(task_path, new_task_path): with open(new_task_path, 'w') as f: json.dump(tasks, f, indent=4) -reconfigure_tasks("mindcraft/tasks/cooking_tasks/equal_load_test_tasks/2_agent.json", "mindcraft/tasks/cooking_tasks/require_collab_test/2_agent.json") -reconfigure_tasks("mindcraft/tasks/cooking_tasks/equal_load_test_tasks/3_agent.json", "mindcraft/tasks/cooking_tasks/require_collab_test/3_agent.json") -reconfigure_tasks("mindcraft/tasks/cooking_tasks/equal_load_test_tasks/4_agent.json", "mindcraft/tasks/cooking_tasks/require_collab_test/4_agent.json") -reconfigure_tasks("mindcraft/tasks/cooking_tasks/equal_load_test_tasks/5_agent.json", "mindcraft/tasks/cooking_tasks/require_collab_test/5_agent.json") -reconfigure_tasks("mindcraft/tasks/cooking_tasks/train_tasks/2_agent_cooking_train_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_train/2_agent.json") -reconfigure_tasks("mindcraft/tasks/cooking_tasks/train_tasks/train_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_train/2_agent_blocked_access.json") -reconfigure_tasks("mindcraft/tasks/cooking_tasks/train_tasks/train_tasks_3_agents.json", "mindcraft/tasks/cooking_tasks/require_collab_train/3_agent.json") -reconfigure_tasks("mindcraft/tasks/cooking_tasks/train_tasks/train_tasks_4_agents.json", "mindcraft/tasks/cooking_tasks/require_collab_train/4_agent.json") -reconfigure_tasks("mindcraft/tasks/cooking_tasks/train_tasks/train_tasks_5_agents.json", "mindcraft/tasks/cooking_tasks/require_collab_train/5_agent.json") \ No newline at end of file + +reconfigure_tasks("mindcraft/tasks/cooking_tasks/test_tasks/3_agent_cooking_test_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_test_3_items/2_agent.json", 2) +reconfigure_tasks("mindcraft/tasks/cooking_tasks/test_tasks/3_agent_cooking_test_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_test_3_items/3_agent.json", 3) +reconfigure_tasks("mindcraft/tasks/cooking_tasks/test_tasks/3_agent_cooking_test_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_test_3_items/4_agent.json", 4) +reconfigure_tasks("mindcraft/tasks/cooking_tasks/test_tasks/3_agent_cooking_test_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_test_3_items/5_agent.json", 5) + +reconfigure_tasks("mindcraft/tasks/cooking_tasks/test_tasks/2_agent_cooking_test_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_test_2_items/2_agent.json", 2) +reconfigure_tasks("mindcraft/tasks/cooking_tasks/test_tasks/2_agent_cooking_test_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_test_2_items/3_agent.json", 3) +reconfigure_tasks("mindcraft/tasks/cooking_tasks/test_tasks/2_agent_cooking_test_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_test_2_items/4_agent.json", 4) +reconfigure_tasks("mindcraft/tasks/cooking_tasks/test_tasks/2_agent_cooking_test_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_test_2_items/5_agent.json", 5) +# reconfigure_tasks("mindcraft/tasks/cooking_tasks/equal_load_test_tasks/3_agent.json", "mindcraft/tasks/cooking_tasks/require_collab_test/3_agent.json") +# reconfigure_tasks("mindcraft/tasks/cooking_tasks/equal_load_test_tasks/4_agent.json", "mindcraft/tasks/cooking_tasks/require_collab_test/4_agent.json") +# reconfigure_tasks("mindcraft/tasks/cooking_tasks/equal_load_test_tasks/5_agent.json", "mindcraft/tasks/cooking_tasks/require_collab_test/5_agent.json") + +# reconfigure_tasks("mindcraft/tasks/cooking_tasks/train_tasks/2_agent_cooking_train_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_train/2_agent.json") +# reconfigure_tasks("mindcraft/tasks/cooking_tasks/train_tasks/train_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_train/2_agent_blocked_access.json") +# reconfigure_tasks("mindcraft/tasks/cooking_tasks/train_tasks/train_tasks_3_agents.json", "mindcraft/tasks/cooking_tasks/require_collab_train/3_agent.json") +# reconfigure_tasks("mindcraft/tasks/cooking_tasks/train_tasks/train_tasks_4_agents.json", "mindcraft/tasks/cooking_tasks/require_collab_train/4_agent.json") +# reconfigure_tasks("mindcraft/tasks/cooking_tasks/train_tasks/train_tasks_5_agents.json", "mindcraft/tasks/cooking_tasks/require_collab_train/5_agent.json") \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_test_2_items/2_agent.json b/tasks/cooking_tasks/require_collab_test_2_items/2_agent.json new file mode 100644 index 0000000..9703592 --- /dev/null +++ b/tasks/cooking_tasks/require_collab_test_2_items/2_agent.json @@ -0,0 +1,380 @@ +{ + "multiagent_cooking_2_1_bread_1_golden_apple": { + "conversation": "Let's work together to make golden_apple, bread.", + "agent_count": 2, + "target": { + "golden_apple": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 bread. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 bread. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 5 + }, + "1": { + "gold_ingot": 5, + "apple": 1 + } + } + }, + "multiagent_cooking_2_1_golden_apple_1_rabbit_stew": { + "conversation": "Let's work together to make golden_apple, rabbit_stew.", + "agent_count": 2, + "target": { + "golden_apple": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 5, + "bowl": 1 + }, + "1": { + "gold_ingot": 5, + "apple": 1 + } + } + }, + "multiagent_cooking_2_1_bread_1_cake": { + "conversation": "Let's work together to make cake, bread.", + "agent_count": 2, + "target": { + "cake": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "1": "Collaborate with agents around you to make 1 cake, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" + }, + "initial_inventory": { + "0": { + "milk_bucket": 2 + }, + "1": { + "milk_bucket": 2, + "egg": 1 + } + } + }, + "multiagent_cooking_2_1_baked_potato_1_golden_apple": { + "conversation": "Let's work together to make baked_potato, golden_apple.", + "agent_count": 2, + "target": { + "baked_potato": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" + }, + "initial_inventory": { + "0": { + "coal": 5, + "gold_ingot": 5, + "apple": 1 + }, + "1": { + "coal": 5, + "gold_ingot": 5 + } + } + }, + "multiagent_cooking_2_1_baked_potato_1_rabbit_stew": { + "conversation": "Let's work together to make baked_potato, rabbit_stew.", + "agent_count": 2, + "target": { + "baked_potato": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 rabbit_stew. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 rabbit_stew. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" + }, + "initial_inventory": { + "0": { + "coal": 5 + }, + "1": { + "coal": 5, + "bowl": 1 + } + } + }, + "multiagent_cooking_2_1_bread_1_rabbit_stew": { + "conversation": "Let's work together to make rabbit_stew, bread.", + "agent_count": 2, + "target": { + "rabbit_stew": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": {} + } + }, + "multiagent_cooking_2_1_baked_potato_1_bread": { + "conversation": "Let's work together to make bread, baked_potato.", + "agent_count": 2, + "target": { + "bread": 1, + "baked_potato": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 baked_potato. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", + "1": "Collaborate with agents around you to make 1 bread, 1 baked_potato. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']" + }, + "initial_inventory": { + "0": { + "coal": 5 + }, + "1": { + "coal": 5 + } + } + }, + "multiagent_cooking_2_1_baked_potato_1_cake": { + "conversation": "Let's work together to make baked_potato, cake.", + "agent_count": 2, + "target": { + "baked_potato": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" + }, + "initial_inventory": { + "0": { + "coal": 5, + "milk_bucket": 2, + "egg": 1 + }, + "1": { + "coal": 5, + "milk_bucket": 2 + } + } + }, + "multiagent_cooking_2_1_cooked_beef_1_golden_apple": { + "conversation": "Let's work together to make golden_apple, cooked_beef.", + "agent_count": 2, + "target": { + "golden_apple": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 5, + "coal": 5 + }, + "1": { + "gold_ingot": 5, + "apple": 1, + "coal": 5 + } + } + }, + "multiagent_cooking_2_1_bread_1_cooked_beef": { + "conversation": "Let's work together to make bread, cooked_beef.", + "agent_count": 2, + "target": { + "bread": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "1": "Collaborate with agents around you to make 1 bread, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" + }, + "initial_inventory": { + "0": { + "coal": 5 + }, + "1": { + "coal": 5 + } + } + } +} \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_test_2_items/3_agent.json b/tasks/cooking_tasks/require_collab_test_2_items/3_agent.json new file mode 100644 index 0000000..7231599 --- /dev/null +++ b/tasks/cooking_tasks/require_collab_test_2_items/3_agent.json @@ -0,0 +1,411 @@ +{ + "multiagent_cooking_2_1_bread_1_golden_apple": { + "conversation": "Let's work together to make golden_apple, bread.", + "agent_count": 3, + "target": { + "golden_apple": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 bread. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 bread. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 3 + }, + "1": { + "gold_ingot": 3, + "apple": 1 + }, + "2": { + "gold_ingot": 3 + } + } + }, + "multiagent_cooking_2_1_golden_apple_1_rabbit_stew": { + "conversation": "Let's work together to make golden_apple, rabbit_stew.", + "agent_count": 3, + "target": { + "golden_apple": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 3 + }, + "1": { + "gold_ingot": 3, + "apple": 1 + }, + "2": { + "gold_ingot": 3, + "bowl": 1 + } + } + }, + "multiagent_cooking_2_1_bread_1_cake": { + "conversation": "Let's work together to make cake, bread.", + "agent_count": 3, + "target": { + "cake": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "1": "Collaborate with agents around you to make 1 cake, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" + }, + "initial_inventory": { + "0": { + "milk_bucket": 2 + }, + "1": { + "milk_bucket": 2, + "egg": 1 + }, + "2": { + "milk_bucket": 2 + } + } + }, + "multiagent_cooking_2_1_baked_potato_1_golden_apple": { + "conversation": "Let's work together to make baked_potato, golden_apple.", + "agent_count": 3, + "target": { + "baked_potato": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" + }, + "initial_inventory": { + "0": { + "coal": 3, + "gold_ingot": 3 + }, + "1": { + "coal": 3, + "gold_ingot": 3 + }, + "2": { + "coal": 3, + "gold_ingot": 3, + "apple": 1 + } + } + }, + "multiagent_cooking_2_1_baked_potato_1_rabbit_stew": { + "conversation": "Let's work together to make baked_potato, rabbit_stew.", + "agent_count": 3, + "target": { + "baked_potato": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 rabbit_stew. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 rabbit_stew. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" + }, + "initial_inventory": { + "0": { + "coal": 3 + }, + "1": { + "coal": 3, + "bowl": 1 + }, + "2": { + "coal": 3 + } + } + }, + "multiagent_cooking_2_1_bread_1_rabbit_stew": { + "conversation": "Let's work together to make rabbit_stew, bread.", + "agent_count": 3, + "target": { + "rabbit_stew": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": {}, + "2": {} + } + }, + "multiagent_cooking_2_1_baked_potato_1_bread": { + "conversation": "Let's work together to make bread, baked_potato.", + "agent_count": 3, + "target": { + "bread": 1, + "baked_potato": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 baked_potato. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", + "1": "Collaborate with agents around you to make 1 bread, 1 baked_potato. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']" + }, + "initial_inventory": { + "0": { + "coal": 3 + }, + "1": { + "coal": 3 + }, + "2": { + "coal": 3 + } + } + }, + "multiagent_cooking_2_1_baked_potato_1_cake": { + "conversation": "Let's work together to make baked_potato, cake.", + "agent_count": 3, + "target": { + "baked_potato": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" + }, + "initial_inventory": { + "0": { + "coal": 3, + "milk_bucket": 2 + }, + "1": { + "coal": 3, + "milk_bucket": 2 + }, + "2": { + "coal": 3, + "milk_bucket": 2, + "egg": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_beef_1_golden_apple": { + "conversation": "Let's work together to make golden_apple, cooked_beef.", + "agent_count": 3, + "target": { + "golden_apple": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 3, + "coal": 3 + }, + "1": { + "gold_ingot": 3, + "apple": 1, + "coal": 3 + }, + "2": { + "gold_ingot": 3, + "coal": 3 + } + } + }, + "multiagent_cooking_2_1_bread_1_cooked_beef": { + "conversation": "Let's work together to make bread, cooked_beef.", + "agent_count": 3, + "target": { + "bread": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "1": "Collaborate with agents around you to make 1 bread, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" + }, + "initial_inventory": { + "0": { + "coal": 3 + }, + "1": { + "coal": 3 + }, + "2": { + "coal": 3 + } + } + } +} \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_test_2_items/4_agent.json b/tasks/cooking_tasks/require_collab_test_2_items/4_agent.json new file mode 100644 index 0000000..1d9ccf5 --- /dev/null +++ b/tasks/cooking_tasks/require_collab_test_2_items/4_agent.json @@ -0,0 +1,442 @@ +{ + "multiagent_cooking_2_1_bread_1_golden_apple": { + "conversation": "Let's work together to make golden_apple, bread.", + "agent_count": 4, + "target": { + "golden_apple": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 bread. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 bread. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 3 + }, + "1": { + "gold_ingot": 3, + "apple": 1 + }, + "2": { + "gold_ingot": 3 + }, + "3": { + "gold_ingot": 3 + } + } + }, + "multiagent_cooking_2_1_golden_apple_1_rabbit_stew": { + "conversation": "Let's work together to make golden_apple, rabbit_stew.", + "agent_count": 4, + "target": { + "golden_apple": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 3 + }, + "1": { + "gold_ingot": 3, + "apple": 1 + }, + "2": { + "gold_ingot": 3, + "bowl": 1 + }, + "3": { + "gold_ingot": 3 + } + } + }, + "multiagent_cooking_2_1_bread_1_cake": { + "conversation": "Let's work together to make cake, bread.", + "agent_count": 4, + "target": { + "cake": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "1": "Collaborate with agents around you to make 1 cake, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" + }, + "initial_inventory": { + "0": { + "milk_bucket": 1 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + }, + "2": { + "milk_bucket": 1 + }, + "3": { + "milk_bucket": 1 + } + } + }, + "multiagent_cooking_2_1_baked_potato_1_golden_apple": { + "conversation": "Let's work together to make baked_potato, golden_apple.", + "agent_count": 4, + "target": { + "baked_potato": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" + }, + "initial_inventory": { + "0": { + "coal": 3, + "gold_ingot": 3 + }, + "1": { + "coal": 3, + "gold_ingot": 3 + }, + "2": { + "coal": 3, + "gold_ingot": 3, + "apple": 1 + }, + "3": { + "coal": 3, + "gold_ingot": 3 + } + } + }, + "multiagent_cooking_2_1_baked_potato_1_rabbit_stew": { + "conversation": "Let's work together to make baked_potato, rabbit_stew.", + "agent_count": 4, + "target": { + "baked_potato": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 rabbit_stew. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 rabbit_stew. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" + }, + "initial_inventory": { + "0": { + "coal": 3 + }, + "1": { + "coal": 3, + "bowl": 1 + }, + "2": { + "coal": 3 + }, + "3": { + "coal": 3 + } + } + }, + "multiagent_cooking_2_1_bread_1_rabbit_stew": { + "conversation": "Let's work together to make rabbit_stew, bread.", + "agent_count": 4, + "target": { + "rabbit_stew": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": {}, + "2": {}, + "3": {} + } + }, + "multiagent_cooking_2_1_baked_potato_1_bread": { + "conversation": "Let's work together to make bread, baked_potato.", + "agent_count": 4, + "target": { + "bread": 1, + "baked_potato": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 baked_potato. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", + "1": "Collaborate with agents around you to make 1 bread, 1 baked_potato. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']" + }, + "initial_inventory": { + "0": { + "coal": 3 + }, + "1": { + "coal": 3 + }, + "2": { + "coal": 3 + }, + "3": { + "coal": 3 + } + } + }, + "multiagent_cooking_2_1_baked_potato_1_cake": { + "conversation": "Let's work together to make baked_potato, cake.", + "agent_count": 4, + "target": { + "baked_potato": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" + }, + "initial_inventory": { + "0": { + "coal": 3, + "milk_bucket": 1 + }, + "1": { + "coal": 3, + "milk_bucket": 1 + }, + "2": { + "coal": 3, + "milk_bucket": 1, + "egg": 1 + }, + "3": { + "coal": 3, + "milk_bucket": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_beef_1_golden_apple": { + "conversation": "Let's work together to make golden_apple, cooked_beef.", + "agent_count": 4, + "target": { + "golden_apple": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 3, + "coal": 3 + }, + "1": { + "gold_ingot": 3, + "apple": 1, + "coal": 3 + }, + "2": { + "gold_ingot": 3, + "coal": 3 + }, + "3": { + "gold_ingot": 3, + "coal": 3 + } + } + }, + "multiagent_cooking_2_1_bread_1_cooked_beef": { + "conversation": "Let's work together to make bread, cooked_beef.", + "agent_count": 4, + "target": { + "bread": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "1": "Collaborate with agents around you to make 1 bread, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" + }, + "initial_inventory": { + "0": { + "coal": 3 + }, + "1": { + "coal": 3 + }, + "2": { + "coal": 3 + }, + "3": { + "coal": 3 + } + } + } +} \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_test_2_items/4_agent_long_timeout.json b/tasks/cooking_tasks/require_collab_test_2_items/4_agent_long_timeout.json new file mode 100644 index 0000000..1d9ccf5 --- /dev/null +++ b/tasks/cooking_tasks/require_collab_test_2_items/4_agent_long_timeout.json @@ -0,0 +1,442 @@ +{ + "multiagent_cooking_2_1_bread_1_golden_apple": { + "conversation": "Let's work together to make golden_apple, bread.", + "agent_count": 4, + "target": { + "golden_apple": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 bread. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 bread. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 3 + }, + "1": { + "gold_ingot": 3, + "apple": 1 + }, + "2": { + "gold_ingot": 3 + }, + "3": { + "gold_ingot": 3 + } + } + }, + "multiagent_cooking_2_1_golden_apple_1_rabbit_stew": { + "conversation": "Let's work together to make golden_apple, rabbit_stew.", + "agent_count": 4, + "target": { + "golden_apple": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 3 + }, + "1": { + "gold_ingot": 3, + "apple": 1 + }, + "2": { + "gold_ingot": 3, + "bowl": 1 + }, + "3": { + "gold_ingot": 3 + } + } + }, + "multiagent_cooking_2_1_bread_1_cake": { + "conversation": "Let's work together to make cake, bread.", + "agent_count": 4, + "target": { + "cake": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "1": "Collaborate with agents around you to make 1 cake, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" + }, + "initial_inventory": { + "0": { + "milk_bucket": 1 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + }, + "2": { + "milk_bucket": 1 + }, + "3": { + "milk_bucket": 1 + } + } + }, + "multiagent_cooking_2_1_baked_potato_1_golden_apple": { + "conversation": "Let's work together to make baked_potato, golden_apple.", + "agent_count": 4, + "target": { + "baked_potato": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" + }, + "initial_inventory": { + "0": { + "coal": 3, + "gold_ingot": 3 + }, + "1": { + "coal": 3, + "gold_ingot": 3 + }, + "2": { + "coal": 3, + "gold_ingot": 3, + "apple": 1 + }, + "3": { + "coal": 3, + "gold_ingot": 3 + } + } + }, + "multiagent_cooking_2_1_baked_potato_1_rabbit_stew": { + "conversation": "Let's work together to make baked_potato, rabbit_stew.", + "agent_count": 4, + "target": { + "baked_potato": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 rabbit_stew. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 rabbit_stew. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" + }, + "initial_inventory": { + "0": { + "coal": 3 + }, + "1": { + "coal": 3, + "bowl": 1 + }, + "2": { + "coal": 3 + }, + "3": { + "coal": 3 + } + } + }, + "multiagent_cooking_2_1_bread_1_rabbit_stew": { + "conversation": "Let's work together to make rabbit_stew, bread.", + "agent_count": 4, + "target": { + "rabbit_stew": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": {}, + "2": {}, + "3": {} + } + }, + "multiagent_cooking_2_1_baked_potato_1_bread": { + "conversation": "Let's work together to make bread, baked_potato.", + "agent_count": 4, + "target": { + "bread": 1, + "baked_potato": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 baked_potato. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", + "1": "Collaborate with agents around you to make 1 bread, 1 baked_potato. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']" + }, + "initial_inventory": { + "0": { + "coal": 3 + }, + "1": { + "coal": 3 + }, + "2": { + "coal": 3 + }, + "3": { + "coal": 3 + } + } + }, + "multiagent_cooking_2_1_baked_potato_1_cake": { + "conversation": "Let's work together to make baked_potato, cake.", + "agent_count": 4, + "target": { + "baked_potato": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" + }, + "initial_inventory": { + "0": { + "coal": 3, + "milk_bucket": 1 + }, + "1": { + "coal": 3, + "milk_bucket": 1 + }, + "2": { + "coal": 3, + "milk_bucket": 1, + "egg": 1 + }, + "3": { + "coal": 3, + "milk_bucket": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_beef_1_golden_apple": { + "conversation": "Let's work together to make golden_apple, cooked_beef.", + "agent_count": 4, + "target": { + "golden_apple": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 3, + "coal": 3 + }, + "1": { + "gold_ingot": 3, + "apple": 1, + "coal": 3 + }, + "2": { + "gold_ingot": 3, + "coal": 3 + }, + "3": { + "gold_ingot": 3, + "coal": 3 + } + } + }, + "multiagent_cooking_2_1_bread_1_cooked_beef": { + "conversation": "Let's work together to make bread, cooked_beef.", + "agent_count": 4, + "target": { + "bread": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "1": "Collaborate with agents around you to make 1 bread, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" + }, + "initial_inventory": { + "0": { + "coal": 3 + }, + "1": { + "coal": 3 + }, + "2": { + "coal": 3 + }, + "3": { + "coal": 3 + } + } + } +} \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_test_2_items/5_agent.json b/tasks/cooking_tasks/require_collab_test_2_items/5_agent.json new file mode 100644 index 0000000..76bc037 --- /dev/null +++ b/tasks/cooking_tasks/require_collab_test_2_items/5_agent.json @@ -0,0 +1,473 @@ +{ + "multiagent_cooking_2_1_bread_1_golden_apple": { + "conversation": "Let's work together to make golden_apple, bread.", + "agent_count": 5, + "target": { + "golden_apple": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 bread. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 bread. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 2 + }, + "1": { + "gold_ingot": 2, + "apple": 1 + }, + "2": { + "gold_ingot": 2 + }, + "3": { + "gold_ingot": 2 + }, + "4": { + "gold_ingot": 2 + } + } + }, + "multiagent_cooking_2_1_golden_apple_1_rabbit_stew": { + "conversation": "Let's work together to make golden_apple, rabbit_stew.", + "agent_count": 5, + "target": { + "golden_apple": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 2 + }, + "1": { + "gold_ingot": 2, + "apple": 1 + }, + "2": { + "gold_ingot": 2, + "bowl": 1 + }, + "3": { + "gold_ingot": 2 + }, + "4": { + "gold_ingot": 2 + } + } + }, + "multiagent_cooking_2_1_bread_1_cake": { + "conversation": "Let's work together to make cake, bread.", + "agent_count": 5, + "target": { + "cake": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "1": "Collaborate with agents around you to make 1 cake, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" + }, + "initial_inventory": { + "0": { + "milk_bucket": 1 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + }, + "2": { + "milk_bucket": 1 + }, + "3": { + "milk_bucket": 1 + }, + "4": { + "milk_bucket": 1 + } + } + }, + "multiagent_cooking_2_1_baked_potato_1_golden_apple": { + "conversation": "Let's work together to make baked_potato, golden_apple.", + "agent_count": 5, + "target": { + "baked_potato": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" + }, + "initial_inventory": { + "0": { + "coal": 2, + "gold_ingot": 2 + }, + "1": { + "coal": 2, + "gold_ingot": 2 + }, + "2": { + "coal": 2, + "gold_ingot": 2, + "apple": 1 + }, + "3": { + "coal": 2, + "gold_ingot": 2 + }, + "4": { + "coal": 2, + "gold_ingot": 2 + } + } + }, + "multiagent_cooking_2_1_baked_potato_1_rabbit_stew": { + "conversation": "Let's work together to make baked_potato, rabbit_stew.", + "agent_count": 5, + "target": { + "baked_potato": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 rabbit_stew. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 rabbit_stew. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" + }, + "initial_inventory": { + "0": { + "coal": 2 + }, + "1": { + "coal": 2, + "bowl": 1 + }, + "2": { + "coal": 2 + }, + "3": { + "coal": 2 + }, + "4": { + "coal": 2 + } + } + }, + "multiagent_cooking_2_1_bread_1_rabbit_stew": { + "conversation": "Let's work together to make rabbit_stew, bread.", + "agent_count": 5, + "target": { + "rabbit_stew": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": {}, + "2": {}, + "3": {}, + "4": {} + } + }, + "multiagent_cooking_2_1_baked_potato_1_bread": { + "conversation": "Let's work together to make bread, baked_potato.", + "agent_count": 5, + "target": { + "bread": 1, + "baked_potato": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 baked_potato. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", + "1": "Collaborate with agents around you to make 1 bread, 1 baked_potato. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']" + }, + "initial_inventory": { + "0": { + "coal": 2 + }, + "1": { + "coal": 2 + }, + "2": { + "coal": 2 + }, + "3": { + "coal": 2 + }, + "4": { + "coal": 2 + } + } + }, + "multiagent_cooking_2_1_baked_potato_1_cake": { + "conversation": "Let's work together to make baked_potato, cake.", + "agent_count": 5, + "target": { + "baked_potato": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" + }, + "initial_inventory": { + "0": { + "coal": 2, + "milk_bucket": 1 + }, + "1": { + "coal": 2, + "milk_bucket": 1 + }, + "2": { + "coal": 2, + "milk_bucket": 1, + "egg": 1 + }, + "3": { + "coal": 2, + "milk_bucket": 1 + }, + "4": { + "coal": 2, + "milk_bucket": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_beef_1_golden_apple": { + "conversation": "Let's work together to make golden_apple, cooked_beef.", + "agent_count": 5, + "target": { + "golden_apple": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 2, + "coal": 2 + }, + "1": { + "gold_ingot": 2, + "apple": 1, + "coal": 2 + }, + "2": { + "gold_ingot": 2, + "coal": 2 + }, + "3": { + "gold_ingot": 2, + "coal": 2 + }, + "4": { + "gold_ingot": 2, + "coal": 2 + } + } + }, + "multiagent_cooking_2_1_bread_1_cooked_beef": { + "conversation": "Let's work together to make bread, cooked_beef.", + "agent_count": 5, + "target": { + "bread": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "1": "Collaborate with agents around you to make 1 bread, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" + }, + "initial_inventory": { + "0": { + "coal": 2 + }, + "1": { + "coal": 2 + }, + "2": { + "coal": 2 + }, + "3": { + "coal": 2 + }, + "4": { + "coal": 2 + } + } + } +} \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_test_2_items/5_agent_long_timeout.json b/tasks/cooking_tasks/require_collab_test_2_items/5_agent_long_timeout.json new file mode 100644 index 0000000..1d9ccf5 --- /dev/null +++ b/tasks/cooking_tasks/require_collab_test_2_items/5_agent_long_timeout.json @@ -0,0 +1,442 @@ +{ + "multiagent_cooking_2_1_bread_1_golden_apple": { + "conversation": "Let's work together to make golden_apple, bread.", + "agent_count": 4, + "target": { + "golden_apple": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 bread. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 bread. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 3 + }, + "1": { + "gold_ingot": 3, + "apple": 1 + }, + "2": { + "gold_ingot": 3 + }, + "3": { + "gold_ingot": 3 + } + } + }, + "multiagent_cooking_2_1_golden_apple_1_rabbit_stew": { + "conversation": "Let's work together to make golden_apple, rabbit_stew.", + "agent_count": 4, + "target": { + "golden_apple": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 3 + }, + "1": { + "gold_ingot": 3, + "apple": 1 + }, + "2": { + "gold_ingot": 3, + "bowl": 1 + }, + "3": { + "gold_ingot": 3 + } + } + }, + "multiagent_cooking_2_1_bread_1_cake": { + "conversation": "Let's work together to make cake, bread.", + "agent_count": 4, + "target": { + "cake": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "1": "Collaborate with agents around you to make 1 cake, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" + }, + "initial_inventory": { + "0": { + "milk_bucket": 1 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + }, + "2": { + "milk_bucket": 1 + }, + "3": { + "milk_bucket": 1 + } + } + }, + "multiagent_cooking_2_1_baked_potato_1_golden_apple": { + "conversation": "Let's work together to make baked_potato, golden_apple.", + "agent_count": 4, + "target": { + "baked_potato": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" + }, + "initial_inventory": { + "0": { + "coal": 3, + "gold_ingot": 3 + }, + "1": { + "coal": 3, + "gold_ingot": 3 + }, + "2": { + "coal": 3, + "gold_ingot": 3, + "apple": 1 + }, + "3": { + "coal": 3, + "gold_ingot": 3 + } + } + }, + "multiagent_cooking_2_1_baked_potato_1_rabbit_stew": { + "conversation": "Let's work together to make baked_potato, rabbit_stew.", + "agent_count": 4, + "target": { + "baked_potato": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 rabbit_stew. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 rabbit_stew. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" + }, + "initial_inventory": { + "0": { + "coal": 3 + }, + "1": { + "coal": 3, + "bowl": 1 + }, + "2": { + "coal": 3 + }, + "3": { + "coal": 3 + } + } + }, + "multiagent_cooking_2_1_bread_1_rabbit_stew": { + "conversation": "Let's work together to make rabbit_stew, bread.", + "agent_count": 4, + "target": { + "rabbit_stew": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": {}, + "2": {}, + "3": {} + } + }, + "multiagent_cooking_2_1_baked_potato_1_bread": { + "conversation": "Let's work together to make bread, baked_potato.", + "agent_count": 4, + "target": { + "bread": 1, + "baked_potato": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 baked_potato. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", + "1": "Collaborate with agents around you to make 1 bread, 1 baked_potato. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']" + }, + "initial_inventory": { + "0": { + "coal": 3 + }, + "1": { + "coal": 3 + }, + "2": { + "coal": 3 + }, + "3": { + "coal": 3 + } + } + }, + "multiagent_cooking_2_1_baked_potato_1_cake": { + "conversation": "Let's work together to make baked_potato, cake.", + "agent_count": 4, + "target": { + "baked_potato": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" + }, + "initial_inventory": { + "0": { + "coal": 3, + "milk_bucket": 1 + }, + "1": { + "coal": 3, + "milk_bucket": 1 + }, + "2": { + "coal": 3, + "milk_bucket": 1, + "egg": 1 + }, + "3": { + "coal": 3, + "milk_bucket": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_beef_1_golden_apple": { + "conversation": "Let's work together to make golden_apple, cooked_beef.", + "agent_count": 4, + "target": { + "golden_apple": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 3, + "coal": 3 + }, + "1": { + "gold_ingot": 3, + "apple": 1, + "coal": 3 + }, + "2": { + "gold_ingot": 3, + "coal": 3 + }, + "3": { + "gold_ingot": 3, + "coal": 3 + } + } + }, + "multiagent_cooking_2_1_bread_1_cooked_beef": { + "conversation": "Let's work together to make bread, cooked_beef.", + "agent_count": 4, + "target": { + "bread": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "1": "Collaborate with agents around you to make 1 bread, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" + }, + "initial_inventory": { + "0": { + "coal": 3 + }, + "1": { + "coal": 3 + }, + "2": { + "coal": 3 + }, + "3": { + "coal": 3 + } + } + } +} \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_test_3_items/2_agent.json b/tasks/cooking_tasks/require_collab_test_3_items/2_agent.json new file mode 100644 index 0000000..249969c --- /dev/null +++ b/tasks/cooking_tasks/require_collab_test_3_items/2_agent.json @@ -0,0 +1,441 @@ +{ + "multiagent_cooking_3_1_baked_potato_1_bread_1_cake": { + "conversation": "Let's work together to make bread, baked_potato, cake.", + "agent_count": 2, + "target": { + "bread": 1, + "baked_potato": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cake. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "1": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cake. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "2": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cake. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" + }, + "initial_inventory": { + "0": { + "coal": 5, + "milk_bucket": 2, + "egg": 1 + }, + "1": { + "coal": 5, + "milk_bucket": 2 + } + } + }, + "multiagent_cooking_3_1_cake_1_golden_apple": { + "conversation": "Let's work together to make golden_apple, cake.", + "agent_count": 2, + "target": { + "golden_apple": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 cake. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 cake. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "2": "Collaborate with agents around you to make 1 golden_apple, 1 cake. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 5, + "milk_bucket": 2 + }, + "1": { + "gold_ingot": 5, + "apple": 1, + "milk_bucket": 2, + "egg": 1 + } + } + }, + "multiagent_cooking_3_1_baked_potato_1_cooked_beef_1_golden_apple": { + "conversation": "Let's work together to make golden_apple, cooked_beef, baked_potato.", + "agent_count": 2, + "target": { + "golden_apple": 1, + "cooked_beef": 1, + "baked_potato": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef, 1 baked_potato. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef, 1 baked_potato. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", + "2": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef, 1 baked_potato. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 5, + "coal": 9 + }, + "1": { + "gold_ingot": 5, + "apple": 1, + "coal": 9 + } + } + }, + "multiagent_cooking_3_1_bread_1_cooked_beef_1_golden_apple": { + "conversation": "Let's work together to make cooked_beef, bread, golden_apple.", + "agent_count": 2, + "target": { + "cooked_beef": 1, + "bread": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 bread, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "1": "Collaborate with agents around you to make 1 cooked_beef, 1 bread, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "2": "Collaborate with agents around you to make 1 cooked_beef, 1 bread, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" + }, + "initial_inventory": { + "0": { + "coal": 5, + "gold_ingot": 5, + "apple": 1 + }, + "1": { + "coal": 5, + "gold_ingot": 5 + } + } + }, + "multiagent_cooking_3_1_baked_potato_1_cake": { + "conversation": "Let's work together to make baked_potato, cake.", + "agent_count": 2, + "target": { + "baked_potato": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "2": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" + }, + "initial_inventory": { + "0": { + "coal": 5, + "milk_bucket": 2, + "egg": 1 + }, + "1": { + "coal": 5, + "milk_bucket": 2 + } + } + }, + "multiagent_cooking_3_1_bread_1_golden_apple_1_rabbit_stew": { + "conversation": "Let's work together to make rabbit_stew, bread, golden_apple.", + "agent_count": 2, + "target": { + "rabbit_stew": 1, + "bread": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread, 1 golden_apple. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread, 1 golden_apple. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "2": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread, 1 golden_apple. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" + }, + "initial_inventory": { + "0": { + "bowl": 1, + "gold_ingot": 5, + "apple": 1 + }, + "1": { + "gold_ingot": 5 + } + } + }, + "multiagent_cooking_3_1_baked_potato_1_bread_1_cooked_beef": { + "conversation": "Let's work together to make bread, baked_potato, cooked_beef.", + "agent_count": 2, + "target": { + "bread": 1, + "baked_potato": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "1": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "2": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" + }, + "initial_inventory": { + "0": { + "coal": 9 + }, + "1": { + "coal": 9 + } + } + }, + "multiagent_cooking_3_1_baked_potato_1_rabbit_stew": { + "conversation": "Let's work together to make rabbit_stew, baked_potato.", + "agent_count": 2, + "target": { + "rabbit_stew": 1, + "baked_potato": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", + "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", + "2": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']" + }, + "initial_inventory": { + "0": { + "bowl": 1, + "coal": 5 + }, + "1": { + "coal": 5 + } + } + }, + "multiagent_cooking_3_1_cake_1_cooked_beef_1_golden_apple": { + "conversation": "Let's work together to make cooked_beef, cake, golden_apple.", + "agent_count": 2, + "target": { + "cooked_beef": 1, + "cake": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 cake, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "1": "Collaborate with agents around you to make 1 cooked_beef, 1 cake, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "2": "Collaborate with agents around you to make 1 cooked_beef, 1 cake, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" + }, + "initial_inventory": { + "0": { + "coal": 5, + "milk_bucket": 2, + "egg": 1, + "gold_ingot": 5, + "apple": 1 + }, + "1": { + "coal": 5, + "milk_bucket": 2, + "gold_ingot": 5 + } + } + }, + "multiagent_cooking_3_1_bread_1_cooked_beef": { + "conversation": "Let's work together to make cooked_beef, bread.", + "agent_count": 2, + "target": { + "cooked_beef": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 bread. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "1": "Collaborate with agents around you to make 1 cooked_beef, 1 bread. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "2": "Collaborate with agents around you to make 1 cooked_beef, 1 bread. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" + }, + "initial_inventory": { + "0": { + "coal": 5 + }, + "1": { + "coal": 5 + } + } + } +} \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_test_3_items/3_agent.json b/tasks/cooking_tasks/require_collab_test_3_items/3_agent.json new file mode 100644 index 0000000..57fb769 --- /dev/null +++ b/tasks/cooking_tasks/require_collab_test_3_items/3_agent.json @@ -0,0 +1,478 @@ +{ + "multiagent_cooking_3_1_baked_potato_1_bread_1_cake": { + "conversation": "Let's work together to make bread, baked_potato, cake.", + "agent_count": 3, + "target": { + "bread": 1, + "baked_potato": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cake. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "1": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cake. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "2": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cake. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" + }, + "initial_inventory": { + "0": { + "coal": 3, + "milk_bucket": 2 + }, + "1": { + "coal": 3, + "milk_bucket": 2 + }, + "2": { + "coal": 3, + "milk_bucket": 2, + "egg": 1 + } + } + }, + "multiagent_cooking_3_1_cake_1_golden_apple": { + "conversation": "Let's work together to make golden_apple, cake.", + "agent_count": 3, + "target": { + "golden_apple": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 cake. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 cake. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "2": "Collaborate with agents around you to make 1 golden_apple, 1 cake. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 3, + "milk_bucket": 2, + "egg": 1 + }, + "1": { + "gold_ingot": 3, + "apple": 1, + "milk_bucket": 2 + }, + "2": { + "gold_ingot": 3, + "milk_bucket": 2 + } + } + }, + "multiagent_cooking_3_1_baked_potato_1_cooked_beef_1_golden_apple": { + "conversation": "Let's work together to make golden_apple, cooked_beef, baked_potato.", + "agent_count": 3, + "target": { + "golden_apple": 1, + "cooked_beef": 1, + "baked_potato": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef, 1 baked_potato. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef, 1 baked_potato. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", + "2": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef, 1 baked_potato. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 3, + "coal": 6 + }, + "1": { + "gold_ingot": 3, + "apple": 1, + "coal": 6 + }, + "2": { + "gold_ingot": 3, + "coal": 6 + } + } + }, + "multiagent_cooking_3_1_bread_1_cooked_beef_1_golden_apple": { + "conversation": "Let's work together to make cooked_beef, bread, golden_apple.", + "agent_count": 3, + "target": { + "cooked_beef": 1, + "bread": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 bread, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "1": "Collaborate with agents around you to make 1 cooked_beef, 1 bread, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "2": "Collaborate with agents around you to make 1 cooked_beef, 1 bread, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" + }, + "initial_inventory": { + "0": { + "coal": 3, + "gold_ingot": 3 + }, + "1": { + "coal": 3, + "gold_ingot": 3 + }, + "2": { + "coal": 3, + "gold_ingot": 3, + "apple": 1 + } + } + }, + "multiagent_cooking_3_1_baked_potato_1_cake": { + "conversation": "Let's work together to make baked_potato, cake.", + "agent_count": 3, + "target": { + "baked_potato": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "2": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" + }, + "initial_inventory": { + "0": { + "coal": 3, + "milk_bucket": 2 + }, + "1": { + "coal": 3, + "milk_bucket": 2 + }, + "2": { + "coal": 3, + "milk_bucket": 2, + "egg": 1 + } + } + }, + "multiagent_cooking_3_1_bread_1_golden_apple_1_rabbit_stew": { + "conversation": "Let's work together to make rabbit_stew, bread, golden_apple.", + "agent_count": 3, + "target": { + "rabbit_stew": 1, + "bread": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread, 1 golden_apple. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread, 1 golden_apple. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "2": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread, 1 golden_apple. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" + }, + "initial_inventory": { + "0": { + "bowl": 1, + "gold_ingot": 3 + }, + "1": { + "gold_ingot": 3 + }, + "2": { + "gold_ingot": 3, + "apple": 1 + } + } + }, + "multiagent_cooking_3_1_baked_potato_1_bread_1_cooked_beef": { + "conversation": "Let's work together to make bread, baked_potato, cooked_beef.", + "agent_count": 3, + "target": { + "bread": 1, + "baked_potato": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "1": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "2": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" + }, + "initial_inventory": { + "0": { + "coal": 6 + }, + "1": { + "coal": 6 + }, + "2": { + "coal": 6 + } + } + }, + "multiagent_cooking_3_1_baked_potato_1_rabbit_stew": { + "conversation": "Let's work together to make rabbit_stew, baked_potato.", + "agent_count": 3, + "target": { + "rabbit_stew": 1, + "baked_potato": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", + "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", + "2": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']" + }, + "initial_inventory": { + "0": { + "bowl": 1, + "coal": 3 + }, + "1": { + "coal": 3 + }, + "2": { + "coal": 3 + } + } + }, + "multiagent_cooking_3_1_cake_1_cooked_beef_1_golden_apple": { + "conversation": "Let's work together to make cooked_beef, cake, golden_apple.", + "agent_count": 3, + "target": { + "cooked_beef": 1, + "cake": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 cake, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "1": "Collaborate with agents around you to make 1 cooked_beef, 1 cake, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "2": "Collaborate with agents around you to make 1 cooked_beef, 1 cake, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" + }, + "initial_inventory": { + "0": { + "coal": 3, + "milk_bucket": 2, + "gold_ingot": 3 + }, + "1": { + "coal": 3, + "milk_bucket": 2, + "gold_ingot": 3, + "apple": 1 + }, + "2": { + "coal": 3, + "milk_bucket": 2, + "egg": 1, + "gold_ingot": 3 + } + } + }, + "multiagent_cooking_3_1_bread_1_cooked_beef": { + "conversation": "Let's work together to make cooked_beef, bread.", + "agent_count": 3, + "target": { + "cooked_beef": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 bread. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "1": "Collaborate with agents around you to make 1 cooked_beef, 1 bread. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "2": "Collaborate with agents around you to make 1 cooked_beef, 1 bread. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" + }, + "initial_inventory": { + "0": { + "coal": 3 + }, + "1": { + "coal": 3 + }, + "2": { + "coal": 3 + } + } + } +} \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_test_3_items/4_agent.json b/tasks/cooking_tasks/require_collab_test_3_items/4_agent.json new file mode 100644 index 0000000..fa2926d --- /dev/null +++ b/tasks/cooking_tasks/require_collab_test_3_items/4_agent.json @@ -0,0 +1,515 @@ +{ + "multiagent_cooking_3_1_baked_potato_1_bread_1_cake": { + "conversation": "Let's work together to make bread, baked_potato, cake.", + "agent_count": 4, + "target": { + "bread": 1, + "baked_potato": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cake. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "1": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cake. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "2": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cake. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" + }, + "initial_inventory": { + "0": { + "coal": 3, + "milk_bucket": 1 + }, + "1": { + "coal": 3, + "milk_bucket": 1 + }, + "2": { + "coal": 3, + "milk_bucket": 1, + "egg": 1 + }, + "3": { + "coal": 3, + "milk_bucket": 1 + } + } + }, + "multiagent_cooking_3_1_cake_1_golden_apple": { + "conversation": "Let's work together to make golden_apple, cake.", + "agent_count": 4, + "target": { + "golden_apple": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 cake. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 cake. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "2": "Collaborate with agents around you to make 1 golden_apple, 1 cake. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 3, + "milk_bucket": 1 + }, + "1": { + "gold_ingot": 3, + "apple": 1, + "milk_bucket": 1 + }, + "2": { + "gold_ingot": 3, + "milk_bucket": 1 + }, + "3": { + "gold_ingot": 3, + "milk_bucket": 1, + "egg": 1 + } + } + }, + "multiagent_cooking_3_1_baked_potato_1_cooked_beef_1_golden_apple": { + "conversation": "Let's work together to make golden_apple, cooked_beef, baked_potato.", + "agent_count": 4, + "target": { + "golden_apple": 1, + "cooked_beef": 1, + "baked_potato": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef, 1 baked_potato. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef, 1 baked_potato. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", + "2": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef, 1 baked_potato. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 3, + "coal": 5 + }, + "1": { + "gold_ingot": 3, + "apple": 1, + "coal": 5 + }, + "2": { + "gold_ingot": 3, + "coal": 5 + }, + "3": { + "gold_ingot": 3, + "coal": 5 + } + } + }, + "multiagent_cooking_3_1_bread_1_cooked_beef_1_golden_apple": { + "conversation": "Let's work together to make cooked_beef, bread, golden_apple.", + "agent_count": 4, + "target": { + "cooked_beef": 1, + "bread": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 bread, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "1": "Collaborate with agents around you to make 1 cooked_beef, 1 bread, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "2": "Collaborate with agents around you to make 1 cooked_beef, 1 bread, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" + }, + "initial_inventory": { + "0": { + "coal": 3, + "gold_ingot": 3 + }, + "1": { + "coal": 3, + "gold_ingot": 3 + }, + "2": { + "coal": 3, + "gold_ingot": 3, + "apple": 1 + }, + "3": { + "coal": 3, + "gold_ingot": 3 + } + } + }, + "multiagent_cooking_3_1_baked_potato_1_cake": { + "conversation": "Let's work together to make baked_potato, cake.", + "agent_count": 4, + "target": { + "baked_potato": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "2": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" + }, + "initial_inventory": { + "0": { + "coal": 3, + "milk_bucket": 1 + }, + "1": { + "coal": 3, + "milk_bucket": 1 + }, + "2": { + "coal": 3, + "milk_bucket": 1, + "egg": 1 + }, + "3": { + "coal": 3, + "milk_bucket": 1 + } + } + }, + "multiagent_cooking_3_1_bread_1_golden_apple_1_rabbit_stew": { + "conversation": "Let's work together to make rabbit_stew, bread, golden_apple.", + "agent_count": 4, + "target": { + "rabbit_stew": 1, + "bread": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread, 1 golden_apple. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread, 1 golden_apple. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "2": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread, 1 golden_apple. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" + }, + "initial_inventory": { + "0": { + "bowl": 1, + "gold_ingot": 3 + }, + "1": { + "gold_ingot": 3 + }, + "2": { + "gold_ingot": 3, + "apple": 1 + }, + "3": { + "gold_ingot": 3 + } + } + }, + "multiagent_cooking_3_1_baked_potato_1_bread_1_cooked_beef": { + "conversation": "Let's work together to make bread, baked_potato, cooked_beef.", + "agent_count": 4, + "target": { + "bread": 1, + "baked_potato": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "1": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "2": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" + }, + "initial_inventory": { + "0": { + "coal": 5 + }, + "1": { + "coal": 5 + }, + "2": { + "coal": 5 + }, + "3": { + "coal": 5 + } + } + }, + "multiagent_cooking_3_1_baked_potato_1_rabbit_stew": { + "conversation": "Let's work together to make rabbit_stew, baked_potato.", + "agent_count": 4, + "target": { + "rabbit_stew": 1, + "baked_potato": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", + "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", + "2": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']" + }, + "initial_inventory": { + "0": { + "bowl": 1, + "coal": 3 + }, + "1": { + "coal": 3 + }, + "2": { + "coal": 3 + }, + "3": { + "coal": 3 + } + } + }, + "multiagent_cooking_3_1_cake_1_cooked_beef_1_golden_apple": { + "conversation": "Let's work together to make cooked_beef, cake, golden_apple.", + "agent_count": 4, + "target": { + "cooked_beef": 1, + "cake": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 cake, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "1": "Collaborate with agents around you to make 1 cooked_beef, 1 cake, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "2": "Collaborate with agents around you to make 1 cooked_beef, 1 cake, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" + }, + "initial_inventory": { + "0": { + "coal": 3, + "milk_bucket": 1, + "gold_ingot": 3, + "apple": 1 + }, + "1": { + "coal": 3, + "milk_bucket": 1, + "gold_ingot": 3 + }, + "2": { + "coal": 3, + "milk_bucket": 1, + "egg": 1, + "gold_ingot": 3 + }, + "3": { + "coal": 3, + "milk_bucket": 1, + "gold_ingot": 3 + } + } + }, + "multiagent_cooking_3_1_bread_1_cooked_beef": { + "conversation": "Let's work together to make cooked_beef, bread.", + "agent_count": 4, + "target": { + "cooked_beef": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 bread. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "1": "Collaborate with agents around you to make 1 cooked_beef, 1 bread. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "2": "Collaborate with agents around you to make 1 cooked_beef, 1 bread. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" + }, + "initial_inventory": { + "0": { + "coal": 3 + }, + "1": { + "coal": 3 + }, + "2": { + "coal": 3 + }, + "3": { + "coal": 3 + } + } + } +} \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_test_3_items/4_agent_long_timeout.json b/tasks/cooking_tasks/require_collab_test_3_items/4_agent_long_timeout.json new file mode 100644 index 0000000..98233f2 --- /dev/null +++ b/tasks/cooking_tasks/require_collab_test_3_items/4_agent_long_timeout.json @@ -0,0 +1,515 @@ +{ + "multiagent_cooking_3_1_baked_potato_1_bread_1_cake": { + "conversation": "Let's work together to make bread, baked_potato, cake.", + "agent_count": 4, + "target": { + "bread": 1, + "baked_potato": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cake. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "1": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cake. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "2": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cake. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" + }, + "initial_inventory": { + "0": { + "coal": 3, + "milk_bucket": 1 + }, + "1": { + "coal": 3, + "milk_bucket": 1 + }, + "2": { + "coal": 3, + "milk_bucket": 1, + "egg": 1 + }, + "3": { + "coal": 3, + "milk_bucket": 1 + } + } + }, + "multiagent_cooking_3_1_cake_1_golden_apple": { + "conversation": "Let's work together to make golden_apple, cake.", + "agent_count": 4, + "target": { + "golden_apple": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 cake. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 cake. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "2": "Collaborate with agents around you to make 1 golden_apple, 1 cake. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 3, + "milk_bucket": 1 + }, + "1": { + "gold_ingot": 3, + "apple": 1, + "milk_bucket": 1 + }, + "2": { + "gold_ingot": 3, + "milk_bucket": 1 + }, + "3": { + "gold_ingot": 3, + "milk_bucket": 1, + "egg": 1 + } + } + }, + "multiagent_cooking_3_1_baked_potato_1_cooked_beef_1_golden_apple": { + "conversation": "Let's work together to make golden_apple, cooked_beef, baked_potato.", + "agent_count": 4, + "target": { + "golden_apple": 1, + "cooked_beef": 1, + "baked_potato": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef, 1 baked_potato. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef, 1 baked_potato. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", + "2": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef, 1 baked_potato. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 3, + "coal": 5 + }, + "1": { + "gold_ingot": 3, + "apple": 1, + "coal": 5 + }, + "2": { + "gold_ingot": 3, + "coal": 5 + }, + "3": { + "gold_ingot": 3, + "coal": 5 + } + } + }, + "multiagent_cooking_3_1_bread_1_cooked_beef_1_golden_apple": { + "conversation": "Let's work together to make cooked_beef, bread, golden_apple.", + "agent_count": 4, + "target": { + "cooked_beef": 1, + "bread": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 bread, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "1": "Collaborate with agents around you to make 1 cooked_beef, 1 bread, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "2": "Collaborate with agents around you to make 1 cooked_beef, 1 bread, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" + }, + "initial_inventory": { + "0": { + "coal": 3, + "gold_ingot": 3 + }, + "1": { + "coal": 3, + "gold_ingot": 3 + }, + "2": { + "coal": 3, + "gold_ingot": 3, + "apple": 1 + }, + "3": { + "coal": 3, + "gold_ingot": 3 + } + } + }, + "multiagent_cooking_3_1_baked_potato_1_cake": { + "conversation": "Let's work together to make baked_potato, cake.", + "agent_count": 4, + "target": { + "baked_potato": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "2": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" + }, + "initial_inventory": { + "0": { + "coal": 3, + "milk_bucket": 1 + }, + "1": { + "coal": 3, + "milk_bucket": 1 + }, + "2": { + "coal": 3, + "milk_bucket": 1, + "egg": 1 + }, + "3": { + "coal": 3, + "milk_bucket": 1 + } + } + }, + "multiagent_cooking_3_1_bread_1_golden_apple_1_rabbit_stew": { + "conversation": "Let's work together to make rabbit_stew, bread, golden_apple.", + "agent_count": 4, + "target": { + "rabbit_stew": 1, + "bread": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread, 1 golden_apple. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread, 1 golden_apple. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "2": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread, 1 golden_apple. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" + }, + "initial_inventory": { + "0": { + "bowl": 1, + "gold_ingot": 3 + }, + "1": { + "gold_ingot": 3 + }, + "2": { + "gold_ingot": 3, + "apple": 1 + }, + "3": { + "gold_ingot": 3 + } + } + }, + "multiagent_cooking_3_1_baked_potato_1_bread_1_cooked_beef": { + "conversation": "Let's work together to make bread, baked_potato, cooked_beef.", + "agent_count": 4, + "target": { + "bread": 1, + "baked_potato": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "1": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "2": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" + }, + "initial_inventory": { + "0": { + "coal": 5 + }, + "1": { + "coal": 5 + }, + "2": { + "coal": 5 + }, + "3": { + "coal": 5 + } + } + }, + "multiagent_cooking_3_1_baked_potato_1_rabbit_stew": { + "conversation": "Let's work together to make rabbit_stew, baked_potato.", + "agent_count": 4, + "target": { + "rabbit_stew": 1, + "baked_potato": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", + "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", + "2": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']" + }, + "initial_inventory": { + "0": { + "bowl": 1, + "coal": 3 + }, + "1": { + "coal": 3 + }, + "2": { + "coal": 3 + }, + "3": { + "coal": 3 + } + } + }, + "multiagent_cooking_3_1_cake_1_cooked_beef_1_golden_apple": { + "conversation": "Let's work together to make cooked_beef, cake, golden_apple.", + "agent_count": 4, + "target": { + "cooked_beef": 1, + "cake": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 cake, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "1": "Collaborate with agents around you to make 1 cooked_beef, 1 cake, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "2": "Collaborate with agents around you to make 1 cooked_beef, 1 cake, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" + }, + "initial_inventory": { + "0": { + "coal": 3, + "milk_bucket": 1, + "gold_ingot": 3, + "apple": 1 + }, + "1": { + "coal": 3, + "milk_bucket": 1, + "gold_ingot": 3 + }, + "2": { + "coal": 3, + "milk_bucket": 1, + "egg": 1, + "gold_ingot": 3 + }, + "3": { + "coal": 3, + "milk_bucket": 1, + "gold_ingot": 3 + } + } + }, + "multiagent_cooking_3_1_bread_1_cooked_beef": { + "conversation": "Let's work together to make cooked_beef, bread.", + "agent_count": 4, + "target": { + "cooked_beef": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 bread. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "1": "Collaborate with agents around you to make 1 cooked_beef, 1 bread. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "2": "Collaborate with agents around you to make 1 cooked_beef, 1 bread. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" + }, + "initial_inventory": { + "0": { + "coal": 3 + }, + "1": { + "coal": 3 + }, + "2": { + "coal": 3 + }, + "3": { + "coal": 3 + } + } + } +} \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_test_3_items/5_agent.json b/tasks/cooking_tasks/require_collab_test_3_items/5_agent.json new file mode 100644 index 0000000..3552eb1 --- /dev/null +++ b/tasks/cooking_tasks/require_collab_test_3_items/5_agent.json @@ -0,0 +1,552 @@ +{ + "multiagent_cooking_3_1_baked_potato_1_bread_1_cake": { + "conversation": "Let's work together to make bread, baked_potato, cake.", + "agent_count": 5, + "target": { + "bread": 1, + "baked_potato": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cake. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "1": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cake. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "2": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cake. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" + }, + "initial_inventory": { + "0": { + "coal": 2, + "milk_bucket": 1 + }, + "1": { + "coal": 2, + "milk_bucket": 1 + }, + "2": { + "coal": 2, + "milk_bucket": 1, + "egg": 1 + }, + "3": { + "coal": 2, + "milk_bucket": 1 + }, + "4": { + "coal": 2, + "milk_bucket": 1 + } + } + }, + "multiagent_cooking_3_1_cake_1_golden_apple": { + "conversation": "Let's work together to make golden_apple, cake.", + "agent_count": 5, + "target": { + "golden_apple": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 cake. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 cake. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "2": "Collaborate with agents around you to make 1 golden_apple, 1 cake. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 2, + "milk_bucket": 1 + }, + "1": { + "gold_ingot": 2, + "apple": 1, + "milk_bucket": 1 + }, + "2": { + "gold_ingot": 2, + "milk_bucket": 1 + }, + "3": { + "gold_ingot": 2, + "milk_bucket": 1, + "egg": 1 + }, + "4": { + "gold_ingot": 2, + "milk_bucket": 1 + } + } + }, + "multiagent_cooking_3_1_baked_potato_1_cooked_beef_1_golden_apple": { + "conversation": "Let's work together to make golden_apple, cooked_beef, baked_potato.", + "agent_count": 5, + "target": { + "golden_apple": 1, + "cooked_beef": 1, + "baked_potato": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef, 1 baked_potato. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef, 1 baked_potato. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", + "2": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef, 1 baked_potato. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 2, + "coal": 4 + }, + "1": { + "gold_ingot": 2, + "apple": 1, + "coal": 4 + }, + "2": { + "gold_ingot": 2, + "coal": 4 + }, + "3": { + "gold_ingot": 2, + "coal": 4 + }, + "4": { + "gold_ingot": 2, + "coal": 4 + } + } + }, + "multiagent_cooking_3_1_bread_1_cooked_beef_1_golden_apple": { + "conversation": "Let's work together to make cooked_beef, bread, golden_apple.", + "agent_count": 5, + "target": { + "cooked_beef": 1, + "bread": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 bread, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "1": "Collaborate with agents around you to make 1 cooked_beef, 1 bread, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "2": "Collaborate with agents around you to make 1 cooked_beef, 1 bread, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" + }, + "initial_inventory": { + "0": { + "coal": 2, + "gold_ingot": 2 + }, + "1": { + "coal": 2, + "gold_ingot": 2 + }, + "2": { + "coal": 2, + "gold_ingot": 2, + "apple": 1 + }, + "3": { + "coal": 2, + "gold_ingot": 2 + }, + "4": { + "coal": 2, + "gold_ingot": 2 + } + } + }, + "multiagent_cooking_3_1_baked_potato_1_cake": { + "conversation": "Let's work together to make baked_potato, cake.", + "agent_count": 5, + "target": { + "baked_potato": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "2": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" + }, + "initial_inventory": { + "0": { + "coal": 2, + "milk_bucket": 1 + }, + "1": { + "coal": 2, + "milk_bucket": 1 + }, + "2": { + "coal": 2, + "milk_bucket": 1, + "egg": 1 + }, + "3": { + "coal": 2, + "milk_bucket": 1 + }, + "4": { + "coal": 2, + "milk_bucket": 1 + } + } + }, + "multiagent_cooking_3_1_bread_1_golden_apple_1_rabbit_stew": { + "conversation": "Let's work together to make rabbit_stew, bread, golden_apple.", + "agent_count": 5, + "target": { + "rabbit_stew": 1, + "bread": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread, 1 golden_apple. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread, 1 golden_apple. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "2": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread, 1 golden_apple. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" + }, + "initial_inventory": { + "0": { + "bowl": 1, + "gold_ingot": 2 + }, + "1": { + "gold_ingot": 2 + }, + "2": { + "gold_ingot": 2, + "apple": 1 + }, + "3": { + "gold_ingot": 2 + }, + "4": { + "gold_ingot": 2 + } + } + }, + "multiagent_cooking_3_1_baked_potato_1_bread_1_cooked_beef": { + "conversation": "Let's work together to make bread, baked_potato, cooked_beef.", + "agent_count": 5, + "target": { + "bread": 1, + "baked_potato": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "1": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "2": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" + }, + "initial_inventory": { + "0": { + "coal": 4 + }, + "1": { + "coal": 4 + }, + "2": { + "coal": 4 + }, + "3": { + "coal": 4 + }, + "4": { + "coal": 4 + } + } + }, + "multiagent_cooking_3_1_baked_potato_1_rabbit_stew": { + "conversation": "Let's work together to make rabbit_stew, baked_potato.", + "agent_count": 5, + "target": { + "rabbit_stew": 1, + "baked_potato": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", + "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", + "2": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']" + }, + "initial_inventory": { + "0": { + "bowl": 1, + "coal": 2 + }, + "1": { + "coal": 2 + }, + "2": { + "coal": 2 + }, + "3": { + "coal": 2 + }, + "4": { + "coal": 2 + } + } + }, + "multiagent_cooking_3_1_cake_1_cooked_beef_1_golden_apple": { + "conversation": "Let's work together to make cooked_beef, cake, golden_apple.", + "agent_count": 5, + "target": { + "cooked_beef": 1, + "cake": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 cake, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "1": "Collaborate with agents around you to make 1 cooked_beef, 1 cake, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "2": "Collaborate with agents around you to make 1 cooked_beef, 1 cake, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" + }, + "initial_inventory": { + "0": { + "coal": 2, + "milk_bucket": 1, + "gold_ingot": 2 + }, + "1": { + "coal": 2, + "milk_bucket": 1, + "gold_ingot": 2 + }, + "2": { + "coal": 2, + "milk_bucket": 1, + "egg": 1, + "gold_ingot": 2 + }, + "3": { + "coal": 2, + "milk_bucket": 1, + "gold_ingot": 2 + }, + "4": { + "coal": 2, + "milk_bucket": 1, + "gold_ingot": 2, + "apple": 1 + } + } + }, + "multiagent_cooking_3_1_bread_1_cooked_beef": { + "conversation": "Let's work together to make cooked_beef, bread.", + "agent_count": 5, + "target": { + "cooked_beef": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 bread. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "1": "Collaborate with agents around you to make 1 cooked_beef, 1 bread. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "2": "Collaborate with agents around you to make 1 cooked_beef, 1 bread. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" + }, + "initial_inventory": { + "0": { + "coal": 2 + }, + "1": { + "coal": 2 + }, + "2": { + "coal": 2 + }, + "3": { + "coal": 2 + }, + "4": { + "coal": 2 + } + } + } +} \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_test_3_items/5_agent_long_timeout.json b/tasks/cooking_tasks/require_collab_test_3_items/5_agent_long_timeout.json new file mode 100644 index 0000000..9ea2f75 --- /dev/null +++ b/tasks/cooking_tasks/require_collab_test_3_items/5_agent_long_timeout.json @@ -0,0 +1,552 @@ +{ + "multiagent_cooking_3_1_baked_potato_1_bread_1_cake": { + "conversation": "Let's work together to make bread, baked_potato, cake.", + "agent_count": 5, + "target": { + "bread": 1, + "baked_potato": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cake. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "1": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cake. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "2": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cake. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" + }, + "initial_inventory": { + "0": { + "coal": 2, + "milk_bucket": 1 + }, + "1": { + "coal": 2, + "milk_bucket": 1 + }, + "2": { + "coal": 2, + "milk_bucket": 1, + "egg": 1 + }, + "3": { + "coal": 2, + "milk_bucket": 1 + }, + "4": { + "coal": 2, + "milk_bucket": 1 + } + } + }, + "multiagent_cooking_3_1_cake_1_golden_apple": { + "conversation": "Let's work together to make golden_apple, cake.", + "agent_count": 5, + "target": { + "golden_apple": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 cake. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 cake. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "2": "Collaborate with agents around you to make 1 golden_apple, 1 cake. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 2, + "milk_bucket": 1 + }, + "1": { + "gold_ingot": 2, + "apple": 1, + "milk_bucket": 1 + }, + "2": { + "gold_ingot": 2, + "milk_bucket": 1 + }, + "3": { + "gold_ingot": 2, + "milk_bucket": 1, + "egg": 1 + }, + "4": { + "gold_ingot": 2, + "milk_bucket": 1 + } + } + }, + "multiagent_cooking_3_1_baked_potato_1_cooked_beef_1_golden_apple": { + "conversation": "Let's work together to make golden_apple, cooked_beef, baked_potato.", + "agent_count": 5, + "target": { + "golden_apple": 1, + "cooked_beef": 1, + "baked_potato": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef, 1 baked_potato. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef, 1 baked_potato. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", + "2": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef, 1 baked_potato. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 2, + "coal": 4 + }, + "1": { + "gold_ingot": 2, + "apple": 1, + "coal": 4 + }, + "2": { + "gold_ingot": 2, + "coal": 4 + }, + "3": { + "gold_ingot": 2, + "coal": 4 + }, + "4": { + "gold_ingot": 2, + "coal": 4 + } + } + }, + "multiagent_cooking_3_1_bread_1_cooked_beef_1_golden_apple": { + "conversation": "Let's work together to make cooked_beef, bread, golden_apple.", + "agent_count": 5, + "target": { + "cooked_beef": 1, + "bread": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 bread, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "1": "Collaborate with agents around you to make 1 cooked_beef, 1 bread, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "2": "Collaborate with agents around you to make 1 cooked_beef, 1 bread, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" + }, + "initial_inventory": { + "0": { + "coal": 2, + "gold_ingot": 2 + }, + "1": { + "coal": 2, + "gold_ingot": 2 + }, + "2": { + "coal": 2, + "gold_ingot": 2, + "apple": 1 + }, + "3": { + "coal": 2, + "gold_ingot": 2 + }, + "4": { + "coal": 2, + "gold_ingot": 2 + } + } + }, + "multiagent_cooking_3_1_baked_potato_1_cake": { + "conversation": "Let's work together to make baked_potato, cake.", + "agent_count": 5, + "target": { + "baked_potato": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "2": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" + }, + "initial_inventory": { + "0": { + "coal": 2, + "milk_bucket": 1 + }, + "1": { + "coal": 2, + "milk_bucket": 1 + }, + "2": { + "coal": 2, + "milk_bucket": 1, + "egg": 1 + }, + "3": { + "coal": 2, + "milk_bucket": 1 + }, + "4": { + "coal": 2, + "milk_bucket": 1 + } + } + }, + "multiagent_cooking_3_1_bread_1_golden_apple_1_rabbit_stew": { + "conversation": "Let's work together to make rabbit_stew, bread, golden_apple.", + "agent_count": 5, + "target": { + "rabbit_stew": 1, + "bread": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread, 1 golden_apple. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread, 1 golden_apple. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "2": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread, 1 golden_apple. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" + }, + "initial_inventory": { + "0": { + "bowl": 1, + "gold_ingot": 2 + }, + "1": { + "gold_ingot": 2 + }, + "2": { + "gold_ingot": 2, + "apple": 1 + }, + "3": { + "gold_ingot": 2 + }, + "4": { + "gold_ingot": 2 + } + } + }, + "multiagent_cooking_3_1_baked_potato_1_bread_1_cooked_beef": { + "conversation": "Let's work together to make bread, baked_potato, cooked_beef.", + "agent_count": 5, + "target": { + "bread": 1, + "baked_potato": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "1": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "2": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" + }, + "initial_inventory": { + "0": { + "coal": 4 + }, + "1": { + "coal": 4 + }, + "2": { + "coal": 4 + }, + "3": { + "coal": 4 + }, + "4": { + "coal": 4 + } + } + }, + "multiagent_cooking_3_1_baked_potato_1_rabbit_stew": { + "conversation": "Let's work together to make rabbit_stew, baked_potato.", + "agent_count": 5, + "target": { + "rabbit_stew": 1, + "baked_potato": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", + "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", + "2": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']" + }, + "initial_inventory": { + "0": { + "bowl": 1, + "coal": 2 + }, + "1": { + "coal": 2 + }, + "2": { + "coal": 2 + }, + "3": { + "coal": 2 + }, + "4": { + "coal": 2 + } + } + }, + "multiagent_cooking_3_1_cake_1_cooked_beef_1_golden_apple": { + "conversation": "Let's work together to make cooked_beef, cake, golden_apple.", + "agent_count": 5, + "target": { + "cooked_beef": 1, + "cake": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 cake, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "1": "Collaborate with agents around you to make 1 cooked_beef, 1 cake, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "2": "Collaborate with agents around you to make 1 cooked_beef, 1 cake, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" + }, + "initial_inventory": { + "0": { + "coal": 2, + "milk_bucket": 1, + "gold_ingot": 2 + }, + "1": { + "coal": 2, + "milk_bucket": 1, + "gold_ingot": 2 + }, + "2": { + "coal": 2, + "milk_bucket": 1, + "egg": 1, + "gold_ingot": 2 + }, + "3": { + "coal": 2, + "milk_bucket": 1, + "gold_ingot": 2 + }, + "4": { + "coal": 2, + "milk_bucket": 1, + "gold_ingot": 2, + "apple": 1 + } + } + }, + "multiagent_cooking_3_1_bread_1_cooked_beef": { + "conversation": "Let's work together to make cooked_beef, bread.", + "agent_count": 5, + "target": { + "cooked_beef": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 bread. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "1": "Collaborate with agents around you to make 1 cooked_beef, 1 bread. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "2": "Collaborate with agents around you to make 1 cooked_beef, 1 bread. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" + }, + "initial_inventory": { + "0": { + "coal": 2 + }, + "1": { + "coal": 2 + }, + "2": { + "coal": 2 + }, + "3": { + "coal": 2 + }, + "4": { + "coal": 2 + } + } + } +} \ No newline at end of file From 3d27399c3b3361a502e358d99e034914df8e67ba Mon Sep 17 00:00:00 2001 From: Isadora White Date: Tue, 6 May 2025 18:34:13 -0700 Subject: [PATCH 031/101] long timeout for 4 and 5 agents --- .../4_agent_long_timeout.json | 20 +++++++++---------- .../5_agent_long_timeout.json | 20 +++++++++---------- 2 files changed, 20 insertions(+), 20 deletions(-) diff --git a/tasks/cooking_tasks/require_collab_test_2_items/4_agent_long_timeout.json b/tasks/cooking_tasks/require_collab_test_2_items/4_agent_long_timeout.json index 1d9ccf5..f48ff56 100644 --- a/tasks/cooking_tasks/require_collab_test_2_items/4_agent_long_timeout.json +++ b/tasks/cooking_tasks/require_collab_test_2_items/4_agent_long_timeout.json @@ -7,7 +7,7 @@ "bread": 1 }, "type": "cooking", - "timeout": 500, + "timeout": 1500, "recipes": { "golden_apple": [ "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", @@ -47,7 +47,7 @@ "rabbit_stew": 1 }, "type": "cooking", - "timeout": 500, + "timeout": 1500, "recipes": { "golden_apple": [ "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", @@ -94,7 +94,7 @@ "bread": 1 }, "type": "cooking", - "timeout": 500, + "timeout": 1500, "recipes": { "cake": [ "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", @@ -137,7 +137,7 @@ "golden_apple": 1 }, "type": "cooking", - "timeout": 500, + "timeout": 1500, "recipes": { "baked_potato": [ "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", @@ -183,7 +183,7 @@ "rabbit_stew": 1 }, "type": "cooking", - "timeout": 500, + "timeout": 1500, "recipes": { "baked_potato": [ "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", @@ -231,7 +231,7 @@ "bread": 1 }, "type": "cooking", - "timeout": 500, + "timeout": 1500, "recipes": { "rabbit_stew": [ "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", @@ -270,7 +270,7 @@ "baked_potato": 1 }, "type": "cooking", - "timeout": 500, + "timeout": 1500, "recipes": { "bread": [ "Step 1: Go to the farm and collect 3 wheat.", @@ -311,7 +311,7 @@ "cake": 1 }, "type": "cooking", - "timeout": 500, + "timeout": 1500, "recipes": { "baked_potato": [ "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", @@ -360,7 +360,7 @@ "cooked_beef": 1 }, "type": "cooking", - "timeout": 500, + "timeout": 1500, "recipes": { "golden_apple": [ "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", @@ -406,7 +406,7 @@ "cooked_beef": 1 }, "type": "cooking", - "timeout": 500, + "timeout": 1500, "recipes": { "bread": [ "Step 1: Go to the farm and collect 3 wheat.", diff --git a/tasks/cooking_tasks/require_collab_test_2_items/5_agent_long_timeout.json b/tasks/cooking_tasks/require_collab_test_2_items/5_agent_long_timeout.json index 1d9ccf5..f48ff56 100644 --- a/tasks/cooking_tasks/require_collab_test_2_items/5_agent_long_timeout.json +++ b/tasks/cooking_tasks/require_collab_test_2_items/5_agent_long_timeout.json @@ -7,7 +7,7 @@ "bread": 1 }, "type": "cooking", - "timeout": 500, + "timeout": 1500, "recipes": { "golden_apple": [ "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", @@ -47,7 +47,7 @@ "rabbit_stew": 1 }, "type": "cooking", - "timeout": 500, + "timeout": 1500, "recipes": { "golden_apple": [ "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", @@ -94,7 +94,7 @@ "bread": 1 }, "type": "cooking", - "timeout": 500, + "timeout": 1500, "recipes": { "cake": [ "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", @@ -137,7 +137,7 @@ "golden_apple": 1 }, "type": "cooking", - "timeout": 500, + "timeout": 1500, "recipes": { "baked_potato": [ "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", @@ -183,7 +183,7 @@ "rabbit_stew": 1 }, "type": "cooking", - "timeout": 500, + "timeout": 1500, "recipes": { "baked_potato": [ "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", @@ -231,7 +231,7 @@ "bread": 1 }, "type": "cooking", - "timeout": 500, + "timeout": 1500, "recipes": { "rabbit_stew": [ "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", @@ -270,7 +270,7 @@ "baked_potato": 1 }, "type": "cooking", - "timeout": 500, + "timeout": 1500, "recipes": { "bread": [ "Step 1: Go to the farm and collect 3 wheat.", @@ -311,7 +311,7 @@ "cake": 1 }, "type": "cooking", - "timeout": 500, + "timeout": 1500, "recipes": { "baked_potato": [ "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", @@ -360,7 +360,7 @@ "cooked_beef": 1 }, "type": "cooking", - "timeout": 500, + "timeout": 1500, "recipes": { "golden_apple": [ "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", @@ -406,7 +406,7 @@ "cooked_beef": 1 }, "type": "cooking", - "timeout": 500, + "timeout": 1500, "recipes": { "bread": [ "Step 1: Go to the farm and collect 3 wheat.", From 31512532462665a8185420fe1c078762826a1ba2 Mon Sep 17 00:00:00 2001 From: Isadora White Date: Wed, 7 May 2025 16:01:25 -0700 Subject: [PATCH 032/101] update 2 item tasks to require collaboration further --- .../require_collab_test_2_items/2_agent.json | 149 --------- .../require_collab_test_2_items/3_agent.json | 159 ---------- .../4_agent_long_timeout.json | 212 ++----------- .../5_agent_long_timeout.json | 289 +++++------------- 4 files changed, 90 insertions(+), 719 deletions(-) diff --git a/tasks/cooking_tasks/require_collab_test_2_items/2_agent.json b/tasks/cooking_tasks/require_collab_test_2_items/2_agent.json index 9703592..39c740e 100644 --- a/tasks/cooking_tasks/require_collab_test_2_items/2_agent.json +++ b/tasks/cooking_tasks/require_collab_test_2_items/2_agent.json @@ -149,120 +149,6 @@ } } }, - "multiagent_cooking_2_1_baked_potato_1_rabbit_stew": { - "conversation": "Let's work together to make baked_potato, rabbit_stew.", - "agent_count": 2, - "target": { - "baked_potato": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 rabbit_stew. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 rabbit_stew. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" - }, - "initial_inventory": { - "0": { - "coal": 5 - }, - "1": { - "coal": 5, - "bowl": 1 - } - } - }, - "multiagent_cooking_2_1_bread_1_rabbit_stew": { - "conversation": "Let's work together to make rabbit_stew, bread.", - "agent_count": 2, - "target": { - "rabbit_stew": 1, - "bread": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" - }, - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": {} - } - }, - "multiagent_cooking_2_1_baked_potato_1_bread": { - "conversation": "Let's work together to make bread, baked_potato.", - "agent_count": 2, - "target": { - "bread": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 baked_potato. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", - "1": "Collaborate with agents around you to make 1 bread, 1 baked_potato. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']" - }, - "initial_inventory": { - "0": { - "coal": 5 - }, - "1": { - "coal": 5 - } - } - }, "multiagent_cooking_2_1_baked_potato_1_cake": { "conversation": "Let's work together to make baked_potato, cake.", "agent_count": 2, @@ -341,40 +227,5 @@ "coal": 5 } } - }, - "multiagent_cooking_2_1_bread_1_cooked_beef": { - "conversation": "Let's work together to make bread, cooked_beef.", - "agent_count": 2, - "target": { - "bread": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", - "1": "Collaborate with agents around you to make 1 bread, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" - }, - "initial_inventory": { - "0": { - "coal": 5 - }, - "1": { - "coal": 5 - } - } } } \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_test_2_items/3_agent.json b/tasks/cooking_tasks/require_collab_test_2_items/3_agent.json index 7231599..861248c 100644 --- a/tasks/cooking_tasks/require_collab_test_2_items/3_agent.json +++ b/tasks/cooking_tasks/require_collab_test_2_items/3_agent.json @@ -162,127 +162,6 @@ } } }, - "multiagent_cooking_2_1_baked_potato_1_rabbit_stew": { - "conversation": "Let's work together to make baked_potato, rabbit_stew.", - "agent_count": 3, - "target": { - "baked_potato": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 rabbit_stew. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 rabbit_stew. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" - }, - "initial_inventory": { - "0": { - "coal": 3 - }, - "1": { - "coal": 3, - "bowl": 1 - }, - "2": { - "coal": 3 - } - } - }, - "multiagent_cooking_2_1_bread_1_rabbit_stew": { - "conversation": "Let's work together to make rabbit_stew, bread.", - "agent_count": 3, - "target": { - "rabbit_stew": 1, - "bread": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" - }, - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": {}, - "2": {} - } - }, - "multiagent_cooking_2_1_baked_potato_1_bread": { - "conversation": "Let's work together to make bread, baked_potato.", - "agent_count": 3, - "target": { - "bread": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 baked_potato. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", - "1": "Collaborate with agents around you to make 1 bread, 1 baked_potato. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']" - }, - "initial_inventory": { - "0": { - "coal": 3 - }, - "1": { - "coal": 3 - }, - "2": { - "coal": 3 - } - } - }, "multiagent_cooking_2_1_baked_potato_1_cake": { "conversation": "Let's work together to make baked_potato, cake.", "agent_count": 3, @@ -369,43 +248,5 @@ "coal": 3 } } - }, - "multiagent_cooking_2_1_bread_1_cooked_beef": { - "conversation": "Let's work together to make bread, cooked_beef.", - "agent_count": 3, - "target": { - "bread": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", - "1": "Collaborate with agents around you to make 1 bread, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" - }, - "initial_inventory": { - "0": { - "coal": 3 - }, - "1": { - "coal": 3 - }, - "2": { - "coal": 3 - } - } } } \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_test_2_items/4_agent_long_timeout.json b/tasks/cooking_tasks/require_collab_test_2_items/4_agent_long_timeout.json index f48ff56..97fa85a 100644 --- a/tasks/cooking_tasks/require_collab_test_2_items/4_agent_long_timeout.json +++ b/tasks/cooking_tasks/require_collab_test_2_items/4_agent_long_timeout.json @@ -25,17 +25,17 @@ }, "initial_inventory": { "0": { - "gold_ingot": 3 + "gold_ingot": 2 }, "1": { - "gold_ingot": 3, + "gold_ingot": 2, "apple": 1 }, "2": { - "gold_ingot": 3 + "gold_ingot": 2 }, "3": { - "gold_ingot": 3 + "gold_ingot": 2 } } }, @@ -71,18 +71,18 @@ }, "initial_inventory": { "0": { - "gold_ingot": 3 + "gold_ingot": 2 }, "1": { - "gold_ingot": 3, + "gold_ingot": 2, "apple": 1 }, "2": { - "gold_ingot": 3, + "gold_ingot": 2, "bowl": 1 }, "3": { - "gold_ingot": 3 + "gold_ingot": 2 } } }, @@ -118,14 +118,13 @@ "milk_bucket": 1 }, "1": { - "milk_bucket": 1, - "egg": 1 + "milk_bucket": 1 }, "2": { "milk_bucket": 1 }, "3": { - "milk_bucket": 1 + "egg": 1 } } }, @@ -158,148 +157,20 @@ "initial_inventory": { "0": { "coal": 3, - "gold_ingot": 3 + "gold_ingot": 2 }, "1": { "coal": 3, - "gold_ingot": 3 + "gold_ingot": 2 }, "2": { "coal": 3, - "gold_ingot": 3, + "gold_ingot": 2, "apple": 1 }, "3": { "coal": 3, - "gold_ingot": 3 - } - } - }, - "multiagent_cooking_2_1_baked_potato_1_rabbit_stew": { - "conversation": "Let's work together to make baked_potato, rabbit_stew.", - "agent_count": 4, - "target": { - "baked_potato": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 rabbit_stew. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 rabbit_stew. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" - }, - "initial_inventory": { - "0": { - "coal": 3 - }, - "1": { - "coal": 3, - "bowl": 1 - }, - "2": { - "coal": 3 - }, - "3": { - "coal": 3 - } - } - }, - "multiagent_cooking_2_1_bread_1_rabbit_stew": { - "conversation": "Let's work together to make rabbit_stew, bread.", - "agent_count": 4, - "target": { - "rabbit_stew": 1, - "bread": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" - }, - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": {}, - "2": {}, - "3": {} - } - }, - "multiagent_cooking_2_1_baked_potato_1_bread": { - "conversation": "Let's work together to make bread, baked_potato.", - "agent_count": 4, - "target": { - "bread": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 baked_potato. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", - "1": "Collaborate with agents around you to make 1 bread, 1 baked_potato. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']" - }, - "initial_inventory": { - "0": { - "coal": 3 - }, - "1": { - "coal": 3 - }, - "2": { - "coal": 3 - }, - "3": { - "coal": 3 + "gold_ingot": 2 } } }, @@ -343,12 +214,12 @@ }, "2": { "coal": 3, - "milk_bucket": 1, - "egg": 1 + "milk_bucket": 1 + }, "3": { "coal": 3, - "milk_bucket": 1 + "egg": 1 } } }, @@ -380,61 +251,20 @@ }, "initial_inventory": { "0": { - "gold_ingot": 3, + "gold_ingot": 2, "coal": 3 }, "1": { - "gold_ingot": 3, + "gold_ingot": 2, "apple": 1, "coal": 3 }, "2": { - "gold_ingot": 3, - "coal": 3 - }, - "3": { - "gold_ingot": 3, - "coal": 3 - } - } - }, - "multiagent_cooking_2_1_bread_1_cooked_beef": { - "conversation": "Let's work together to make bread, cooked_beef.", - "agent_count": 4, - "target": { - "bread": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", - "1": "Collaborate with agents around you to make 1 bread, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" - }, - "initial_inventory": { - "0": { - "coal": 3 - }, - "1": { - "coal": 3 - }, - "2": { + "gold_ingot": 2, "coal": 3 }, "3": { + "gold_ingot": 2, "coal": 3 } } diff --git a/tasks/cooking_tasks/require_collab_test_2_items/5_agent_long_timeout.json b/tasks/cooking_tasks/require_collab_test_2_items/5_agent_long_timeout.json index f48ff56..ffe5341 100644 --- a/tasks/cooking_tasks/require_collab_test_2_items/5_agent_long_timeout.json +++ b/tasks/cooking_tasks/require_collab_test_2_items/5_agent_long_timeout.json @@ -1,13 +1,13 @@ { "multiagent_cooking_2_1_bread_1_golden_apple": { "conversation": "Let's work together to make golden_apple, bread.", - "agent_count": 4, + "agent_count": 5, "target": { "golden_apple": 1, "bread": 1 }, "type": "cooking", - "timeout": 1500, + "timeout": 500, "recipes": { "golden_apple": [ "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", @@ -25,29 +25,31 @@ }, "initial_inventory": { "0": { - "gold_ingot": 3 + "gold_ingot": 2 }, "1": { - "gold_ingot": 3, - "apple": 1 + "gold_ingot": 2 }, "2": { - "gold_ingot": 3 + "gold_ingot": 2 }, "3": { - "gold_ingot": 3 + "gold_ingot": 2 + }, + "4": { + "apple": 1 } } }, "multiagent_cooking_2_1_golden_apple_1_rabbit_stew": { "conversation": "Let's work together to make golden_apple, rabbit_stew.", - "agent_count": 4, + "agent_count": 5, "target": { "golden_apple": 1, "rabbit_stew": 1 }, "type": "cooking", - "timeout": 1500, + "timeout": 500, "recipes": { "golden_apple": [ "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", @@ -71,30 +73,33 @@ }, "initial_inventory": { "0": { - "gold_ingot": 3 + "gold_ingot": 2 }, "1": { - "gold_ingot": 3, + "gold_ingot": 2, "apple": 1 }, "2": { - "gold_ingot": 3, + "gold_ingot": 2, "bowl": 1 }, "3": { - "gold_ingot": 3 + "gold_ingot": 2 + }, + "4": { + "apple": 1 } } }, "multiagent_cooking_2_1_bread_1_cake": { "conversation": "Let's work together to make cake, bread.", - "agent_count": 4, + "agent_count": 5, "target": { "cake": 1, "bread": 1 }, "type": "cooking", - "timeout": 1500, + "timeout": 500, "recipes": { "cake": [ "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", @@ -125,19 +130,22 @@ "milk_bucket": 1 }, "3": { - "milk_bucket": 1 + "egg": 1 + }, + "4": { + "egg": 1 } } }, "multiagent_cooking_2_1_baked_potato_1_golden_apple": { "conversation": "Let's work together to make baked_potato, golden_apple.", - "agent_count": 4, + "agent_count": 5, "target": { "baked_potato": 1, "golden_apple": 1 }, "type": "cooking", - "timeout": 1500, + "timeout": 500, "recipes": { "baked_potato": [ "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", @@ -157,161 +165,36 @@ }, "initial_inventory": { "0": { - "coal": 3, - "gold_ingot": 3 + "coal": 2, + "gold_ingot": 2 }, "1": { - "coal": 3, - "gold_ingot": 3 + "coal": 2, + "gold_ingot": 2 }, "2": { - "coal": 3, - "gold_ingot": 3, + "coal": 2, + "gold_ingot": 2 + }, + "3": { + "coal": 2, + "gold_ingot": 2 + }, + "4": { + "coal": 2, "apple": 1 - }, - "3": { - "coal": 3, - "gold_ingot": 3 - } - } - }, - "multiagent_cooking_2_1_baked_potato_1_rabbit_stew": { - "conversation": "Let's work together to make baked_potato, rabbit_stew.", - "agent_count": 4, - "target": { - "baked_potato": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 rabbit_stew. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 rabbit_stew. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" - }, - "initial_inventory": { - "0": { - "coal": 3 - }, - "1": { - "coal": 3, - "bowl": 1 - }, - "2": { - "coal": 3 - }, - "3": { - "coal": 3 - } - } - }, - "multiagent_cooking_2_1_bread_1_rabbit_stew": { - "conversation": "Let's work together to make rabbit_stew, bread.", - "agent_count": 4, - "target": { - "rabbit_stew": 1, - "bread": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" - }, - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": {}, - "2": {}, - "3": {} - } - }, - "multiagent_cooking_2_1_baked_potato_1_bread": { - "conversation": "Let's work together to make bread, baked_potato.", - "agent_count": 4, - "target": { - "bread": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 baked_potato. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", - "1": "Collaborate with agents around you to make 1 bread, 1 baked_potato. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']" - }, - "initial_inventory": { - "0": { - "coal": 3 - }, - "1": { - "coal": 3 - }, - "2": { - "coal": 3 - }, - "3": { - "coal": 3 } } }, "multiagent_cooking_2_1_baked_potato_1_cake": { "conversation": "Let's work together to make baked_potato, cake.", - "agent_count": 4, + "agent_count": 5, "target": { "baked_potato": 1, "cake": 1 }, "type": "cooking", - "timeout": 1500, + "timeout": 500, "recipes": { "baked_potato": [ "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", @@ -334,33 +217,37 @@ }, "initial_inventory": { "0": { - "coal": 3, + "coal": 2, "milk_bucket": 1 }, "1": { - "coal": 3, + "coal": 2, "milk_bucket": 1 }, "2": { - "coal": 3, - "milk_bucket": 1, - "egg": 1 + "coal": 2, + "milk_bucket": 1 + }, "3": { - "coal": 3, - "milk_bucket": 1 + "coal": 2, + "egg": 1 + }, + "4": { + "coal": 2, + "egg": 1 } } }, "multiagent_cooking_2_1_cooked_beef_1_golden_apple": { "conversation": "Let's work together to make golden_apple, cooked_beef.", - "agent_count": 4, + "agent_count": 5, "target": { "golden_apple": 1, "cooked_beef": 1 }, "type": "cooking", - "timeout": 1500, + "timeout": 500, "recipes": { "golden_apple": [ "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", @@ -380,62 +267,24 @@ }, "initial_inventory": { "0": { - "gold_ingot": 3, - "coal": 3 + "gold_ingot": 2, + "coal": 2 }, "1": { - "gold_ingot": 3, + "gold_ingot": 2, + "coal": 2 + }, + "2": { + "gold_ingot": 2, + "coal": 2 + }, + "3": { + "gold_ingot": 2, + "coal": 2 + }, + "4": { "apple": 1, - "coal": 3 - }, - "2": { - "gold_ingot": 3, - "coal": 3 - }, - "3": { - "gold_ingot": 3, - "coal": 3 - } - } - }, - "multiagent_cooking_2_1_bread_1_cooked_beef": { - "conversation": "Let's work together to make bread, cooked_beef.", - "agent_count": 4, - "target": { - "bread": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", - "1": "Collaborate with agents around you to make 1 bread, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" - }, - "initial_inventory": { - "0": { - "coal": 3 - }, - "1": { - "coal": 3 - }, - "2": { - "coal": 3 - }, - "3": { - "coal": 3 + "coal": 2 } } } From 8233a29dacf0cbaaf1ba5722c449c07916aea00c Mon Sep 17 00:00:00 2001 From: Isadora White Date: Wed, 7 May 2025 16:06:25 -0700 Subject: [PATCH 033/101] longer timeout and more task pruning --- .../5_agent_long_timeout.json | 12 +- .../require_collab_test_3_items/2_agent.json | 122 ------------------ 2 files changed, 6 insertions(+), 128 deletions(-) diff --git a/tasks/cooking_tasks/require_collab_test_2_items/5_agent_long_timeout.json b/tasks/cooking_tasks/require_collab_test_2_items/5_agent_long_timeout.json index ffe5341..b1657b8 100644 --- a/tasks/cooking_tasks/require_collab_test_2_items/5_agent_long_timeout.json +++ b/tasks/cooking_tasks/require_collab_test_2_items/5_agent_long_timeout.json @@ -7,7 +7,7 @@ "bread": 1 }, "type": "cooking", - "timeout": 500, + "timeout": 1500, "recipes": { "golden_apple": [ "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", @@ -49,7 +49,7 @@ "rabbit_stew": 1 }, "type": "cooking", - "timeout": 500, + "timeout": 11500, "recipes": { "golden_apple": [ "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", @@ -99,7 +99,7 @@ "bread": 1 }, "type": "cooking", - "timeout": 500, + "timeout": 1500, "recipes": { "cake": [ "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", @@ -145,7 +145,7 @@ "golden_apple": 1 }, "type": "cooking", - "timeout": 500, + "timeout": 1500, "recipes": { "baked_potato": [ "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", @@ -194,7 +194,7 @@ "cake": 1 }, "type": "cooking", - "timeout": 500, + "timeout": 1500, "recipes": { "baked_potato": [ "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", @@ -247,7 +247,7 @@ "cooked_beef": 1 }, "type": "cooking", - "timeout": 500, + "timeout": 1500, "recipes": { "golden_apple": [ "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", diff --git a/tasks/cooking_tasks/require_collab_test_3_items/2_agent.json b/tasks/cooking_tasks/require_collab_test_3_items/2_agent.json index 249969c..e68f3fa 100644 --- a/tasks/cooking_tasks/require_collab_test_3_items/2_agent.json +++ b/tasks/cooking_tasks/require_collab_test_3_items/2_agent.json @@ -266,92 +266,6 @@ } } }, - "multiagent_cooking_3_1_baked_potato_1_bread_1_cooked_beef": { - "conversation": "Let's work together to make bread, baked_potato, cooked_beef.", - "agent_count": 2, - "target": { - "bread": 1, - "baked_potato": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", - "1": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", - "2": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" - }, - "initial_inventory": { - "0": { - "coal": 9 - }, - "1": { - "coal": 9 - } - } - }, - "multiagent_cooking_3_1_baked_potato_1_rabbit_stew": { - "conversation": "Let's work together to make rabbit_stew, baked_potato.", - "agent_count": 2, - "target": { - "rabbit_stew": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", - "2": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']" - }, - "initial_inventory": { - "0": { - "bowl": 1, - "coal": 5 - }, - "1": { - "coal": 5 - } - } - }, "multiagent_cooking_3_1_cake_1_cooked_beef_1_golden_apple": { "conversation": "Let's work together to make cooked_beef, cake, golden_apple.", "agent_count": 2, @@ -401,41 +315,5 @@ "gold_ingot": 5 } } - }, - "multiagent_cooking_3_1_bread_1_cooked_beef": { - "conversation": "Let's work together to make cooked_beef, bread.", - "agent_count": 2, - "target": { - "cooked_beef": 1, - "bread": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 bread. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 bread. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", - "2": "Collaborate with agents around you to make 1 cooked_beef, 1 bread. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" - }, - "initial_inventory": { - "0": { - "coal": 5 - }, - "1": { - "coal": 5 - } - } } } \ No newline at end of file From 88b974f332bf2992a99119ed1b927d1085ce514a Mon Sep 17 00:00:00 2001 From: Isadora White Date: Wed, 7 May 2025 17:15:50 -0700 Subject: [PATCH 034/101] one agent tasks --- .../1_agent_partial.json | 206 ++++++ tasks/crafting_tasks/test_tasks/1_agent.json | 601 ++++++++++++++++++ 2 files changed, 807 insertions(+) create mode 100644 tasks/cooking_tasks/require_collab_test_2_items/1_agent_partial.json create mode 100644 tasks/crafting_tasks/test_tasks/1_agent.json diff --git a/tasks/cooking_tasks/require_collab_test_2_items/1_agent_partial.json b/tasks/cooking_tasks/require_collab_test_2_items/1_agent_partial.json new file mode 100644 index 0000000..aa7e9c1 --- /dev/null +++ b/tasks/cooking_tasks/require_collab_test_2_items/1_agent_partial.json @@ -0,0 +1,206 @@ +{ + "multiagent_cooking_2_1_bread_1_golden_apple": { + "conversation": "Let's work together to make golden_apple, bread.", + "agent_count": 1, + "target": { + "golden_apple": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 bread. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 bread. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 5 + } + } + }, + "multiagent_cooking_2_1_golden_apple_1_rabbit_stew": { + "conversation": "Let's work together to make golden_apple, rabbit_stew.", + "agent_count": 1, + "target": { + "golden_apple": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 5, + "bowl": 1 + } + } + }, + "multiagent_cooking_2_1_bread_1_cake": { + "conversation": "Let's work together to make cake, bread.", + "agent_count": 1, + "target": { + "cake": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "1": "Collaborate with agents around you to make 1 cake, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" + }, + "initial_inventory": { + "0": { + "milk_bucket": 2 + } + } + }, + "multiagent_cooking_2_1_baked_potato_1_golden_apple": { + "conversation": "Let's work together to make baked_potato, golden_apple.", + "agent_count": 1, + "target": { + "baked_potato": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" + }, + "initial_inventory": { + "0": { + "coal": 5, + "gold_ingot": 5, + "apple": 1 + } + } + }, + "multiagent_cooking_2_1_baked_potato_1_cake": { + "conversation": "Let's work together to make baked_potato, cake.", + "agent_count": 2, + "target": { + "baked_potato": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" + }, + "initial_inventory": { + "0": { + "coal": 5, + "milk_bucket": 2, + "egg": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_beef_1_golden_apple": { + "conversation": "Let's work together to make golden_apple, cooked_beef.", + "agent_count": 2, + "target": { + "golden_apple": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 5, + "coal": 5 + } + } + } +} \ No newline at end of file diff --git a/tasks/crafting_tasks/test_tasks/1_agent.json b/tasks/crafting_tasks/test_tasks/1_agent.json new file mode 100644 index 0000000..d65ed02 --- /dev/null +++ b/tasks/crafting_tasks/test_tasks/1_agent.json @@ -0,0 +1,601 @@ +{ + "multiagent_crafting_pink_wool_full_plan__depth_0": { + "goal": "Collaborate with other agents to craft an pink_wool", + "conversation": "Let's work together to craft an pink_wool.", + "initial_inventory": { + "0": { + "pink_dye": 1 + } + }, + "agent_count": 2, + "target": "pink_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [], + "requires_ctable": false + }, + "multiagent_crafting_lime_wool_partial_plan__depth_0": { + "goal": "Collaborate with other agents to craft an lime_wool", + "conversation": "Let's work together to craft an lime_wool.", + "initial_inventory": { + "0": { + "lime_dye": 1 + } + }, + "agent_count": 2, + "target": "lime_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 300, + "blocked_actions": { + "0": [ + ], + "1": ["!getCraftingPlan"] + }, + "missing_items": [ + ], + "requires_ctable": false + }, + "multiagent_crafting_purple_banner_full_plan_requires_ctable__depth_0": { + "goal": "Collaborate with other agents to craft an purple_banner", + "conversation": "Let's work together to craft an purple_banner.", + "initial_inventory": { + "0": { + "purple_wool": 4, + "stick": 1 + } + }, + "agent_count": 2, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + }, + "multiagent_crafting_soul_campfire_partial_plan_requires_ctable__depth_0": { + "goal": "Collaborate with other agents to craft an soul_campfire", + "conversation": "Let's work together to craft an soul_campfire.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "soul_sand": 1, + "dark_oak_log": 2 + } + }, + "agent_count": 2, + "target": "soul_campfire", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + }, + "multiagent_crafting_bookshelf_full_plan_requires_ctable__depth_0": { + "goal": "Collaborate with other agents to craft a bookshelf", + "conversation": "Let's work together to craft a bookshelf.", + "initial_inventory": { + "0": { + "oak_planks": 4, + "book": 2 + } + }, + "agent_count": 2, + "target": "bookshelf", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + }, + "multiagent_crafting_compass_partial_plan_requires_ctable__depth_0": { + "goal": "Collaborate with other agents to craft a compass", + "conversation": "Let's work together to craft a compass.", + "initial_inventory": { + "0": { + "iron_ingot": 2 + } + }, + "agent_count": 2, + "target": "compass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + }, + "multiagent_crafting_fishing_rod_full_plan_requires_ctable__depth_1": { + "goal": "Collaborate with other agents to craft a fishing_rod", + "conversation": "Let's work together to craft a fishing_rod.", + "initial_inventory": { + "0": { + "string": 1, + "oak_planks": 2 + } + }, + "agent_count": 2, + "target": "fishing_rod", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + ], + "requires_ctable": true + }, + "multiagent_crafting_cake_partial_plan_requires_ctable__depth_0": { + "goal": "Collaborate with other agents to craft a cake", + "conversation": "Let's work together to craft a cake.", + "initial_inventory": { + "0": { + "wheat": 2, + "sugar": 1, + "egg": 1 + } + }, + "agent_count": 2, + "target": "cake", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + }, + "multiagent_crafting_golden_carrot_full_plan_requires_ctable__depth_0": { + "goal": "Collaborate with other agents to craft a golden_carrot", + "conversation": "Let's work together to craft a golden_carrot.", + "initial_inventory": { + "0": { + "gold_nugget": 5, + "carrot": 1 + } + }, + "agent_count": 2, + "target": "golden_carrot", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + }, + "multiagent_crafting_map_partial_plan_requires_ctable__depth_0": { + "goal": "Collaborate with other agents to craft a map", + "conversation": "Let's work together to craft a map.", + "initial_inventory": { + "0": { + "paper": 5 + } + }, + "agent_count": 2, + "target": "map", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + }, + "multiagent_crafting_blue_wool_full_plan__depth_0": { + "goal": "Collaborate with other agents to craft blue_wool", + "conversation": "Let's work together to craft blue_wool.", + "initial_inventory": { + "0": { + "blue_dye": 1 + } + }, + "agent_count": 2, + "target": "blue_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [], + "requires_ctable": false + }, + "multiagent_crafting_lime_wool_partial_plan__depth_2": { + "goal": "Collaborate with other agents to craft lime_wool", + "conversation": "Let's work together to craft lime_wool.", + "initial_inventory": { + "0": { + "green_dye": 1 + } + }, + "agent_count": 2, + "target": "lime_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + ], + "requires_ctable": false + }, + "multiagent_crafting_magenta_wool_full_plan__depth_2": { + "goal": "Collaborate with other agents to craft magenta_wool", + "conversation": "Let's work together to craft magenta_wool.", + "initial_inventory": { + "0": { + "rose_red": 1, + "lapis_lazuli": 1 + } + }, + "agent_count": 2, + "target": "magenta_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + ], + "requires_ctable": false + }, + "multiagent_crafting_chest_full_plan_requires_ctable__depth_1": { + "goal": "Collaborate with other agents to craft a chest", + "conversation": "Let's work together to craft a chest.", + "initial_inventory": { + "0": { + "oak_log": 1 + } + }, + "agent_count": 2, + "target": "chest", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 1, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + }, + "multiagent_crafting_barrel_partial_plan_requires_ctable__depth_1": { + "goal": "Collaborate with other agents to craft a barrel", + "conversation": "Let's work together to craft a barrel.", + "initial_inventory": { + "0": { + "spruce_planks": 3, + "crafting_table": 1 + } + }, + "agent_count": 2, + "target": "barrel", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + ], + "requires_ctable": true + }, + "multiagent_crafting_lectern_full_plan_requires_ctable__depth_2": { + "goal": "Collaborate with other agents to craft a lectern", + "conversation": "Let's work together to craft a lectern.", + "initial_inventory": { + "0": { + "birch_slab": 5, + "crafting_table": 1 + } + }, + "agent_count": 2, + "target": "lectern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + ], + "requires_ctable": true + }, + "multiagent_crafting_clock_partial_plan_requires_ctable__depth_0": { + "goal": "Collaborate with other agents to craft a clock", + "conversation": "Let's work together to craft a clock.", + "initial_inventory": { + "0": { + "gold_ingot": 2 + } + }, + "agent_count": 2, + "target": "clock", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + }, + "multiagent_crafting_firework_rocket_partial_plan__depth_0": { + "goal": "Collaborate with other agents to craft firework_rocket", + "conversation": "Let's work together to craft firework_rocket.", + "initial_inventory": { + "0": { + "paper": 1 + } + }, + "agent_count": 2, + "target": "firework_rocket", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [], + "requires_ctable": false + }, + "multiagent_crafting_enchanting_table_partial_plan_requires_ctable__depth_0": { + "goal": "Collaborate with other agents to craft an enchanting_table", + "conversation": "Let's work together to craft an enchanting_table.", + "initial_inventory": { + "0": { + "diamond": 2, + "obsidian": 2, + "crafting_table": 1 + } + }, + "agent_count": 2, + "target": "enchanting_table", + "number_of_target": 1, + "type": "techtree", + "max_depth": 0, + "depth": 0, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + }, + "multiagent_crafting_jukebox_full_plan_requires_ctable__depth_1": { + "goal": "Collaborate with other agents to craft a jukebox", + "conversation": "Let's work together to craft a jukebox.", + "initial_inventory": { + "0": { + "oak_log": 2, + "crafting_table": 1 + } + }, + "agent_count": 2, + "target": "jukebox", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 1, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + }, + "multiagent_crafting_light_gray_wool_full_plan__depth_1": { + "goal": "Collaborate with other agents to craft light_gray_wool", + "conversation": "Let's work together to craft light_gray_wool.", + "initial_inventory": { + "0": { + "black_dye": 1 + } + }, + "agent_count": 2, + "target": "light_gray_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + ], + "requires_ctable": false + }, + "multiagent_crafting_blast_furnace_full_plan_requires_ctable__depth_1": { + "goal": "Collaborate with other agents to craft a blast_furnace", + "conversation": "Let's work together to craft a blast_furnace.", + "initial_inventory": { + "0": { + "cobblestone": 8, + "crafting_table": 1 + } + }, + "agent_count": 2, + "target": "blast_furnace", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + ], + "requires_ctable": true + }, + "multiagent_crafting_activator_rail_full_plan_requires_ctable__depth_2": { + "goal": "Collaborate with other agents to craft activator_rail", + "conversation": "Let's work together to craft activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 3, + "oak_planks": 6 + } + }, + "agent_count": 2, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + ], + "requires_ctable": true + }, + "multiagent_crafting_campfire_partial_plan_requires_ctable__depth_2": { + "goal": "Collaborate with other agents to craft campfire", + "conversation": "Let's work together to craft campfire.", + "initial_inventory": { + "0": { + "oak_log": 8 + } + }, + "agent_count": 2, + "target": "campfire", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + ], + "requires_ctable": true + }, + "multiagent_crafting_crossbow_full_plan_requires_ctable__depth_2": { + "goal": "Collaborate with other agents to craft a crossbow", + "conversation": "Let's work together to craft a crossbow.", + "initial_inventory": { + "0": { + "oak_planks": 8, + "iron_ingot": 2 + } + }, + "agent_count": 2, + "target": "crossbow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + ], + "requires_ctable": true + } +} \ No newline at end of file From c2ce6aed0dc6ec4812312655918022d82d44e0f0 Mon Sep 17 00:00:00 2001 From: Isadora White Date: Thu, 8 May 2025 12:39:32 -0700 Subject: [PATCH 035/101] new human ai tasks for new cooking tasks --- .../human_ai_tasks/1_agent_1_human.json | 441 ----------------- .../human_ai_tasks/1_human_1_agent.json | 255 ++++++++++ .../human_ai_tasks/1_human_3_agent.json | 452 +++++++++++++++++ .../human_ai_tasks/2_agent_1_human.json | 435 ---------------- .../human_ai_tasks/3_agent_1_human.json | 465 ------------------ .../human_ai_tasks/4_agent_1_human.json | 435 ---------------- .../human_tasks_2_items/2_humans.json | 231 +++++++++ .../human_tasks_2_items/3_humans.json | 252 ++++++++++ tasks/crafting_tasks/test_tasks/1_agent.json | 4 +- tasks/human_evaluation.js | 7 +- 10 files changed, 1196 insertions(+), 1781 deletions(-) delete mode 100644 tasks/cooking_tasks/human_ai_tasks/1_agent_1_human.json create mode 100644 tasks/cooking_tasks/human_ai_tasks/1_human_1_agent.json create mode 100644 tasks/cooking_tasks/human_ai_tasks/1_human_3_agent.json delete mode 100644 tasks/cooking_tasks/human_ai_tasks/2_agent_1_human.json delete mode 100644 tasks/cooking_tasks/human_ai_tasks/3_agent_1_human.json delete mode 100644 tasks/cooking_tasks/human_ai_tasks/4_agent_1_human.json create mode 100644 tasks/cooking_tasks/human_tasks_2_items/2_humans.json create mode 100644 tasks/cooking_tasks/human_tasks_2_items/3_humans.json diff --git a/tasks/cooking_tasks/human_ai_tasks/1_agent_1_human.json b/tasks/cooking_tasks/human_ai_tasks/1_agent_1_human.json deleted file mode 100644 index d183e18..0000000 --- a/tasks/cooking_tasks/human_ai_tasks/1_agent_1_human.json +++ /dev/null @@ -1,441 +0,0 @@ -{ - "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_rabbit_stew_1_human_1_agent": { - "conversation": "Let's work together to make cooked_beef, baked_potato, cake, rabbit_stew.", - "agent_count": 1, - "human_count": 1, - "target": { - "cooked_beef": 1, - "baked_potato": 1, - "cake": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - }, - "usernames": [ - "izzycw" - ] - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_golden_apple_1_rabbit_stew_1_human_1_agent": { - "conversation": "Let's work together to make bread, cake, golden_apple, baked_potato, rabbit_stew.", - "agent_count": 1, - "human_count": 1, - "target": { - "bread": 1, - "cake": 1, - "golden_apple": 1, - "baked_potato": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_golden_apple_1_human_1_agent": { - "conversation": "Let's work together to make baked_potato, bread, cooked_beef, golden_apple.", - "agent_count": 1, - "human_count": 1, - "target": { - "baked_potato": 1, - "bread": 1, - "cooked_beef": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_cooked_beef_1_golden_apple_1_human_1_agent": { - "conversation": "Let's work together to make cake, bread, golden_apple, baked_potato, cooked_beef.", - "agent_count": 1, - "human_count": 1, - "target": { - "cake": 1, - "bread": 1, - "golden_apple": 1, - "baked_potato": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "1": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." - } - }, - "multiagent_cooking_5_1_baked_potato_1_cake_1_golden_apple_1_rabbit_stew_1_human_1_agent": { - "conversation": "Let's work together to make rabbit_stew, golden_apple, cake, baked_potato.", - "agent_count": 1, - "human_count": 1, - "target": { - "rabbit_stew": 1, - "golden_apple": 1, - "cake": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." - } - }, - "multiagent_cooking_5_1_bread_1_cooked_beef_1_golden_apple_1_rabbit_stew_1_human_1_agent": { - "conversation": "Let's work together to make bread, rabbit_stew, golden_apple, cooked_beef.", - "agent_count": 1, - "human_count": 1, - "target": { - "bread": 1, - "rabbit_stew": 1, - "golden_apple": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "1": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." - } - }, - "multiagent_cooking_5_1_bread_1_cake_1_golden_apple_1_rabbit_stew_1_human_1_agent": { - "conversation": "Let's work together to make cake, rabbit_stew, golden_apple, bread.", - "agent_count": 1, - "human_count": 1, - "target": { - "cake": 1, - "rabbit_stew": 1, - "golden_apple": 1, - "bread": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "1": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread." - } - }, - "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_1_human_1_agent": { - "conversation": "Let's work together to make cooked_beef, golden_apple, cake, baked_potato, rabbit_stew.", - "agent_count": 1, - "human_count": 1, - "target": { - "cooked_beef": 1, - "golden_apple": 1, - "cake": 1, - "baked_potato": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - } - }, - "multiagent_cooking_5_1_bread_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_1_human_1_agent": { - "conversation": "Let's work together to make cooked_beef, golden_apple, rabbit_stew, bread, cake.", - "agent_count": 1, - "human_count": 1, - "target": { - "cooked_beef": 1, - "golden_apple": 1, - "rabbit_stew": 1, - "bread": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_rabbit_stew_1_human_1_agent": { - "conversation": "Let's work together to make bread, cooked_beef, rabbit_stew, baked_potato.", - "agent_count": 1, - "human_count": 1, - "target": { - "bread": 1, - "cooked_beef": 1, - "rabbit_stew": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "1": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." - }, - "usernames": [ - "" - ] - } -} \ No newline at end of file diff --git a/tasks/cooking_tasks/human_ai_tasks/1_human_1_agent.json b/tasks/cooking_tasks/human_ai_tasks/1_human_1_agent.json new file mode 100644 index 0000000..67eeeae --- /dev/null +++ b/tasks/cooking_tasks/human_ai_tasks/1_human_1_agent.json @@ -0,0 +1,255 @@ +{ + "multiagent_cooking_2_1_bread_1_golden_apple": { + "conversation": "Let's work together to make golden_apple, bread.", + "agent_count": 1, + "human_count": 1, + "target": { + "golden_apple": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 bread. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 bread. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 5 + }, + "1": { + "gold_ingot": 5, + "apple": 1 + } + }, + "usernames": [ + "izzycw" + ] + }, + "multiagent_cooking_2_1_golden_apple_1_rabbit_stew": { + "conversation": "Let's work together to make golden_apple, rabbit_stew.", + "agent_count": 1, + "human_count": 1, + "target": { + "golden_apple": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 5, + "bowl": 1 + }, + "1": { + "gold_ingot": 5, + "apple": 1 + } + }, + "usernames": [ + "izzycw" + ] + }, + "multiagent_cooking_2_1_bread_1_cake": { + "conversation": "Let's work together to make cake, bread.", + "agent_count": 1, + "human_count": 1, + "target": { + "cake": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "1": "Collaborate with agents around you to make 1 cake, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" + }, + "initial_inventory": { + "0": { + "milk_bucket": 2 + }, + "1": { + "milk_bucket": 2, + "egg": 1 + } + }, + "usernames": [ + "izzycw" + ] + }, + "multiagent_cooking_2_1_baked_potato_1_golden_apple": { + "conversation": "Let's work together to make baked_potato, golden_apple.", + "agent_count": 1, + "human_count": 1, + "target": { + "baked_potato": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" + }, + "initial_inventory": { + "0": { + "coal": 5, + "gold_ingot": 5, + "apple": 1 + }, + "1": { + "coal": 5, + "gold_ingot": 5 + } + }, + "usernames": [ + "izzycw" + ] + }, + "multiagent_cooking_2_1_baked_potato_1_cake": { + "conversation": "Let's work together to make baked_potato, cake.", + "agent_count": 1, + "human_count": 1, + "target": { + "baked_potato": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" + }, + "initial_inventory": { + "0": { + "coal": 5, + "milk_bucket": 2, + "egg": 1 + }, + "1": { + "coal": 5, + "milk_bucket": 2 + } + }, + "usernames": [ + "izzycw" + ] + }, + "multiagent_cooking_2_1_cooked_beef_1_golden_apple": { + "conversation": "Let's work together to make golden_apple, cooked_beef.", + "agent_count": 1, + "human_count": 1, + "target": { + "golden_apple": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 5, + "coal": 5 + }, + "1": { + "gold_ingot": 5, + "apple": 1, + "coal": 5 + } + }, + "usernames": [ + "izzycw" + ] + } +} \ No newline at end of file diff --git a/tasks/cooking_tasks/human_ai_tasks/1_human_3_agent.json b/tasks/cooking_tasks/human_ai_tasks/1_human_3_agent.json new file mode 100644 index 0000000..3a35fb1 --- /dev/null +++ b/tasks/cooking_tasks/human_ai_tasks/1_human_3_agent.json @@ -0,0 +1,452 @@ +{ + "multiagent_cooking_2_1_bread_1_golden_apple": { + "conversation": "Let's work together to make golden_apple, bread.", + "agent_count": 3, + "human_count": 1, + "target": { + "golden_apple": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 bread. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 bread. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 3 + }, + "1": { + "gold_ingot": 3, + "apple": 1 + }, + "2": { + "gold_ingot": 3 + }, + "3": { + "gold_ingot": 3 + } + } + }, + "multiagent_cooking_2_1_golden_apple_1_rabbit_stew": { + "conversation": "Let's work together to make golden_apple, rabbit_stew.", + "agent_count": 3, + "human_count": 1, + "target": { + "golden_apple": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 3 + }, + "1": { + "gold_ingot": 3, + "apple": 1 + }, + "2": { + "gold_ingot": 3, + "bowl": 1 + }, + "3": { + "gold_ingot": 3 + } + } + }, + "multiagent_cooking_2_1_bread_1_cake": { + "conversation": "Let's work together to make cake, bread.", + "agent_count": 3, + "human_count": 1, + "target": { + "cake": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "1": "Collaborate with agents around you to make 1 cake, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" + }, + "initial_inventory": { + "0": { + "milk_bucket": 1 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + }, + "2": { + "milk_bucket": 1 + }, + "3": { + "milk_bucket": 1 + } + } + }, + "multiagent_cooking_2_1_baked_potato_1_golden_apple": { + "conversation": "Let's work together to make baked_potato, golden_apple.", + "agent_count": 3, + ":human_count": 1, + "target": { + "baked_potato": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" + }, + "initial_inventory": { + "0": { + "coal": 3, + "gold_ingot": 3 + }, + "1": { + "coal": 3, + "gold_ingot": 3 + }, + "2": { + "coal": 3, + "gold_ingot": 3, + "apple": 1 + }, + "3": { + "coal": 3, + "gold_ingot": 3 + } + } + }, + "multiagent_cooking_2_1_baked_potato_1_rabbit_stew": { + "conversation": "Let's work together to make baked_potato, rabbit_stew.", + "agent_count": 3, + "human_count": 1, + "target": { + "baked_potato": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 rabbit_stew. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 rabbit_stew. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" + }, + "initial_inventory": { + "0": { + "coal": 3 + }, + "1": { + "coal": 3, + "bowl": 1 + }, + "2": { + "coal": 3 + }, + "3": { + "coal": 3 + } + } + }, + "multiagent_cooking_2_1_bread_1_rabbit_stew": { + "conversation": "Let's work together to make rabbit_stew, bread.", + "agent_count": 3, + "human_count": 1, + "target": { + "rabbit_stew": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": {}, + "2": {}, + "3": {} + } + }, + "multiagent_cooking_2_1_baked_potato_1_bread": { + "conversation": "Let's work together to make bread, baked_potato.", + "agent_count": 3, + "human_count": 1, + "target": { + "bread": 1, + "baked_potato": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 baked_potato. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", + "1": "Collaborate with agents around you to make 1 bread, 1 baked_potato. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']" + }, + "initial_inventory": { + "0": { + "coal": 3 + }, + "1": { + "coal": 3 + }, + "2": { + "coal": 3 + }, + "3": { + "coal": 3 + } + } + }, + "multiagent_cooking_2_1_baked_potato_1_cake": { + "conversation": "Let's work together to make baked_potato, cake.", + "agent_count": 3, + "human_count": 1, + "target": { + "baked_potato": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" + }, + "initial_inventory": { + "0": { + "coal": 3, + "milk_bucket": 1 + }, + "1": { + "coal": 3, + "milk_bucket": 1 + }, + "2": { + "coal": 3, + "milk_bucket": 1, + "egg": 1 + }, + "3": { + "coal": 3, + "milk_bucket": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_beef_1_golden_apple": { + "conversation": "Let's work together to make golden_apple, cooked_beef.", + "agent_count": 3, + "human_count": 1, + "target": { + "golden_apple": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 3, + "coal": 3 + }, + "1": { + "gold_ingot": 3, + "apple": 1, + "coal": 3 + }, + "2": { + "gold_ingot": 3, + "coal": 3 + }, + "3": { + "gold_ingot": 3, + "coal": 3 + } + } + }, + "multiagent_cooking_2_1_bread_1_cooked_beef": { + "conversation": "Let's work together to make bread, cooked_beef.", + "agent_count": 3, + "human_count": 1, + "target": { + "bread": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "1": "Collaborate with agents around you to make 1 bread, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" + }, + "initial_inventory": { + "0": { + "coal": 3 + }, + "1": { + "coal": 3 + }, + "2": { + "coal": 3 + }, + "3": { + "coal": 3 + } + } + } +} \ No newline at end of file diff --git a/tasks/cooking_tasks/human_ai_tasks/2_agent_1_human.json b/tasks/cooking_tasks/human_ai_tasks/2_agent_1_human.json deleted file mode 100644 index 68555f7..0000000 --- a/tasks/cooking_tasks/human_ai_tasks/2_agent_1_human.json +++ /dev/null @@ -1,435 +0,0 @@ -{ - "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_rabbit_stew_1_human_2_agents": { - "conversation": "Let's work together to make cooked_beef, baked_potato, cake, rabbit_stew.", - "agent_count": 2, - "human_count": 1, - "target": { - "cooked_beef": 1, - "baked_potato": 1, - "cake": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_golden_apple_1_rabbit_stew_1_human_2_agents": { - "conversation": "Let's work together to make bread, cake, golden_apple, baked_potato, rabbit_stew.", - "agent_count": 2, - "human_count": 1, - "target": { - "bread": 1, - "cake": 1, - "golden_apple": 1, - "baked_potato": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_golden_apple_1_human_2_agents": { - "conversation": "Let's work together to make baked_potato, bread, cooked_beef, golden_apple.", - "agent_count": 2, - "human_count": 1, - "target": { - "baked_potato": 1, - "bread": 1, - "cooked_beef": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_cooked_beef_1_golden_apple_1_human_2_agents": { - "conversation": "Let's work together to make cake, bread, golden_apple, baked_potato, cooked_beef.", - "agent_count": 2, - "human_count": 1, - "target": { - "cake": 1, - "bread": 1, - "golden_apple": 1, - "baked_potato": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "1": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." - } - }, - "multiagent_cooking_5_1_baked_potato_1_cake_1_golden_apple_1_rabbit_stew_1_human_2_agents": { - "conversation": "Let's work together to make rabbit_stew, golden_apple, cake, baked_potato.", - "agent_count": 2, - "human_count": 1, - "target": { - "rabbit_stew": 1, - "golden_apple": 1, - "cake": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." - } - }, - "multiagent_cooking_5_1_bread_1_cooked_beef_1_golden_apple_1_rabbit_stew_1_human_2_agents": { - "conversation": "Let's work together to make bread, rabbit_stew, golden_apple, cooked_beef.", - "agent_count": 2, - "human_count": 1, - "target": { - "bread": 1, - "rabbit_stew": 1, - "golden_apple": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "1": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." - } - }, - "multiagent_cooking_5_1_bread_1_cake_1_golden_apple_1_rabbit_stew_1_human_2_agents": { - "conversation": "Let's work together to make cake, rabbit_stew, golden_apple, bread.", - "agent_count": 2, - "human_count": 1, - "target": { - "cake": 1, - "rabbit_stew": 1, - "golden_apple": 1, - "bread": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "1": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread." - } - }, - "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_1_human_1_agent": { - "conversation": "Let's work together to make cooked_beef, golden_apple, cake, baked_potato, rabbit_stew.", - "agent_count": 1, - "human_count": 1, - "target": { - "cooked_beef": 1, - "golden_apple": 1, - "cake": 1, - "baked_potato": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - } - }, - "multiagent_cooking_5_1_bread_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_1_human_2_agents": { - "conversation": "Let's work together to make cooked_beef, golden_apple, rabbit_stew, bread, cake.", - "agent_count": 2, - "human_count": 1, - "target": { - "cooked_beef": 1, - "golden_apple": 1, - "rabbit_stew": 1, - "bread": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_rabbit_stew_1_human_2_agents": { - "conversation": "Let's work together to make bread, cooked_beef, rabbit_stew, baked_potato.", - "agent_count": 2, - "human_count": 1, - "target": { - "bread": 1, - "cooked_beef": 1, - "rabbit_stew": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "1": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." - } - } - } \ No newline at end of file diff --git a/tasks/cooking_tasks/human_ai_tasks/3_agent_1_human.json b/tasks/cooking_tasks/human_ai_tasks/3_agent_1_human.json deleted file mode 100644 index f136bc5..0000000 --- a/tasks/cooking_tasks/human_ai_tasks/3_agent_1_human.json +++ /dev/null @@ -1,465 +0,0 @@ -{ - "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_rabbit_stew_1_human_3_agent": { - "conversation": "Let's work together to make cooked_beef, baked_potato, cake, rabbit_stew.", - "agent_count": 3, - "human_count": 1, - "target": { - "cooked_beef": 1, - "baked_potato": 1, - "cake": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - }, - "usernames": [ - "izzycw" - ] - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_golden_apple_1_rabbit_stew_1_human_3_agent": { - "conversation": "Let's work together to make bread, cake, golden_apple, baked_potato, rabbit_stew.", - "agent_count": 3, - "human_count": 1, - "target": { - "bread": 1, - "cake": 1, - "golden_apple": 1, - "baked_potato": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - }, - "usernames": [ - "izzycw" - ] - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_golden_apple_1_human_3_agent": { - "conversation": "Let's work together to make baked_potato, bread, cooked_beef, golden_apple.", - "agent_count": 3, - "human_count": 1, - "target": { - "baked_potato": 1, - "bread": 1, - "cooked_beef": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - }, - "usernames": [ - "izzycw" - ] - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_cooked_beef_1_golden_apple_1_human_3_agent": { - "conversation": "Let's work together to make cake, bread, golden_apple, baked_potato, cooked_beef.", - "agent_count": 3, - "human_count": 1, - "target": { - "cake": 1, - "bread": 1, - "golden_apple": 1, - "baked_potato": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "1": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." - }, - "usernames": [ - "izzycw" - ] - }, - "multiagent_cooking_5_1_baked_potato_1_cake_1_golden_apple_1_rabbit_stew_1_human_3_agent": { - "conversation": "Let's work together to make rabbit_stew, golden_apple, cake, baked_potato.", - "agent_count": 3, - "human_count": 1, - "target": { - "rabbit_stew": 1, - "golden_apple": 1, - "cake": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." - }, - "usernames": [ - "izzycw" - ] - }, - "multiagent_cooking_5_1_bread_1_cooked_beef_1_golden_apple_1_rabbit_stew_1_human_3_agent": { - "conversation": "Let's work together to make bread, rabbit_stew, golden_apple, cooked_beef.", - "agent_count": 3, - "human_count": 1, - "target": { - "bread": 1, - "rabbit_stew": 1, - "golden_apple": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "1": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." - }, - "usernames": [ - "izzycw" - ] - }, - "multiagent_cooking_5_1_bread_1_cake_1_golden_apple_1_rabbit_stew_1_human_3_agent": { - "conversation": "Let's work together to make cake, rabbit_stew, golden_apple, bread.", - "agent_count": 3, - "human_count": 1, - "target": { - "cake": 1, - "rabbit_stew": 1, - "golden_apple": 1, - "bread": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "1": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread." - }, - "usernames": [ - "izzycw" - ] - }, - "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_1_human_3_agent": { - "conversation": "Let's work together to make cooked_beef, golden_apple, cake, baked_potato, rabbit_stew.", - "agent_count": 3, - "human_count": 1, - "target": { - "cooked_beef": 1, - "golden_apple": 1, - "cake": 1, - "baked_potato": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - }, - "usernames": [ - "izzycw" - ] - }, - "multiagent_cooking_5_1_bread_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_1_human_3_agent": { - "conversation": "Let's work together to make cooked_beef, golden_apple, rabbit_stew, bread, cake.", - "agent_count": 3, - "human_count": 1, - "target": { - "cooked_beef": 1, - "golden_apple": 1, - "rabbit_stew": 1, - "bread": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - }, - "usernames": [ - "izzycw" - ] - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_rabbit_stew_1_human_3_agent": { - "conversation": "Let's work together to make bread, cooked_beef, rabbit_stew, baked_potato.", - "agent_count": 3, - "human_count": 1, - "target": { - "bread": 1, - "cooked_beef": 1, - "rabbit_stew": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "1": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." - }, - "usernames": [ - "izzycw" - ] - } -} \ No newline at end of file diff --git a/tasks/cooking_tasks/human_ai_tasks/4_agent_1_human.json b/tasks/cooking_tasks/human_ai_tasks/4_agent_1_human.json deleted file mode 100644 index 9130951..0000000 --- a/tasks/cooking_tasks/human_ai_tasks/4_agent_1_human.json +++ /dev/null @@ -1,435 +0,0 @@ -{ - "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_rabbit_stew_1_human_4_agent": { - "conversation": "Let's work together to make cooked_beef, baked_potato, cake, rabbit_stew.", - "agent_count": 4, - "human_count": 1, - "target": { - "cooked_beef": 1, - "baked_potato": 1, - "cake": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_golden_apple_1_rabbit_stew_1_human_4_agent": { - "conversation": "Let's work together to make bread, cake, golden_apple, baked_potato, rabbit_stew.", - "agent_count": 4, - "human_count": 1, - "target": { - "bread": 1, - "cake": 1, - "golden_apple": 1, - "baked_potato": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_golden_apple_1_human_4_agent": { - "conversation": "Let's work together to make baked_potato, bread, cooked_beef, golden_apple.", - "agent_count": 4, - "human_count": 1, - "target": { - "baked_potato": 1, - "bread": 1, - "cooked_beef": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_cooked_beef_1_golden_apple_1_human_4_agent": { - "conversation": "Let's work together to make cake, bread, golden_apple, baked_potato, cooked_beef.", - "agent_count": 4, - "human_count": 1, - "target": { - "cake": 1, - "bread": 1, - "golden_apple": 1, - "baked_potato": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "1": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." - } - }, - "multiagent_cooking_5_1_baked_potato_1_cake_1_golden_apple_1_rabbit_stew_1_human_4_agent": { - "conversation": "Let's work together to make rabbit_stew, golden_apple, cake, baked_potato.", - "agent_count": 4, - "human_count": 1, - "target": { - "rabbit_stew": 1, - "golden_apple": 1, - "cake": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." - } - }, - "multiagent_cooking_5_1_bread_1_cooked_beef_1_golden_apple_1_rabbit_stew_1_human_4_agent": { - "conversation": "Let's work together to make bread, rabbit_stew, golden_apple, cooked_beef.", - "agent_count": 4, - "human_count": 1, - "target": { - "bread": 1, - "rabbit_stew": 1, - "golden_apple": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "1": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." - } - }, - "multiagent_cooking_5_1_bread_1_cake_1_golden_apple_1_rabbit_stew_1_human_4_agent": { - "conversation": "Let's work together to make cake, rabbit_stew, golden_apple, bread.", - "agent_count": 4, - "human_count": 1, - "target": { - "cake": 1, - "rabbit_stew": 1, - "golden_apple": 1, - "bread": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "1": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread." - } - }, - "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_1_human_4_agent": { - "conversation": "Let's work together to make cooked_beef, golden_apple, cake, baked_potato, rabbit_stew.", - "agent_count": 4, - "human_count": 1, - "target": { - "cooked_beef": 1, - "golden_apple": 1, - "cake": 1, - "baked_potato": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - } - }, - "multiagent_cooking_5_1_bread_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_1_human_4_agent": { - "conversation": "Let's work together to make cooked_beef, golden_apple, rabbit_stew, bread, cake.", - "agent_count": 4, - "human_count": 1, - "target": { - "cooked_beef": 1, - "golden_apple": 1, - "rabbit_stew": 1, - "bread": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_rabbit_stew_1_human_4_agent": { - "conversation": "Let's work together to make bread, cooked_beef, rabbit_stew, baked_potato.", - "agent_count": 4, - "human_count": 1, - "target": { - "bread": 1, - "cooked_beef": 1, - "rabbit_stew": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "1": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." - } - } - } \ No newline at end of file diff --git a/tasks/cooking_tasks/human_tasks_2_items/2_humans.json b/tasks/cooking_tasks/human_tasks_2_items/2_humans.json new file mode 100644 index 0000000..39c740e --- /dev/null +++ b/tasks/cooking_tasks/human_tasks_2_items/2_humans.json @@ -0,0 +1,231 @@ +{ + "multiagent_cooking_2_1_bread_1_golden_apple": { + "conversation": "Let's work together to make golden_apple, bread.", + "agent_count": 2, + "target": { + "golden_apple": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 bread. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 bread. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 5 + }, + "1": { + "gold_ingot": 5, + "apple": 1 + } + } + }, + "multiagent_cooking_2_1_golden_apple_1_rabbit_stew": { + "conversation": "Let's work together to make golden_apple, rabbit_stew.", + "agent_count": 2, + "target": { + "golden_apple": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 5, + "bowl": 1 + }, + "1": { + "gold_ingot": 5, + "apple": 1 + } + } + }, + "multiagent_cooking_2_1_bread_1_cake": { + "conversation": "Let's work together to make cake, bread.", + "agent_count": 2, + "target": { + "cake": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "1": "Collaborate with agents around you to make 1 cake, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" + }, + "initial_inventory": { + "0": { + "milk_bucket": 2 + }, + "1": { + "milk_bucket": 2, + "egg": 1 + } + } + }, + "multiagent_cooking_2_1_baked_potato_1_golden_apple": { + "conversation": "Let's work together to make baked_potato, golden_apple.", + "agent_count": 2, + "target": { + "baked_potato": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" + }, + "initial_inventory": { + "0": { + "coal": 5, + "gold_ingot": 5, + "apple": 1 + }, + "1": { + "coal": 5, + "gold_ingot": 5 + } + } + }, + "multiagent_cooking_2_1_baked_potato_1_cake": { + "conversation": "Let's work together to make baked_potato, cake.", + "agent_count": 2, + "target": { + "baked_potato": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" + }, + "initial_inventory": { + "0": { + "coal": 5, + "milk_bucket": 2, + "egg": 1 + }, + "1": { + "coal": 5, + "milk_bucket": 2 + } + } + }, + "multiagent_cooking_2_1_cooked_beef_1_golden_apple": { + "conversation": "Let's work together to make golden_apple, cooked_beef.", + "agent_count": 2, + "target": { + "golden_apple": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 5, + "coal": 5 + }, + "1": { + "gold_ingot": 5, + "apple": 1, + "coal": 5 + } + } + } +} \ No newline at end of file diff --git a/tasks/cooking_tasks/human_tasks_2_items/3_humans.json b/tasks/cooking_tasks/human_tasks_2_items/3_humans.json new file mode 100644 index 0000000..861248c --- /dev/null +++ b/tasks/cooking_tasks/human_tasks_2_items/3_humans.json @@ -0,0 +1,252 @@ +{ + "multiagent_cooking_2_1_bread_1_golden_apple": { + "conversation": "Let's work together to make golden_apple, bread.", + "agent_count": 3, + "target": { + "golden_apple": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 bread. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 bread. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 3 + }, + "1": { + "gold_ingot": 3, + "apple": 1 + }, + "2": { + "gold_ingot": 3 + } + } + }, + "multiagent_cooking_2_1_golden_apple_1_rabbit_stew": { + "conversation": "Let's work together to make golden_apple, rabbit_stew.", + "agent_count": 3, + "target": { + "golden_apple": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 3 + }, + "1": { + "gold_ingot": 3, + "apple": 1 + }, + "2": { + "gold_ingot": 3, + "bowl": 1 + } + } + }, + "multiagent_cooking_2_1_bread_1_cake": { + "conversation": "Let's work together to make cake, bread.", + "agent_count": 3, + "target": { + "cake": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "1": "Collaborate with agents around you to make 1 cake, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" + }, + "initial_inventory": { + "0": { + "milk_bucket": 2 + }, + "1": { + "milk_bucket": 2, + "egg": 1 + }, + "2": { + "milk_bucket": 2 + } + } + }, + "multiagent_cooking_2_1_baked_potato_1_golden_apple": { + "conversation": "Let's work together to make baked_potato, golden_apple.", + "agent_count": 3, + "target": { + "baked_potato": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" + }, + "initial_inventory": { + "0": { + "coal": 3, + "gold_ingot": 3 + }, + "1": { + "coal": 3, + "gold_ingot": 3 + }, + "2": { + "coal": 3, + "gold_ingot": 3, + "apple": 1 + } + } + }, + "multiagent_cooking_2_1_baked_potato_1_cake": { + "conversation": "Let's work together to make baked_potato, cake.", + "agent_count": 3, + "target": { + "baked_potato": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" + }, + "initial_inventory": { + "0": { + "coal": 3, + "milk_bucket": 2 + }, + "1": { + "coal": 3, + "milk_bucket": 2 + }, + "2": { + "coal": 3, + "milk_bucket": 2, + "egg": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_beef_1_golden_apple": { + "conversation": "Let's work together to make golden_apple, cooked_beef.", + "agent_count": 3, + "target": { + "golden_apple": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 3, + "coal": 3 + }, + "1": { + "gold_ingot": 3, + "apple": 1, + "coal": 3 + }, + "2": { + "gold_ingot": 3, + "coal": 3 + } + } + } +} \ No newline at end of file diff --git a/tasks/crafting_tasks/test_tasks/1_agent.json b/tasks/crafting_tasks/test_tasks/1_agent.json index d65ed02..915539a 100644 --- a/tasks/crafting_tasks/test_tasks/1_agent.json +++ b/tasks/crafting_tasks/test_tasks/1_agent.json @@ -4,7 +4,7 @@ "conversation": "Let's work together to craft an pink_wool.", "initial_inventory": { "0": { - "pink_dye": 1 + "black_wool": 1 } }, "agent_count": 2, @@ -26,7 +26,7 @@ "conversation": "Let's work together to craft an lime_wool.", "initial_inventory": { "0": { - "lime_dye": 1 + "black_wool": 1 } }, "agent_count": 2, diff --git a/tasks/human_evaluation.js b/tasks/human_evaluation.js index c4c5b7b..dbefe44 100644 --- a/tasks/human_evaluation.js +++ b/tasks/human_evaluation.js @@ -10,7 +10,7 @@ import { start } from 'repl'; // add a mineflayer bot the world named Andy const bot = mineflayer.createBot({ host: 'localhost', // Replace with your server IP or hostname - port: 49262, // Replace with your server port + port: 55916, // Replace with your server port username: 'andy', // Replace with your bot's username // password: 'your_bot_password' // Only if the server has online-mode=true }); @@ -42,13 +42,13 @@ class Agent { // parse arguments const args = parseArguments(); +console.log(args); // load in the task path const taskPath = fs.readFileSync(args.task_path, 'utf8'); const taskData = JSON.parse(taskPath); const task_id = args.task_id; - // give the required inventory items to the usernames specified in the usernames list bot.on('spawn', async () => { await new Promise(resolve => setTimeout(resolve, 5000)); @@ -61,7 +61,8 @@ bot.on('spawn', async () => { bot.chat(`/tp andy ${usernames[0]}`); await new Promise(resolve => setTimeout(resolve, 5000)); // console.log(taskData); - // console.log(task_id); + console.log(`Task id is ${task_id}`) + console.log(task_id); const task = taskData[task_id]; console.log(task); From 82475f7934160a854bc148eb6ce68482fd27ffa0 Mon Sep 17 00:00:00 2001 From: Isadora White Date: Fri, 9 May 2025 15:22:27 -0700 Subject: [PATCH 036/101] adding some small changes to help with human ai results --- settings.js | 2 +- src/agent/tasks/construction_tasks.js | 1 + src/agent/tasks/tasks.js | 12 +- .../human_ai/1_agent_1_human.json | 4701 +++++++++-------- ...ake_collaboration_required_cooking_task.py | 16 +- 5 files changed, 2373 insertions(+), 2359 deletions(-) diff --git a/settings.js b/settings.js index b782097..735755b 100644 --- a/settings.js +++ b/settings.js @@ -34,7 +34,7 @@ const settings = { "allow_insecure_coding": false, // allows newAction command and model can write/run code on your computer. enable at own risk "allow_vision": false, // allows vision model to interpret screenshots as inputs - "blocked_actions" : ["!checkBlueprint", "!checkBlueprintLevel", "!getBlueprint", "!getBlueprintLevel"] , // commands to disable and remove from docs. Ex: ["!setMode"] + "blocked_actions" : [] , // commands to disable and remove from docs. Ex: ["!setMode"] "code_timeout_mins": -1, // minutes code is allowed to run. -1 for no timeout "relevant_docs_count": 5, // number of relevant code function docs to select for prompting. -1 for all diff --git a/src/agent/tasks/construction_tasks.js b/src/agent/tasks/construction_tasks.js index c9a4a4d..0fcd3da 100644 --- a/src/agent/tasks/construction_tasks.js +++ b/src/agent/tasks/construction_tasks.js @@ -18,6 +18,7 @@ export class ConstructionTaskValidator { } let total_blocks = result.mismatches.length + result.matches.length; score = (result.matches.length / total_blocks) * 100; + console.log(`Task score: ${score}%`); return { "valid": valid, "score": score diff --git a/src/agent/tasks/tasks.js b/src/agent/tasks/tasks.js index 9a18092..32f24dc 100644 --- a/src/agent/tasks/tasks.js +++ b/src/agent/tasks/tasks.js @@ -552,7 +552,8 @@ export class Task { } } - if (human_player_name) { + // go the human if there is one and not required for the task + if (human_player_name && this.data.human_count === 0) { console.log(`Teleporting ${this.name} to human ${human_player_name}`) bot.chat(`/tp ${this.name} ${human_player_name}`) } @@ -598,7 +599,14 @@ export class Task { const commands = result.commands; const nearbyPosition = result.nearbyPosition; console.log("nearby position", nearbyPosition); - bot.chat(`/tp @a ${nearbyPosition.x} ${nearbyPosition.y} ${nearbyPosition.z}`); + const first_coord = this.data.blueprint.levels[0].coordinates; + bot.chat(`/tp @a ${first_coord[0]} ${first_coord[1]} ${first_coord[2]}`); + if (this.agent.agent_id === 0 && this.data.human_count > 0) { + for (let i = 0; i < this.data.human_count; i++) { + const username = this.data.usernames[i]; + await bot.chat(`/tp ${username} ${nearbyPosition.x} ${nearbyPosition.y} ${nearbyPosition.z}`); + } + } for (const command of commands) { bot.chat(command); } diff --git a/tasks/construction_tasks/human_ai/1_agent_1_human.json b/tasks/construction_tasks/human_ai/1_agent_1_human.json index 9d77488..2dfaa22 100644 --- a/tasks/construction_tasks/human_ai/1_agent_1_human.json +++ b/tasks/construction_tasks/human_ai/1_agent_1_human.json @@ -1,2354 +1,2357 @@ { "church": { - "type": "construction", - "goal": "Make a structure with the blueprint below", - "conversation": "Let's share materials and make a structure with the blueprint", - "agent_count": 1, - "human_count": 1, - "timeout": 600, - "blueprint": { - "materials": { - "oak_planks": 153, - "stone_bricks": 142, - "oak_door": 2, - "oak_stairs": 16, - "quartz_block": 1, - "glass_pane": 15, - "torch": 4, - "oak_fence": 4 + "type": "construction", + "goal": "Make a structure with the blueprint below", + "conversation": "Let's share materials and make a structure with the blueprint", + "agent_count": 1, + "human_count": 1, + "timeout": 600, + "blueprint": { + "materials": { + "oak_planks": 153, + "stone_bricks": 142, + "oak_door": 2, + "oak_stairs": 16, + "quartz_block": 1, + "glass_pane": 15, + "torch": 4, + "oak_fence": 4 + }, + "levels": [ + { + "level": 0, + "coordinates": [ + -18, + -60, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 1, + "coordinates": [ + -18, + -59, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "stone_bricks", + "stone_bricks", + "oak_door", + "stone_bricks", + "air", + "air", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "oak_stairs", + "oak_stairs", + "air", + "oak_stairs", + "oak_stairs", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "oak_stairs", + "oak_stairs", + "air", + "oak_stairs", + "oak_stairs", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "oak_stairs", + "oak_stairs", + "air", + "oak_stairs", + "oak_stairs", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "oak_stairs", + "oak_stairs", + "air", + "oak_stairs", + "oak_stairs", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "quartz_block", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 2, + "coordinates": [ + -18, + -58, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "glass_pane", + "stone_bricks", + "oak_door", + "stone_bricks", + "glass_pane", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "glass_pane", + "air", + "air", + "air", + "air", + "air", + "glass_pane", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "glass_pane", + "air", + "air", + "air", + "air", + "air", + "glass_pane", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "glass_pane", + "air", + "air", + "air", + "air", + "air", + "glass_pane", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "glass_pane", + "air", + "air", + "air", + "air", + "air", + "glass_pane", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "glass_pane", + "air", + "air", + "air", + "air", + "air", + "glass_pane", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "glass_pane", + "stone_bricks", + "glass_pane", + "stone_bricks", + "glass_pane", + "stone_bricks", + "air", + "air", + "air" + ] + ] + }, + { + "level": 3, + "coordinates": [ + -18, + -57, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "torch", + "air", + "air", + "air", + "torch", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "torch", + "air", + "air", + "air", + "torch", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "air", + "air", + "air" + ] + ] + }, + { + "level": 4, + "coordinates": [ + -18, + -56, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "air", + "air", + "air" + ] + ] + }, + { + "level": 5, + "coordinates": [ + -18, + -55, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "air", + "air", + "air" + ] + ] + }, + { + "level": 6, + "coordinates": [ + -18, + -54, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ] + ] + }, + { + "level": 7, + "coordinates": [ + -18, + -53, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 8, + "coordinates": [ + -18, + -52, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 9, + "coordinates": [ + -18, + -51, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 10, + "coordinates": [ + -18, + -50, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "oak_fence", + "oak_fence", + "oak_fence", + "air", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 11, + "coordinates": [ + -18, + -49, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "oak_fence", + "air", + "air", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 12, + "coordinates": [ + -18, + -48, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 13, + "coordinates": [ + -18, + -47, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 14, + "coordinates": [ + -18, + -46, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ] + ] + } + ] }, - "levels": [ - { - "level": 0, - "coordinates": [ - -18, - -60, - 29 - ], - "placement": [ - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "air", - "air", - "air" - ], - [ - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "air", - "air", - "air" - ], - [ - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "air", - "air", - "air" - ], - [ - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "air", - "air", - "air" - ], - [ - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "air", - "air", - "air" - ], - [ - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "air", - "air", - "air" - ], - [ - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "air", - "air", - "air" - ], - [ - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "air", - "air", - "air" - ], - [ - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "air", - "air", - "air" - ], - [ - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "air", - "air", - "air" - ], - [ - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "air", - "air", - "air", - "air" - ] - ] - }, - { - "level": 1, - "coordinates": [ - -18, - -59, - 29 - ], - "placement": [ - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "stone_bricks", - "stone_bricks", - "oak_door", - "stone_bricks", - "air", - "air", - "air", - "air", - "air" - ], - [ - "stone_bricks", - "air", - "air", - "air", - "air", - "air", - "stone_bricks", - "air", - "air", - "air" - ], - [ - "stone_bricks", - "oak_stairs", - "oak_stairs", - "air", - "oak_stairs", - "oak_stairs", - "stone_bricks", - "air", - "air", - "air" - ], - [ - "stone_bricks", - "air", - "air", - "air", - "air", - "air", - "stone_bricks", - "air", - "air", - "air" - ], - [ - "stone_bricks", - "oak_stairs", - "oak_stairs", - "air", - "oak_stairs", - "oak_stairs", - "stone_bricks", - "air", - "air", - "air" - ], - [ - "stone_bricks", - "air", - "air", - "air", - "air", - "air", - "stone_bricks", - "air", - "air", - "air" - ], - [ - "stone_bricks", - "oak_stairs", - "oak_stairs", - "air", - "oak_stairs", - "oak_stairs", - "stone_bricks", - "air", - "air", - "air" - ], - [ - "stone_bricks", - "air", - "air", - "air", - "air", - "air", - "stone_bricks", - "air", - "air", - "air" - ], - [ - "stone_bricks", - "oak_stairs", - "oak_stairs", - "air", - "oak_stairs", - "oak_stairs", - "stone_bricks", - "air", - "air", - "air" - ], - [ - "stone_bricks", - "air", - "air", - "quartz_block", - "air", - "air", - "stone_bricks", - "air", - "air", - "air" - ], - [ - "stone_bricks", - "stone_bricks", - "stone_bricks", - "stone_bricks", - "stone_bricks", - "stone_bricks", - "air", - "air", - "air", - "air" - ] - ] - }, - { - "level": 2, - "coordinates": [ - -18, - -58, - 29 - ], - "placement": [ - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "stone_bricks", - "glass_pane", - "stone_bricks", - "oak_door", - "stone_bricks", - "glass_pane", - "stone_bricks", - "air", - "air", - "air" - ], - [ - "glass_pane", - "air", - "air", - "air", - "air", - "air", - "glass_pane", - "air", - "air", - "air" - ], - [ - "stone_bricks", - "air", - "air", - "air", - "air", - "air", - "stone_bricks", - "air", - "air", - "air" - ], - [ - "glass_pane", - "air", - "air", - "air", - "air", - "air", - "glass_pane", - "air", - "air", - "air" - ], - [ - "stone_bricks", - "air", - "air", - "air", - "air", - "air", - "stone_bricks", - "air", - "air", - "air" - ], - [ - "glass_pane", - "air", - "air", - "air", - "air", - "air", - "glass_pane", - "air", - "air", - "air" - ], - [ - "stone_bricks", - "air", - "air", - "air", - "air", - "air", - "stone_bricks", - "air", - "air", - "air" - ], - [ - "glass_pane", - "air", - "air", - "air", - "air", - "air", - "glass_pane", - "air", - "air", - "air" - ], - [ - "stone_bricks", - "air", - "air", - "air", - "air", - "air", - "stone_bricks", - "air", - "air", - "air" - ], - [ - "glass_pane", - "air", - "air", - "air", - "air", - "air", - "glass_pane", - "air", - "air", - "air" - ], - [ - "stone_bricks", - "glass_pane", - "stone_bricks", - "glass_pane", - "stone_bricks", - "glass_pane", - "stone_bricks", - "air", - "air", - "air" - ] - ] - }, - { - "level": 3, - "coordinates": [ - -18, - -57, - 29 - ], - "placement": [ - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "stone_bricks", - "stone_bricks", - "stone_bricks", - "stone_bricks", - "stone_bricks", - "stone_bricks", - "stone_bricks", - "air", - "air", - "air" - ], - [ - "stone_bricks", - "torch", - "air", - "air", - "air", - "torch", - "stone_bricks", - "air", - "air", - "air" - ], - [ - "stone_bricks", - "air", - "air", - "air", - "air", - "air", - "stone_bricks", - "air", - "air", - "air" - ], - [ - "stone_bricks", - "air", - "air", - "air", - "air", - "air", - "stone_bricks", - "air", - "air", - "air" - ], - [ - "stone_bricks", - "air", - "air", - "air", - "air", - "air", - "stone_bricks", - "air", - "air", - "air" - ], - [ - "stone_bricks", - "air", - "air", - "air", - "air", - "air", - "stone_bricks", - "air", - "air", - "air" - ], - [ - "stone_bricks", - "air", - "air", - "air", - "air", - "air", - "stone_bricks", - "air", - "air", - "air" - ], - [ - "stone_bricks", - "air", - "air", - "air", - "air", - "air", - "stone_bricks", - "air", - "air", - "air" - ], - [ - "stone_bricks", - "air", - "air", - "air", - "air", - "air", - "stone_bricks", - "air", - "air", - "air" - ], - [ - "stone_bricks", - "torch", - "air", - "air", - "air", - "torch", - "stone_bricks", - "air", - "air", - "air" - ], - [ - "stone_bricks", - "stone_bricks", - "stone_bricks", - "stone_bricks", - "stone_bricks", - "stone_bricks", - "stone_bricks", - "air", - "air", - "air" - ] - ] - }, - { - "level": 4, - "coordinates": [ - -18, - -56, - 29 - ], - "placement": [ - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "stone_bricks", - "stone_bricks", - "stone_bricks", - "stone_bricks", - "stone_bricks", - "stone_bricks", - "stone_bricks", - "air", - "air", - "air" - ], - [ - "stone_bricks", - "air", - "air", - "air", - "air", - "air", - "stone_bricks", - "air", - "air", - "air" - ], - [ - "stone_bricks", - "air", - "air", - "air", - "air", - "air", - "stone_bricks", - "air", - "air", - "air" - ], - [ - "stone_bricks", - "air", - "air", - "air", - "air", - "air", - "stone_bricks", - "air", - "air", - "air" - ], - [ - "stone_bricks", - "air", - "air", - "air", - "air", - "air", - "stone_bricks", - "air", - "air", - "air" - ], - [ - "stone_bricks", - "air", - "air", - "air", - "air", - "air", - "stone_bricks", - "air", - "air", - "air" - ], - [ - "stone_bricks", - "air", - "air", - "air", - "air", - "air", - "stone_bricks", - "air", - "air", - "air" - ], - [ - "stone_bricks", - "air", - "air", - "air", - "air", - "air", - "stone_bricks", - "air", - "air", - "air" - ], - [ - "stone_bricks", - "air", - "air", - "air", - "air", - "air", - "stone_bricks", - "air", - "air", - "air" - ], - [ - "stone_bricks", - "air", - "air", - "air", - "air", - "air", - "stone_bricks", - "air", - "air", - "air" - ], - [ - "stone_bricks", - "stone_bricks", - "stone_bricks", - "stone_bricks", - "stone_bricks", - "stone_bricks", - "stone_bricks", - "air", - "air", - "air" - ] - ] - }, - { - "level": 5, - "coordinates": [ - -18, - -55, - 29 - ], - "placement": [ - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "stone_bricks", - "stone_bricks", - "stone_bricks", - "stone_bricks", - "stone_bricks", - "stone_bricks", - "stone_bricks", - "air", - "air", - "air" - ], - [ - "stone_bricks", - "air", - "air", - "air", - "air", - "air", - "stone_bricks", - "air", - "air", - "air" - ], - [ - "stone_bricks", - "air", - "air", - "air", - "air", - "air", - "stone_bricks", - "air", - "air", - "air" - ], - [ - "stone_bricks", - "air", - "air", - "air", - "air", - "air", - "stone_bricks", - "air", - "air", - "air" - ], - [ - "stone_bricks", - "air", - "air", - "air", - "air", - "air", - "stone_bricks", - "air", - "air", - "air" - ], - [ - "stone_bricks", - "air", - "air", - "air", - "air", - "air", - "stone_bricks", - "air", - "air", - "air" - ], - [ - "stone_bricks", - "air", - "air", - "air", - "air", - "air", - "stone_bricks", - "air", - "air", - "air" - ], - [ - "stone_bricks", - "air", - "air", - "air", - "air", - "air", - "stone_bricks", - "air", - "air", - "air" - ], - [ - "stone_bricks", - "air", - "air", - "air", - "air", - "air", - "stone_bricks", - "air", - "air", - "air" - ], - [ - "stone_bricks", - "air", - "air", - "air", - "air", - "air", - "stone_bricks", - "air", - "air", - "air" - ], - [ - "stone_bricks", - "stone_bricks", - "stone_bricks", - "stone_bricks", - "stone_bricks", - "stone_bricks", - "stone_bricks", - "air", - "air", - "air" - ] - ] - }, - { - "level": 6, - "coordinates": [ - -18, - -54, - 29 - ], - "placement": [ - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "air", - "air", - "air" - ], - [ - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "air", - "air", - "air" - ], - [ - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "air", - "air", - "air" - ], - [ - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "air", - "air", - "air" - ], - [ - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "air", - "air", - "air" - ], - [ - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "air", - "air", - "air" - ], - [ - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "air", - "air", - "air" - ], - [ - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "air", - "air", - "air" - ], - [ - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "air", - "air", - "air" - ], - [ - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "air", - "air", - "air" - ], - [ - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "oak_planks", - "air", - "air", - "air" - ] - ] - }, - { - "level": 7, - "coordinates": [ - -18, - -53, - 29 - ], - "placement": [ - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "stone_bricks", - "air", - "air", - "air", - "air", - "air", - "air" - ] - ] - }, - { - "level": 8, - "coordinates": [ - -18, - -52, - 29 - ], - "placement": [ - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "stone_bricks", - "air", - "air", - "air", - "air", - "air", - "air" - ] - ] - }, - { - "level": 9, - "coordinates": [ - -18, - -51, - 29 - ], - "placement": [ - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "stone_bricks", - "air", - "air", - "air", - "air", - "air", - "air" - ] - ] - }, - { - "level": 10, - "coordinates": [ - -18, - -50, - 29 - ], - "placement": [ - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "oak_fence", - "oak_fence", - "oak_fence", - "air", - "air", - "air", - "air", - "air" - ] - ] - }, - { - "level": 11, - "coordinates": [ - -18, - -49, - 29 - ], - "placement": [ - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "oak_fence", - "air", - "air", - "air", - "air", - "air", - "air" - ] - ] - }, - { - "level": 12, - "coordinates": [ - -18, - -48, - 29 - ], - "placement": [ - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ] - ] - }, - { - "level": 13, - "coordinates": [ - -18, - -47, - 29 - ], - "placement": [ - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ] - ] - }, - { - "level": 14, - "coordinates": [ - -18, - -46, - 29 - ], - "placement": [ - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ], - [ - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air", - "air" - ] - ] - } + "initial_inventory": { + "0": { + "diamond_pickaxe": 1, + "diamond_axe": 1, + "diamond_shovel": 1, + "oak_planks": 153, + "oak_stairs": 16, + "torch": 4, + "oak_door": 2 + }, + "1": { + "diamond_pickaxe": 1, + "diamond_axe": 1, + "diamond_shovel": 1, + "stone_bricks": 142, + "quartz_block": 1, + "oak_fence": 4, + "glass_pane": 15 + } + }, + "usernames": [ + "izzycw" ] - }, - "initial_inventory": { - "0": { - "diamond_pickaxe": 1, - "diamond_axe": 1, - "diamond_shovel": 1, - "oak_planks": 153, - "oak_stairs": 16, - "torch": 4, - "oak_door": 2 - }, - "1": { - "diamond_pickaxe": 1, - "diamond_axe": 1, - "diamond_shovel": 1, - "stone_bricks": 142, - "quartz_block": 1, - "oak_fence": 4, - "glass_pane": 15 - } - } } - } \ No newline at end of file +} \ No newline at end of file diff --git a/tasks/cooking_tasks/make_collaboration_required_cooking_task.py b/tasks/cooking_tasks/make_collaboration_required_cooking_task.py index 90791b0..156b3ff 100644 --- a/tasks/cooking_tasks/make_collaboration_required_cooking_task.py +++ b/tasks/cooking_tasks/make_collaboration_required_cooking_task.py @@ -303,15 +303,17 @@ def reconfigure_tasks(task_path, new_task_path, num_agents=None): -reconfigure_tasks("mindcraft/tasks/cooking_tasks/test_tasks/3_agent_cooking_test_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_test_3_items/2_agent.json", 2) -reconfigure_tasks("mindcraft/tasks/cooking_tasks/test_tasks/3_agent_cooking_test_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_test_3_items/3_agent.json", 3) -reconfigure_tasks("mindcraft/tasks/cooking_tasks/test_tasks/3_agent_cooking_test_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_test_3_items/4_agent.json", 4) -reconfigure_tasks("mindcraft/tasks/cooking_tasks/test_tasks/3_agent_cooking_test_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_test_3_items/5_agent.json", 5) +# reconfigure_tasks("mindcraft/tasks/cooking_tasks/test_tasks/3_agent_cooking_test_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_test_3_items/2_agent.json", 2) +# reconfigure_tasks("mindcraft/tasks/cooking_tasks/test_tasks/3_agent_cooking_test_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_test_3_items/3_agent.json", 3) +# reconfigure_tasks("mindcraft/tasks/cooking_tasks/test_tasks/3_agent_cooking_test_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_test_3_items/4_agent.json", 4) +# reconfigure_tasks("mindcraft/tasks/cooking_tasks/test_tasks/3_agent_cooking_test_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_test_3_items/5_agent.json", 5) +# reconfigure_tasks("mindcraft/tasks/cooking_tasks/test_tasks/2_agent_cooking_test_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_test_2_items/2_agent.json", 2) +# reconfigure_tasks("mindcraft/tasks/cooking_tasks/test_tasks/2_agent_cooking_test_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_test_2_items/3_agent.json", 3) +# reconfigure_tasks("mindcraft/tasks/cooking_tasks/test_tasks/2_agent_cooking_test_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_test_2_items/4_agent.json", 4) +# reconfigure_tasks("mindcraft/tasks/cooking_tasks/test_tasks/2_agent_cooking_test_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_test_2_items/5_agent.json", 5) reconfigure_tasks("mindcraft/tasks/cooking_tasks/test_tasks/2_agent_cooking_test_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_test_2_items/2_agent.json", 2) -reconfigure_tasks("mindcraft/tasks/cooking_tasks/test_tasks/2_agent_cooking_test_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_test_2_items/3_agent.json", 3) -reconfigure_tasks("mindcraft/tasks/cooking_tasks/test_tasks/2_agent_cooking_test_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_test_2_items/4_agent.json", 4) -reconfigure_tasks("mindcraft/tasks/cooking_tasks/test_tasks/2_agent_cooking_test_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_test_2_items/5_agent.json", 5) + # reconfigure_tasks("mindcraft/tasks/cooking_tasks/equal_load_test_tasks/3_agent.json", "mindcraft/tasks/cooking_tasks/require_collab_test/3_agent.json") # reconfigure_tasks("mindcraft/tasks/cooking_tasks/equal_load_test_tasks/4_agent.json", "mindcraft/tasks/cooking_tasks/require_collab_test/4_agent.json") # reconfigure_tasks("mindcraft/tasks/cooking_tasks/equal_load_test_tasks/5_agent.json", "mindcraft/tasks/cooking_tasks/require_collab_test/5_agent.json") From 4ae95cba3871a7cb51943f073a77811cc7d31024 Mon Sep 17 00:00:00 2001 From: Isadora White Date: Sat, 10 May 2025 17:07:08 -0700 Subject: [PATCH 037/101] collaboration train tasks with 2 items for cooking --- ...ake_collaboration_required_cooking_task.py | 60 +- .../require_collab_train_2_items/2_agent.json | 1640 +++++++++++++++++ .../require_collab_train_2_items/3_agent.json | 670 +++++++ .../require_collab_train_2_items/4_agent.json | 386 ++++ .../require_collab_train_2_items/5_agent.json | 413 +++++ 5 files changed, 3155 insertions(+), 14 deletions(-) create mode 100644 tasks/cooking_tasks/require_collab_train_2_items/2_agent.json create mode 100644 tasks/cooking_tasks/require_collab_train_2_items/3_agent.json create mode 100644 tasks/cooking_tasks/require_collab_train_2_items/4_agent.json create mode 100644 tasks/cooking_tasks/require_collab_train_2_items/5_agent.json diff --git a/tasks/cooking_tasks/make_collaboration_required_cooking_task.py b/tasks/cooking_tasks/make_collaboration_required_cooking_task.py index 156b3ff..1f570aa 100644 --- a/tasks/cooking_tasks/make_collaboration_required_cooking_task.py +++ b/tasks/cooking_tasks/make_collaboration_required_cooking_task.py @@ -3,6 +3,7 @@ import json from typing import Dict, List, Any, Tuple, Set from collections import Counter, defaultdict import os +import numpy as np # Define your COOKING_ITEMS dictionary here # This is where you should put your complete COOKING_ITEMS dictionary @@ -18,7 +19,7 @@ COOKING_ITEMS = { "description": "Cooked mutton meat", "complexity": "easy", "required_chest_items": { - "coal": 8, + "coal": 1, } }, "cooked_beef": { @@ -31,7 +32,7 @@ COOKING_ITEMS = { "description": "Cooked beef meat", "complexity": "easy", "required_chest_items": { - "coal": 8, + "coal": 1, } }, "cooked_porkchop": { @@ -44,7 +45,7 @@ COOKING_ITEMS = { "description": "Cooked porkchop", "complexity": "easy", "required_chest_items": { - "coal": 8, + "coal": 1, } }, "cooked_chicken": { @@ -57,7 +58,7 @@ COOKING_ITEMS = { "description": "Cooked chicken meat", "complexity": "easy", "required_chest_items": { - "coal": 8, + "coal": 1, } }, "cooked_rabbit": { @@ -70,7 +71,7 @@ COOKING_ITEMS = { "description": "Cooked rabbit meat", "complexity": "easy", "required_chest_items": { - "coal": 8, + "coal": 1, } }, @@ -141,7 +142,7 @@ COOKING_ITEMS = { "description": "A simple baked potato", "complexity": "easy", "required_chest_items": { - "coal": 8, + "coal": 1, } }, "bread": { @@ -244,10 +245,23 @@ chest_items = { "iron_ingot": 64, } +def count_items_in_inventory(inventory): + item_counts = [] + for key in inventory.keys(): + agent_inventory = inventory[key] + total_items = 0 + for item in agent_inventory.keys(): + total_items += agent_inventory[item] + item_counts.append(total_items) + return item_counts + + + def reconfigure_tasks(task_path, new_task_path, num_agents=None): with open(task_path, 'r') as f: tasks = json.load(f) task_ids = tasks.keys() + new_tasks = {} for task_id in task_ids: task = tasks[task_id] if task["type"] == "cooking": @@ -262,7 +276,6 @@ def reconfigure_tasks(task_path, new_task_path, num_agents=None): inventory[chest_item] = inventory.get(chest_item, 0) + quantity else: print(f"item {item} not found in COOKING_ITEMS.") - print(inventory) task["recipes"] = new_recipes # assign inventory to the agents if num_agents is None: @@ -274,16 +287,32 @@ def reconfigure_tasks(task_path, new_task_path, num_agents=None): initial_inventory[i] = {} items_lst = list(inventory.keys()) for i in range(len(items_lst)): - agent_num = i % num_agents + item_counts = count_items_in_inventory(initial_inventory) + agent_num = np.argmin(item_counts) if inventory[items_lst[i]] == 1: initial_inventory[agent_num][items_lst[i]] = 1 elif inventory[items_lst[i]] > 1: - num_per_agent = inventory[items_lst[i]] // num_agents + 1 + div = inventory[items_lst[i]] // num_agents + rem = inventory[items_lst[i]] % num_agents for j in range(num_agents): - initial_inventory[j][items_lst[i]] = num_per_agent + initial_inventory[j][items_lst[i]] = div + j = 0 + while j < rem: + initial_inventory[j][items_lst[i]] += 1 + j += 1 # initial_inventory[agent_num][items_lst[i]] = inventory[items_lst[i]] + item_counts = count_items_in_inventory(initial_inventory) + required_collab = True + for i in range(len(item_counts)): + if item_counts[i] == 0: + # don't add the task if collaboration isn't required + required_collab = False + if not required_collab: + print(f"task {task_id} doesn't require collaboration.") + continue task["initial_inventory"] = initial_inventory - + print(inventory) + print(initial_inventory) goals = task.get("goal", {}) new_goals = {} blocked_access = task.get("blocked_access_to_recipe", []) @@ -295,11 +324,12 @@ def reconfigure_tasks(task_path, new_task_path, num_agents=None): initial_goal += f"Recipe for {item}:\n{recipe}" new_goals[key] = initial_goal task["goal"] = new_goals + new_tasks[task_id] = task # check each of the recipes and replace with the new recipe os.makedirs(os.path.dirname(new_task_path), exist_ok=True) with open(new_task_path, 'w') as f: - json.dump(tasks, f, indent=4) + json.dump(new_tasks, f, indent=4) @@ -312,8 +342,10 @@ def reconfigure_tasks(task_path, new_task_path, num_agents=None): # reconfigure_tasks("mindcraft/tasks/cooking_tasks/test_tasks/2_agent_cooking_test_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_test_2_items/3_agent.json", 3) # reconfigure_tasks("mindcraft/tasks/cooking_tasks/test_tasks/2_agent_cooking_test_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_test_2_items/4_agent.json", 4) # reconfigure_tasks("mindcraft/tasks/cooking_tasks/test_tasks/2_agent_cooking_test_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_test_2_items/5_agent.json", 5) -reconfigure_tasks("mindcraft/tasks/cooking_tasks/test_tasks/2_agent_cooking_test_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_test_2_items/2_agent.json", 2) - +reconfigure_tasks("mindcraft/tasks/cooking_tasks/train_tasks/2_agent_cooking_train_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_train_2_items/2_agent.json", 2) +reconfigure_tasks("mindcraft/tasks/cooking_tasks/train_tasks/2_agent_cooking_train_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_train_2_items/3_agent.json", 3) +reconfigure_tasks("mindcraft/tasks/cooking_tasks/train_tasks/2_agent_cooking_train_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_train_2_items/4_agent.json", 4) +reconfigure_tasks("mindcraft/tasks/cooking_tasks/train_tasks/2_agent_cooking_train_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_train_2_items/5_agent.json", 5) # reconfigure_tasks("mindcraft/tasks/cooking_tasks/equal_load_test_tasks/3_agent.json", "mindcraft/tasks/cooking_tasks/require_collab_test/3_agent.json") # reconfigure_tasks("mindcraft/tasks/cooking_tasks/equal_load_test_tasks/4_agent.json", "mindcraft/tasks/cooking_tasks/require_collab_test/4_agent.json") # reconfigure_tasks("mindcraft/tasks/cooking_tasks/equal_load_test_tasks/5_agent.json", "mindcraft/tasks/cooking_tasks/require_collab_test/5_agent.json") diff --git a/tasks/cooking_tasks/require_collab_train_2_items/2_agent.json b/tasks/cooking_tasks/require_collab_train_2_items/2_agent.json new file mode 100644 index 0000000..b722fbb --- /dev/null +++ b/tasks/cooking_tasks/require_collab_train_2_items/2_agent.json @@ -0,0 +1,1640 @@ +{ + "multiagent_cooking_2_1_cooked_chicken_1_golden_carrot": { + "conversation": "Let's work together to make cooked_chicken, golden_carrot.", + "agent_count": 2, + "target": { + "cooked_chicken": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "initial_inventory": { + "0": { + "coal": 1, + "gold_ingot": 4 + }, + "1": { + "gold_ingot": 4 + } + } + }, + "multiagent_cooking_2_1_cooked_mutton_1_golden_carrot": { + "conversation": "Let's work together to make golden_carrot, cooked_mutton.", + "agent_count": 2, + "target": { + "golden_carrot": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 4, + "coal": 1 + }, + "1": { + "gold_ingot": 4 + } + } + }, + "multiagent_cooking_2_1_cookie_1_mushroom_stew": { + "conversation": "Let's work together to make cookie, mushroom_stew.", + "agent_count": 2, + "target": { + "cookie": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "1": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" + }, + "initial_inventory": { + "0": { + "cocoa_beans": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_2_1_cookie_1_golden_carrot": { + "conversation": "Let's work together to make golden_carrot, cookie.", + "agent_count": 2, + "target": { + "golden_carrot": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cookie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cookie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 4, + "cocoa_beans": 1 + }, + "1": { + "gold_ingot": 4 + } + } + }, + "multiagent_cooking_2_1_cooked_mutton_1_cooked_porkchop": { + "conversation": "Let's work together to make cooked_porkchop, cooked_mutton.", + "agent_count": 2, + "target": { + "cooked_porkchop": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" + }, + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_2_1_cookie_1_suspicious_stew": { + "conversation": "Let's work together to make suspicious_stew, cookie.", + "agent_count": 2, + "target": { + "suspicious_stew": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cookie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cookie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" + }, + "initial_inventory": { + "0": { + "bowl": 1, + "cocoa_beans": 1 + }, + "1": { + "dandelion": 1 + } + } + }, + "multiagent_cooking_2_1_mushroom_stew_1_suspicious_stew": { + "conversation": "Let's work together to make mushroom_stew, suspicious_stew.", + "agent_count": 2, + "target": { + "mushroom_stew": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + }, + "initial_inventory": { + "0": { + "bowl": 1, + "dandelion": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_2_1_cookie_1_pumpkin_pie": { + "conversation": "Let's work together to make pumpkin_pie, cookie.", + "agent_count": 2, + "target": { + "pumpkin_pie": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" + }, + "initial_inventory": { + "0": { + "egg": 1 + }, + "1": { + "cocoa_beans": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_chicken_1_suspicious_stew": { + "conversation": "Let's work together to make suspicious_stew, cooked_chicken.", + "agent_count": 2, + "target": { + "suspicious_stew": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + }, + "initial_inventory": { + "0": { + "bowl": 1, + "coal": 1 + }, + "1": { + "dandelion": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_chicken_1_mushroom_stew": { + "conversation": "Let's work together to make mushroom_stew, cooked_chicken.", + "agent_count": 2, + "target": { + "mushroom_stew": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_rabbit_1_golden_carrot": { + "conversation": "Let's work together to make golden_carrot, cooked_rabbit.", + "agent_count": 2, + "target": { + "golden_carrot": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_rabbit. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_rabbit. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 4, + "coal": 1 + }, + "1": { + "gold_ingot": 4 + } + } + }, + "multiagent_cooking_2_1_golden_carrot_1_mushroom_stew": { + "conversation": "Let's work together to make golden_carrot, mushroom_stew.", + "agent_count": 2, + "target": { + "golden_carrot": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 4, + "bowl": 1 + }, + "1": { + "gold_ingot": 4 + } + } + }, + "multiagent_cooking_2_1_golden_carrot_1_pumpkin_pie": { + "conversation": "Let's work together to make pumpkin_pie, golden_carrot.", + "agent_count": 2, + "target": { + "pumpkin_pie": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "initial_inventory": { + "0": { + "egg": 1, + "gold_ingot": 4 + }, + "1": { + "gold_ingot": 4 + } + } + }, + "multiagent_cooking_2_1_cooked_chicken_1_cooked_porkchop": { + "conversation": "Let's work together to make cooked_chicken, cooked_porkchop.", + "agent_count": 2, + "target": { + "cooked_chicken": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + }, + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_2_1_beetroot_soup_1_cooked_porkchop": { + "conversation": "Let's work together to make beetroot_soup, cooked_porkchop.", + "agent_count": 2, + "target": { + "beetroot_soup": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_porkchop_1_mushroom_stew": { + "conversation": "Let's work together to make mushroom_stew, cooked_porkchop.", + "agent_count": 2, + "target": { + "mushroom_stew": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_porkchop_1_golden_carrot": { + "conversation": "Let's work together to make cooked_porkchop, golden_carrot.", + "agent_count": 2, + "target": { + "cooked_porkchop": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "initial_inventory": { + "0": { + "coal": 1, + "gold_ingot": 4 + }, + "1": { + "gold_ingot": 4 + } + } + }, + "multiagent_cooking_2_1_cooked_porkchop_1_pumpkin_pie": { + "conversation": "Let's work together to make cooked_porkchop, pumpkin_pie.", + "agent_count": 2, + "target": { + "cooked_porkchop": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" + }, + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "egg": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_mutton_1_suspicious_stew": { + "conversation": "Let's work together to make cooked_mutton, suspicious_stew.", + "agent_count": 2, + "target": { + "cooked_mutton": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 suspicious_stew. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 suspicious_stew. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + }, + "initial_inventory": { + "0": { + "coal": 1, + "dandelion": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_2_1_mushroom_stew_1_pumpkin_pie": { + "conversation": "Let's work together to make pumpkin_pie, mushroom_stew.", + "agent_count": 2, + "target": { + "pumpkin_pie": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" + }, + "initial_inventory": { + "0": { + "egg": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_rabbit_1_mushroom_stew": { + "conversation": "Let's work together to make cooked_rabbit, mushroom_stew.", + "agent_count": 2, + "target": { + "cooked_rabbit": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" + }, + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_chicken_1_cookie": { + "conversation": "Let's work together to make cookie, cooked_chicken.", + "agent_count": 2, + "target": { + "cookie": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_chicken. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_chicken. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + }, + "initial_inventory": { + "0": { + "cocoa_beans": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_chicken_1_pumpkin_pie": { + "conversation": "Let's work together to make pumpkin_pie, cooked_chicken.", + "agent_count": 2, + "target": { + "pumpkin_pie": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + }, + "initial_inventory": { + "0": { + "egg": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_mutton_1_mushroom_stew": { + "conversation": "Let's work together to make mushroom_stew, cooked_mutton.", + "agent_count": 2, + "target": { + "mushroom_stew": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_porkchop_1_cooked_rabbit": { + "conversation": "Let's work together to make cooked_rabbit, cooked_porkchop.", + "agent_count": 2, + "target": { + "cooked_rabbit": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + }, + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_porkchop_1_suspicious_stew": { + "conversation": "Let's work together to make suspicious_stew, cooked_porkchop.", + "agent_count": 2, + "target": { + "suspicious_stew": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + }, + "initial_inventory": { + "0": { + "bowl": 1, + "coal": 1 + }, + "1": { + "dandelion": 1 + } + } + }, + "multiagent_cooking_2_1_beetroot_soup_1_suspicious_stew": { + "conversation": "Let's work together to make suspicious_stew, beetroot_soup.", + "agent_count": 2, + "target": { + "suspicious_stew": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" + }, + "initial_inventory": { + "0": { + "bowl": 1, + "dandelion": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_rabbit_1_cookie": { + "conversation": "Let's work together to make cookie, cooked_rabbit.", + "agent_count": 2, + "target": { + "cookie": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" + }, + "initial_inventory": { + "0": { + "cocoa_beans": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_2_1_golden_carrot_1_suspicious_stew": { + "conversation": "Let's work together to make golden_carrot, suspicious_stew.", + "agent_count": 2, + "target": { + "golden_carrot": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 4, + "bowl": 1 + }, + "1": { + "gold_ingot": 4, + "dandelion": 1 + } + } + }, + "multiagent_cooking_2_1_pumpkin_pie_1_suspicious_stew": { + "conversation": "Let's work together to make suspicious_stew, pumpkin_pie.", + "agent_count": 2, + "target": { + "suspicious_stew": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" + }, + "initial_inventory": { + "0": { + "bowl": 1, + "egg": 1 + }, + "1": { + "dandelion": 1 + } + } + }, + "multiagent_cooking_2_1_beetroot_soup_1_cookie": { + "conversation": "Let's work together to make beetroot_soup, cookie.", + "agent_count": 2, + "target": { + "beetroot_soup": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "cocoa_beans": 1 + } + } + }, + "multiagent_cooking_2_1_beetroot_soup_1_cooked_mutton": { + "conversation": "Let's work together to make cooked_mutton, beetroot_soup.", + "agent_count": 2, + "target": { + "cooked_mutton": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" + }, + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_2_1_beetroot_soup_1_pumpkin_pie": { + "conversation": "Let's work together to make beetroot_soup, pumpkin_pie.", + "agent_count": 2, + "target": { + "beetroot_soup": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "egg": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_chicken_1_cooked_rabbit": { + "conversation": "Let's work together to make cooked_chicken, cooked_rabbit.", + "agent_count": 2, + "target": { + "cooked_chicken": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" + }, + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_porkchop_1_cookie": { + "conversation": "Let's work together to make cooked_porkchop, cookie.", + "agent_count": 2, + "target": { + "cooked_porkchop": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cookie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cookie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" + }, + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "cocoa_beans": 1 + } + } + }, + "multiagent_cooking_2_1_beetroot_soup_1_golden_carrot": { + "conversation": "Let's work together to make beetroot_soup, golden_carrot.", + "agent_count": 2, + "target": { + "beetroot_soup": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 golden_carrot. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 golden_carrot. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "initial_inventory": { + "0": { + "bowl": 1, + "gold_ingot": 4 + }, + "1": { + "gold_ingot": 4 + } + } + }, + "multiagent_cooking_2_1_cooked_rabbit_1_suspicious_stew": { + "conversation": "Let's work together to make cooked_rabbit, suspicious_stew.", + "agent_count": 2, + "target": { + "cooked_rabbit": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + }, + "initial_inventory": { + "0": { + "coal": 1, + "dandelion": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_mutton_1_cooked_rabbit": { + "conversation": "Let's work together to make cooked_rabbit, cooked_mutton.", + "agent_count": 2, + "target": { + "cooked_rabbit": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_mutton. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_mutton. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" + }, + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_chicken_1_cooked_mutton": { + "conversation": "Let's work together to make cooked_mutton, cooked_chicken.", + "agent_count": 2, + "target": { + "cooked_mutton": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_chicken. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_chicken. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + }, + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_2_1_beetroot_soup_1_cooked_rabbit": { + "conversation": "Let's work together to make beetroot_soup, cooked_rabbit.", + "agent_count": 2, + "target": { + "beetroot_soup": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_rabbit. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_rabbit. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_mutton_1_cookie": { + "conversation": "Let's work together to make cookie, cooked_mutton.", + "agent_count": 2, + "target": { + "cookie": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_mutton. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_mutton. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" + }, + "initial_inventory": { + "0": { + "cocoa_beans": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_2_1_beetroot_soup_1_mushroom_stew": { + "conversation": "Let's work together to make mushroom_stew, beetroot_soup.", + "agent_count": 2, + "target": { + "mushroom_stew": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_rabbit_1_pumpkin_pie": { + "conversation": "Let's work together to make pumpkin_pie, cooked_rabbit.", + "agent_count": 2, + "target": { + "pumpkin_pie": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_rabbit. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_rabbit. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" + }, + "initial_inventory": { + "0": { + "egg": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_2_1_beetroot_soup_1_cooked_chicken": { + "conversation": "Let's work together to make beetroot_soup, cooked_chicken.", + "agent_count": 2, + "target": { + "beetroot_soup": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_mutton_1_pumpkin_pie": { + "conversation": "Let's work together to make cooked_mutton, pumpkin_pie.", + "agent_count": 2, + "target": { + "cooked_mutton": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" + }, + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "egg": 1 + } + } + } +} \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_train_2_items/3_agent.json b/tasks/cooking_tasks/require_collab_train_2_items/3_agent.json new file mode 100644 index 0000000..8e40b3b --- /dev/null +++ b/tasks/cooking_tasks/require_collab_train_2_items/3_agent.json @@ -0,0 +1,670 @@ +{ + "multiagent_cooking_2_1_cooked_chicken_1_golden_carrot": { + "conversation": "Let's work together to make cooked_chicken, golden_carrot.", + "agent_count": 3, + "target": { + "cooked_chicken": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "initial_inventory": { + "0": { + "coal": 1, + "gold_ingot": 3 + }, + "1": { + "gold_ingot": 3 + }, + "2": { + "gold_ingot": 2 + } + } + }, + "multiagent_cooking_2_1_cooked_mutton_1_golden_carrot": { + "conversation": "Let's work together to make golden_carrot, cooked_mutton.", + "agent_count": 3, + "target": { + "golden_carrot": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 3 + }, + "1": { + "gold_ingot": 3 + }, + "2": { + "gold_ingot": 2, + "coal": 1 + } + } + }, + "multiagent_cooking_2_1_cookie_1_golden_carrot": { + "conversation": "Let's work together to make golden_carrot, cookie.", + "agent_count": 3, + "target": { + "golden_carrot": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cookie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cookie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 3 + }, + "1": { + "gold_ingot": 3 + }, + "2": { + "gold_ingot": 2, + "cocoa_beans": 1 + } + } + }, + "multiagent_cooking_2_1_cookie_1_suspicious_stew": { + "conversation": "Let's work together to make suspicious_stew, cookie.", + "agent_count": 3, + "target": { + "suspicious_stew": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cookie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cookie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "dandelion": 1 + }, + "2": { + "cocoa_beans": 1 + } + } + }, + "multiagent_cooking_2_1_mushroom_stew_1_suspicious_stew": { + "conversation": "Let's work together to make mushroom_stew, suspicious_stew.", + "agent_count": 3, + "target": { + "mushroom_stew": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "bowl": 1 + }, + "2": { + "bowl": 0, + "dandelion": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_chicken_1_suspicious_stew": { + "conversation": "Let's work together to make suspicious_stew, cooked_chicken.", + "agent_count": 3, + "target": { + "suspicious_stew": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "dandelion": 1 + }, + "2": { + "coal": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_rabbit_1_golden_carrot": { + "conversation": "Let's work together to make golden_carrot, cooked_rabbit.", + "agent_count": 3, + "target": { + "golden_carrot": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_rabbit. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_rabbit. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 3 + }, + "1": { + "gold_ingot": 3 + }, + "2": { + "gold_ingot": 2, + "coal": 1 + } + } + }, + "multiagent_cooking_2_1_golden_carrot_1_mushroom_stew": { + "conversation": "Let's work together to make golden_carrot, mushroom_stew.", + "agent_count": 3, + "target": { + "golden_carrot": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 3 + }, + "1": { + "gold_ingot": 3 + }, + "2": { + "gold_ingot": 2, + "bowl": 1 + } + } + }, + "multiagent_cooking_2_1_golden_carrot_1_pumpkin_pie": { + "conversation": "Let's work together to make pumpkin_pie, golden_carrot.", + "agent_count": 3, + "target": { + "pumpkin_pie": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "initial_inventory": { + "0": { + "egg": 1, + "gold_ingot": 3 + }, + "1": { + "gold_ingot": 3 + }, + "2": { + "gold_ingot": 2 + } + } + }, + "multiagent_cooking_2_1_cooked_porkchop_1_golden_carrot": { + "conversation": "Let's work together to make cooked_porkchop, golden_carrot.", + "agent_count": 3, + "target": { + "cooked_porkchop": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "initial_inventory": { + "0": { + "coal": 1, + "gold_ingot": 3 + }, + "1": { + "gold_ingot": 3 + }, + "2": { + "gold_ingot": 2 + } + } + }, + "multiagent_cooking_2_1_cooked_mutton_1_suspicious_stew": { + "conversation": "Let's work together to make cooked_mutton, suspicious_stew.", + "agent_count": 3, + "target": { + "cooked_mutton": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 suspicious_stew. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 suspicious_stew. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + }, + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "bowl": 1 + }, + "2": { + "dandelion": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_porkchop_1_suspicious_stew": { + "conversation": "Let's work together to make suspicious_stew, cooked_porkchop.", + "agent_count": 3, + "target": { + "suspicious_stew": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "dandelion": 1 + }, + "2": { + "coal": 1 + } + } + }, + "multiagent_cooking_2_1_beetroot_soup_1_suspicious_stew": { + "conversation": "Let's work together to make suspicious_stew, beetroot_soup.", + "agent_count": 3, + "target": { + "suspicious_stew": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "bowl": 1 + }, + "2": { + "bowl": 0, + "dandelion": 1 + } + } + }, + "multiagent_cooking_2_1_golden_carrot_1_suspicious_stew": { + "conversation": "Let's work together to make golden_carrot, suspicious_stew.", + "agent_count": 3, + "target": { + "golden_carrot": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 3, + "dandelion": 1 + }, + "1": { + "gold_ingot": 3 + }, + "2": { + "gold_ingot": 2, + "bowl": 1 + } + } + }, + "multiagent_cooking_2_1_pumpkin_pie_1_suspicious_stew": { + "conversation": "Let's work together to make suspicious_stew, pumpkin_pie.", + "agent_count": 3, + "target": { + "suspicious_stew": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "dandelion": 1 + }, + "2": { + "egg": 1 + } + } + }, + "multiagent_cooking_2_1_beetroot_soup_1_golden_carrot": { + "conversation": "Let's work together to make beetroot_soup, golden_carrot.", + "agent_count": 3, + "target": { + "beetroot_soup": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 golden_carrot. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 golden_carrot. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "initial_inventory": { + "0": { + "bowl": 1, + "gold_ingot": 3 + }, + "1": { + "gold_ingot": 3 + }, + "2": { + "gold_ingot": 2 + } + } + }, + "multiagent_cooking_2_1_cooked_rabbit_1_suspicious_stew": { + "conversation": "Let's work together to make cooked_rabbit, suspicious_stew.", + "agent_count": 3, + "target": { + "cooked_rabbit": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + }, + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "bowl": 1 + }, + "2": { + "dandelion": 1 + } + } + } +} \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_train_2_items/4_agent.json b/tasks/cooking_tasks/require_collab_train_2_items/4_agent.json new file mode 100644 index 0000000..bebbab1 --- /dev/null +++ b/tasks/cooking_tasks/require_collab_train_2_items/4_agent.json @@ -0,0 +1,386 @@ +{ + "multiagent_cooking_2_1_cooked_chicken_1_golden_carrot": { + "conversation": "Let's work together to make cooked_chicken, golden_carrot.", + "agent_count": 4, + "target": { + "cooked_chicken": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "initial_inventory": { + "0": { + "coal": 1, + "gold_ingot": 2 + }, + "1": { + "gold_ingot": 2 + }, + "2": { + "gold_ingot": 2 + }, + "3": { + "gold_ingot": 2 + } + } + }, + "multiagent_cooking_2_1_cooked_mutton_1_golden_carrot": { + "conversation": "Let's work together to make golden_carrot, cooked_mutton.", + "agent_count": 4, + "target": { + "golden_carrot": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 2, + "coal": 1 + }, + "1": { + "gold_ingot": 2 + }, + "2": { + "gold_ingot": 2 + }, + "3": { + "gold_ingot": 2 + } + } + }, + "multiagent_cooking_2_1_cookie_1_golden_carrot": { + "conversation": "Let's work together to make golden_carrot, cookie.", + "agent_count": 4, + "target": { + "golden_carrot": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cookie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cookie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 2, + "cocoa_beans": 1 + }, + "1": { + "gold_ingot": 2 + }, + "2": { + "gold_ingot": 2 + }, + "3": { + "gold_ingot": 2 + } + } + }, + "multiagent_cooking_2_1_cooked_rabbit_1_golden_carrot": { + "conversation": "Let's work together to make golden_carrot, cooked_rabbit.", + "agent_count": 4, + "target": { + "golden_carrot": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_rabbit. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_rabbit. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 2, + "coal": 1 + }, + "1": { + "gold_ingot": 2 + }, + "2": { + "gold_ingot": 2 + }, + "3": { + "gold_ingot": 2 + } + } + }, + "multiagent_cooking_2_1_golden_carrot_1_mushroom_stew": { + "conversation": "Let's work together to make golden_carrot, mushroom_stew.", + "agent_count": 4, + "target": { + "golden_carrot": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 2, + "bowl": 1 + }, + "1": { + "gold_ingot": 2 + }, + "2": { + "gold_ingot": 2 + }, + "3": { + "gold_ingot": 2 + } + } + }, + "multiagent_cooking_2_1_golden_carrot_1_pumpkin_pie": { + "conversation": "Let's work together to make pumpkin_pie, golden_carrot.", + "agent_count": 4, + "target": { + "pumpkin_pie": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "initial_inventory": { + "0": { + "egg": 1, + "gold_ingot": 2 + }, + "1": { + "gold_ingot": 2 + }, + "2": { + "gold_ingot": 2 + }, + "3": { + "gold_ingot": 2 + } + } + }, + "multiagent_cooking_2_1_cooked_porkchop_1_golden_carrot": { + "conversation": "Let's work together to make cooked_porkchop, golden_carrot.", + "agent_count": 4, + "target": { + "cooked_porkchop": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "initial_inventory": { + "0": { + "coal": 1, + "gold_ingot": 2 + }, + "1": { + "gold_ingot": 2 + }, + "2": { + "gold_ingot": 2 + }, + "3": { + "gold_ingot": 2 + } + } + }, + "multiagent_cooking_2_1_golden_carrot_1_suspicious_stew": { + "conversation": "Let's work together to make golden_carrot, suspicious_stew.", + "agent_count": 4, + "target": { + "golden_carrot": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 2, + "bowl": 1 + }, + "1": { + "gold_ingot": 2, + "dandelion": 1 + }, + "2": { + "gold_ingot": 2 + }, + "3": { + "gold_ingot": 2 + } + } + }, + "multiagent_cooking_2_1_beetroot_soup_1_golden_carrot": { + "conversation": "Let's work together to make beetroot_soup, golden_carrot.", + "agent_count": 4, + "target": { + "beetroot_soup": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 golden_carrot. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 golden_carrot. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "initial_inventory": { + "0": { + "bowl": 1, + "gold_ingot": 2 + }, + "1": { + "gold_ingot": 2 + }, + "2": { + "gold_ingot": 2 + }, + "3": { + "gold_ingot": 2 + } + } + } +} \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_train_2_items/5_agent.json b/tasks/cooking_tasks/require_collab_train_2_items/5_agent.json new file mode 100644 index 0000000..426c5d1 --- /dev/null +++ b/tasks/cooking_tasks/require_collab_train_2_items/5_agent.json @@ -0,0 +1,413 @@ +{ + "multiagent_cooking_2_1_cooked_chicken_1_golden_carrot": { + "conversation": "Let's work together to make cooked_chicken, golden_carrot.", + "agent_count": 5, + "target": { + "cooked_chicken": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "initial_inventory": { + "0": { + "coal": 1, + "gold_ingot": 2 + }, + "1": { + "gold_ingot": 2 + }, + "2": { + "gold_ingot": 2 + }, + "3": { + "gold_ingot": 1 + }, + "4": { + "gold_ingot": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_mutton_1_golden_carrot": { + "conversation": "Let's work together to make golden_carrot, cooked_mutton.", + "agent_count": 5, + "target": { + "golden_carrot": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 2 + }, + "1": { + "gold_ingot": 2 + }, + "2": { + "gold_ingot": 2 + }, + "3": { + "gold_ingot": 1, + "coal": 1 + }, + "4": { + "gold_ingot": 1 + } + } + }, + "multiagent_cooking_2_1_cookie_1_golden_carrot": { + "conversation": "Let's work together to make golden_carrot, cookie.", + "agent_count": 5, + "target": { + "golden_carrot": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cookie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cookie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 2 + }, + "1": { + "gold_ingot": 2 + }, + "2": { + "gold_ingot": 2 + }, + "3": { + "gold_ingot": 1, + "cocoa_beans": 1 + }, + "4": { + "gold_ingot": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_rabbit_1_golden_carrot": { + "conversation": "Let's work together to make golden_carrot, cooked_rabbit.", + "agent_count": 5, + "target": { + "golden_carrot": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_rabbit. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_rabbit. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 2 + }, + "1": { + "gold_ingot": 2 + }, + "2": { + "gold_ingot": 2 + }, + "3": { + "gold_ingot": 1, + "coal": 1 + }, + "4": { + "gold_ingot": 1 + } + } + }, + "multiagent_cooking_2_1_golden_carrot_1_mushroom_stew": { + "conversation": "Let's work together to make golden_carrot, mushroom_stew.", + "agent_count": 5, + "target": { + "golden_carrot": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 2 + }, + "1": { + "gold_ingot": 2 + }, + "2": { + "gold_ingot": 2 + }, + "3": { + "gold_ingot": 1, + "bowl": 1 + }, + "4": { + "gold_ingot": 1 + } + } + }, + "multiagent_cooking_2_1_golden_carrot_1_pumpkin_pie": { + "conversation": "Let's work together to make pumpkin_pie, golden_carrot.", + "agent_count": 5, + "target": { + "pumpkin_pie": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "initial_inventory": { + "0": { + "egg": 1, + "gold_ingot": 2 + }, + "1": { + "gold_ingot": 2 + }, + "2": { + "gold_ingot": 2 + }, + "3": { + "gold_ingot": 1 + }, + "4": { + "gold_ingot": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_porkchop_1_golden_carrot": { + "conversation": "Let's work together to make cooked_porkchop, golden_carrot.", + "agent_count": 5, + "target": { + "cooked_porkchop": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "initial_inventory": { + "0": { + "coal": 1, + "gold_ingot": 2 + }, + "1": { + "gold_ingot": 2 + }, + "2": { + "gold_ingot": 2 + }, + "3": { + "gold_ingot": 1 + }, + "4": { + "gold_ingot": 1 + } + } + }, + "multiagent_cooking_2_1_golden_carrot_1_suspicious_stew": { + "conversation": "Let's work together to make golden_carrot, suspicious_stew.", + "agent_count": 5, + "target": { + "golden_carrot": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 2 + }, + "1": { + "gold_ingot": 2 + }, + "2": { + "gold_ingot": 2 + }, + "3": { + "gold_ingot": 1, + "bowl": 1 + }, + "4": { + "gold_ingot": 1, + "dandelion": 1 + } + } + }, + "multiagent_cooking_2_1_beetroot_soup_1_golden_carrot": { + "conversation": "Let's work together to make beetroot_soup, golden_carrot.", + "agent_count": 5, + "target": { + "beetroot_soup": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 golden_carrot. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 golden_carrot. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "initial_inventory": { + "0": { + "bowl": 1, + "gold_ingot": 2 + }, + "1": { + "gold_ingot": 2 + }, + "2": { + "gold_ingot": 2 + }, + "3": { + "gold_ingot": 1 + }, + "4": { + "gold_ingot": 1 + } + } + } +} \ No newline at end of file From e049abb708d37158ed9debb3dd42aa5175b8420a Mon Sep 17 00:00:00 2001 From: Isadora White Date: Sat, 10 May 2025 18:17:06 -0700 Subject: [PATCH 038/101] making more test tasks for cooking --- ...ake_collaboration_required_cooking_task.py | 34 +- .../2_agent_block_recipe.json | 1000 +++++++++++++++ .../2_agent_hells_kitchen.json | 1116 +++++++++++++++++ 3 files changed, 2134 insertions(+), 16 deletions(-) create mode 100644 tasks/cooking_tasks/require_collab_train_2_items/2_agent_block_recipe.json create mode 100644 tasks/cooking_tasks/require_collab_train_2_items/2_agent_hells_kitchen.json diff --git a/tasks/cooking_tasks/make_collaboration_required_cooking_task.py b/tasks/cooking_tasks/make_collaboration_required_cooking_task.py index 1f570aa..5d9189e 100644 --- a/tasks/cooking_tasks/make_collaboration_required_cooking_task.py +++ b/tasks/cooking_tasks/make_collaboration_required_cooking_task.py @@ -257,7 +257,7 @@ def count_items_in_inventory(inventory): -def reconfigure_tasks(task_path, new_task_path, num_agents=None): +def reconfigure_tasks(task_path, new_task_path, num_agents=None, hells_kitchen=False): with open(task_path, 'r') as f: tasks = json.load(f) task_ids = tasks.keys() @@ -313,17 +313,18 @@ def reconfigure_tasks(task_path, new_task_path, num_agents=None): task["initial_inventory"] = initial_inventory print(inventory) print(initial_inventory) - goals = task.get("goal", {}) - new_goals = {} - blocked_access = task.get("blocked_access_to_recipe", []) - print(blocked_access) - for key, goal in goals.items(): - initial_goal = goal.split("\n")[0] - if str(key) not in blocked_access: - for item, recipe in new_recipes.items(): - initial_goal += f"Recipe for {item}:\n{recipe}" - new_goals[key] = initial_goal - task["goal"] = new_goals + if not hells_kitchen: + goals = task.get("goal", {}) + new_goals = {} + blocked_access = task.get("blocked_access_to_recipe", []) + print(blocked_access) + for key, goal in goals.items(): + initial_goal = goal.split("\n")[0] + if str(key) not in blocked_access: + for item, recipe in new_recipes.items(): + initial_goal += f"Recipe for {item}:\n{recipe}" + new_goals[key] = initial_goal + task["goal"] = new_goals new_tasks[task_id] = task # check each of the recipes and replace with the new recipe @@ -342,10 +343,11 @@ def reconfigure_tasks(task_path, new_task_path, num_agents=None): # reconfigure_tasks("mindcraft/tasks/cooking_tasks/test_tasks/2_agent_cooking_test_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_test_2_items/3_agent.json", 3) # reconfigure_tasks("mindcraft/tasks/cooking_tasks/test_tasks/2_agent_cooking_test_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_test_2_items/4_agent.json", 4) # reconfigure_tasks("mindcraft/tasks/cooking_tasks/test_tasks/2_agent_cooking_test_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_test_2_items/5_agent.json", 5) -reconfigure_tasks("mindcraft/tasks/cooking_tasks/train_tasks/2_agent_cooking_train_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_train_2_items/2_agent.json", 2) -reconfigure_tasks("mindcraft/tasks/cooking_tasks/train_tasks/2_agent_cooking_train_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_train_2_items/3_agent.json", 3) -reconfigure_tasks("mindcraft/tasks/cooking_tasks/train_tasks/2_agent_cooking_train_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_train_2_items/4_agent.json", 4) -reconfigure_tasks("mindcraft/tasks/cooking_tasks/train_tasks/2_agent_cooking_train_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_train_2_items/5_agent.json", 5) +reconfigure_tasks("mindcraft/tasks/cooking_tasks/test_tasks/test_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_train_2_items/2_agent_block_recipe.json", 2) +reconfigure_tasks("mindcraft/tasks/cooking_tasks/test_tasks/hells_kitchen_test_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_train_2_items/2_agent_hells_kitchen.json", 2, True) +# reconfigure_tasks("mindcraft/tasks/cooking_tasks/train_tasks/2_agent_cooking_train_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_train_2_items/3_agent.json", 3) +# reconfigure_tasks("mindcraft/tasks/cooking_tasks/train_tasks/2_agent_cooking_train_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_train_2_items/4_agent.json", 4) +# reconfigure_tasks("mindcraft/tasks/cooking_tasks/train_tasks/2_agent_cooking_train_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_train_2_items/5_agent.json", 5) # reconfigure_tasks("mindcraft/tasks/cooking_tasks/equal_load_test_tasks/3_agent.json", "mindcraft/tasks/cooking_tasks/require_collab_test/3_agent.json") # reconfigure_tasks("mindcraft/tasks/cooking_tasks/equal_load_test_tasks/4_agent.json", "mindcraft/tasks/cooking_tasks/require_collab_test/4_agent.json") # reconfigure_tasks("mindcraft/tasks/cooking_tasks/equal_load_test_tasks/5_agent.json", "mindcraft/tasks/cooking_tasks/require_collab_test/5_agent.json") diff --git a/tasks/cooking_tasks/require_collab_train_2_items/2_agent_block_recipe.json b/tasks/cooking_tasks/require_collab_train_2_items/2_agent_block_recipe.json new file mode 100644 index 0000000..a97ce8d --- /dev/null +++ b/tasks/cooking_tasks/require_collab_train_2_items/2_agent_block_recipe.json @@ -0,0 +1,1000 @@ +{ + "multiagent_cooking_1_cake_1_golden_apple": { + "conversation": "Let's collaborate to make cake and golden_apple.", + "agent_count": 2, + "target": { + "cake": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 golden_apple. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "1": "Collaborate with agents around you to make 1 cake, 1 golden_apple. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 7, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "milk_bucket": 2, + "gold_ingot": 4, + "apple": 1 + }, + "1": { + "milk_bucket": 1, + "egg": 1, + "gold_ingot": 4 + } + } + }, + "multiagent_cooking_1_cake_1_cooked_beef_blocked_access_0_1": { + "conversation": "Let's collaborate to make cake and cooked_beef.", + "agent_count": 2, + "target": { + "cake": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 cooked_beef. ", + "1": "Collaborate with agents around you to make 1 cake, 1 cooked_beef. " + }, + "difficulty_metrics": { + "total_recipe_steps": 7, + "blocked_agents_count": 2, + "unique_target_items": 2, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "milk_bucket": 2, + "coal": 1 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + } + }, + "multiagent_cooking_1_cake_1_golden_apple_blocked_access_0_1": { + "conversation": "Let's collaborate to make cake and golden_apple.", + "agent_count": 2, + "target": { + "cake": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 golden_apple. ", + "1": "Collaborate with agents around you to make 1 cake, 1 golden_apple. " + }, + "difficulty_metrics": { + "total_recipe_steps": 7, + "blocked_agents_count": 2, + "unique_target_items": 2, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "milk_bucket": 2, + "gold_ingot": 4, + "apple": 1 + }, + "1": { + "milk_bucket": 1, + "egg": 1, + "gold_ingot": 4 + } + } + }, + "multiagent_cooking_1_cake_1_cooked_beef_blocked_access_0": { + "conversation": "Let's collaborate to make cooked_beef and cake.", + "agent_count": 2, + "target": { + "cooked_beef": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [ + "0" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 cake. ", + "1": "Collaborate with agents around you to make 1 cooked_beef, 1 cake. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 7, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1, + "milk_bucket": 2 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + } + }, + "multiagent_cooking_1_baked_potato_1_cake": { + "conversation": "Let's collaborate to make baked_potato and cake.", + "agent_count": 2, + "target": { + "baked_potato": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 7, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1, + "milk_bucket": 2 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + } + }, + "multiagent_cooking_1_baked_potato_1_cooked_beef_blocked_access_0_1": { + "conversation": "Let's collaborate to make baked_potato and cooked_beef.", + "agent_count": 2, + "target": { + "baked_potato": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 cooked_beef. ", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 cooked_beef. " + }, + "difficulty_metrics": { + "total_recipe_steps": 4, + "blocked_agents_count": 2, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_1_bread_1_golden_apple": { + "conversation": "Let's collaborate to make bread and golden_apple.", + "agent_count": 2, + "target": { + "bread": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 golden_apple. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "1": "Collaborate with agents around you to make 1 bread, 1 golden_apple. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 4, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 3, + "difficulty_category": "easy" + }, + "difficulty": "easy", + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1 + }, + "1": { + "gold_ingot": 4 + } + } + }, + "multiagent_cooking_1_baked_potato_1_cooked_beef": { + "conversation": "Let's collaborate to make baked_potato and cooked_beef.", + "agent_count": 2, + "target": { + "baked_potato": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 cooked_beef. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 cooked_beef. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 4, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 3, + "difficulty_category": "easy" + }, + "difficulty": "easy", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_1_baked_potato_1_cake_blocked_access_0_1": { + "conversation": "Let's collaborate to make cake and baked_potato.", + "agent_count": 2, + "target": { + "cake": 1, + "baked_potato": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 baked_potato. ", + "1": "Collaborate with agents around you to make 1 cake, 1 baked_potato. " + }, + "difficulty_metrics": { + "total_recipe_steps": 7, + "blocked_agents_count": 2, + "unique_target_items": 2, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "milk_bucket": 2, + "coal": 1 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + } + }, + "multiagent_cooking_1_cooked_beef_1_golden_apple_blocked_access_0_1": { + "conversation": "Let's collaborate to make cooked_beef and golden_apple.", + "agent_count": 2, + "target": { + "cooked_beef": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple. ", + "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple. " + }, + "difficulty_metrics": { + "total_recipe_steps": 4, + "blocked_agents_count": 2, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1, + "gold_ingot": 4 + }, + "1": { + "gold_ingot": 4, + "apple": 1 + } + } + }, + "multiagent_cooking_1_golden_apple_1_rabbit_stew": { + "conversation": "Let's collaborate to make golden_apple and rabbit_stew.", + "agent_count": 2, + "target": { + "golden_apple": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 8, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1 + }, + "1": { + "gold_ingot": 4, + "bowl": 1 + } + } + }, + "multiagent_cooking_1_bread_1_golden_apple_blocked_access_1": { + "conversation": "Let's collaborate to make golden_apple and bread.", + "agent_count": 2, + "target": { + "golden_apple": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [ + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 bread. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 bread. " + }, + "difficulty_metrics": { + "total_recipe_steps": 4, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1 + }, + "1": { + "gold_ingot": 4 + } + } + }, + "multiagent_cooking_1_cooked_beef_1_rabbit_stew": { + "conversation": "Let's collaborate to make rabbit_stew and cooked_beef.", + "agent_count": 2, + "target": { + "rabbit_stew": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 cooked_beef. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 cooked_beef. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 8, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_1_baked_potato_1_cake_blocked_access_0": { + "conversation": "Let's collaborate to make baked_potato and cake.", + "agent_count": 2, + "target": { + "baked_potato": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [ + "0" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 cake. ", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 7, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1, + "milk_bucket": 2 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + } + }, + "multiagent_cooking_1_cake_1_golden_apple_blocked_access_0": { + "conversation": "Let's collaborate to make golden_apple and cake.", + "agent_count": 2, + "target": { + "golden_apple": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [ + "0" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 cake. ", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 cake. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 7, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1, + "milk_bucket": 2 + }, + "1": { + "gold_ingot": 4, + "milk_bucket": 1, + "egg": 1 + } + } + }, + "multiagent_cooking_1_cake_1_golden_apple_blocked_access_1": { + "conversation": "Let's collaborate to make golden_apple and cake.", + "agent_count": 2, + "target": { + "golden_apple": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [ + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 cake. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 cake. " + }, + "difficulty_metrics": { + "total_recipe_steps": 7, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1, + "milk_bucket": 2 + }, + "1": { + "gold_ingot": 4, + "milk_bucket": 1, + "egg": 1 + } + } + }, + "multiagent_cooking_1_baked_potato_1_golden_apple": { + "conversation": "Let's collaborate to make baked_potato and golden_apple.", + "agent_count": 2, + "target": { + "baked_potato": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 4, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 3, + "difficulty_category": "easy" + }, + "difficulty": "easy", + "initial_inventory": { + "0": { + "coal": 1, + "gold_ingot": 4 + }, + "1": { + "gold_ingot": 4, + "apple": 1 + } + } + }, + "multiagent_cooking_1_cake_blocked_access_0": { + "conversation": "Let's work together to make cake.", + "agent_count": 2, + "target": { + "cake": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [ + "0" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cake. ", + "1": "Collaborate with agents around you to make 1 cake. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 5, + "blocked_agents_count": 1, + "unique_target_items": 1, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "milk_bucket": 2 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + } + }, + "multiagent_cooking_1_golden_apple": { + "conversation": "Let's work together to make golden_apple.", + "agent_count": 2, + "target": { + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "1": "Collaborate with agents around you to make 1 golden_apple. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 2, + "blocked_agents_count": 0, + "unique_target_items": 1, + "overall_difficulty_score": 2, + "difficulty_category": "easy" + }, + "difficulty": "easy", + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1 + }, + "1": { + "gold_ingot": 4 + } + } + }, + "multiagent_cooking_1_baked_potato_1_rabbit_stew_blocked_access_1": { + "conversation": "Let's collaborate to make rabbit_stew and baked_potato.", + "agent_count": 2, + "target": { + "rabbit_stew": 1, + "baked_potato": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [ + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", + "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. " + }, + "difficulty_metrics": { + "total_recipe_steps": 8, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_1_baked_potato_1_rabbit_stew": { + "conversation": "Let's collaborate to make baked_potato and rabbit_stew.", + "agent_count": 2, + "target": { + "baked_potato": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 rabbit_stew. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 rabbit_stew. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 8, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "bowl": 1 + } + } + } +} \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_train_2_items/2_agent_hells_kitchen.json b/tasks/cooking_tasks/require_collab_train_2_items/2_agent_hells_kitchen.json new file mode 100644 index 0000000..639ce9e --- /dev/null +++ b/tasks/cooking_tasks/require_collab_train_2_items/2_agent_hells_kitchen.json @@ -0,0 +1,1116 @@ +{ + "multiagent_cooking_baked_potato_cake_hells_kitchen": { + "conversation": "We need to make baked_potato and cake together. You are supposed to make cake and I am supposed to make baked_potato, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "baked_potato", + "cake" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make baked_potato, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 5, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1, + "milk_bucket": 2 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + } + }, + "multiagent_cooking_cooked_mutton_mushroom_stew_hells_kitchen": { + "conversation": "We need to make cooked_mutton and mushroom_stew together. You are supposed to make mushroom_stew and I am supposed to make cooked_mutton, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_mutton", + "mushroom_stew" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_mutton, but you don't have the recipe for it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make mushroom_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 5, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_cooked_mutton_cake_hells_kitchen": { + "conversation": "We need to make cooked_mutton and cake together. You are supposed to make cake and I am supposed to make cooked_mutton, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_mutton", + "cake" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_mutton, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 5, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1, + "milk_bucket": 2 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + } + }, + "multiagent_cooking_mushroom_stew_baked_potato_hells_kitchen": { + "conversation": "We need to make mushroom_stew and baked_potato together. You are supposed to make baked_potato and I am supposed to make mushroom_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "mushroom_stew", + "baked_potato" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make mushroom_stew, but you don't have the recipe for it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make baked_potato, but you don't have the recipe for it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 5, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_golden_carrot_cooked_mutton_hells_kitchen": { + "conversation": "We need to make golden_carrot and cooked_mutton together. You are supposed to make cooked_mutton and I am supposed to make golden_carrot, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "golden_carrot", + "cooked_mutton" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_mutton, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 5, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "gold_ingot": 4, + "coal": 1 + }, + "1": { + "gold_ingot": 4 + } + } + }, + "multiagent_cooking_baked_potato_mushroom_stew_hells_kitchen": { + "conversation": "We need to make baked_potato and mushroom_stew together. You are supposed to make mushroom_stew and I am supposed to make baked_potato, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "baked_potato", + "mushroom_stew" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make baked_potato, but you don't have the recipe for it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make mushroom_stew, but you don't have the recipe for it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 5, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_cake_bread_hells_kitchen": { + "conversation": "We need to make cake and bread together. You are supposed to make bread and I am supposed to make cake, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cake", + "bread" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make bread. You have their recipe:\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make bread, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 5, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "milk_bucket": 2 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + } + }, + "multiagent_cooking_bread_cake_hells_kitchen": { + "conversation": "We need to make bread and cake together. You are supposed to make cake and I am supposed to make bread, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "bread", + "cake" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make bread, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make bread. You have their recipe:\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 5, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "milk_bucket": 2 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + } + }, + "multiagent_cooking_mushroom_stew_cooked_mutton_hells_kitchen": { + "conversation": "We need to make mushroom_stew and cooked_mutton together. You are supposed to make cooked_mutton and I am supposed to make mushroom_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "mushroom_stew", + "cooked_mutton" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make mushroom_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_mutton, but you don't have the recipe for it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 5, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_mushroom_stew_cake_hells_kitchen": { + "conversation": "We need to make mushroom_stew and cake together. You are supposed to make cake and I am supposed to make mushroom_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "mushroom_stew", + "cake" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make mushroom_stew, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 8, + "max_steps_per_recipe": 5, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1, + "milk_bucket": 2 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + } + }, + "multiagent_cooking_mushroom_stew_golden_carrot_hells_kitchen": { + "conversation": "We need to make mushroom_stew and golden_carrot together. You are supposed to make golden_carrot and I am supposed to make mushroom_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "mushroom_stew", + "golden_carrot" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make mushroom_stew, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 6, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1, + "gold_ingot": 4 + }, + "1": { + "gold_ingot": 4 + } + } + }, + "multiagent_cooking_golden_carrot_cake_hells_kitchen": { + "conversation": "We need to make golden_carrot and cake together. You are supposed to make cake and I am supposed to make golden_carrot, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "golden_carrot", + "cake" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 8, + "max_steps_per_recipe": 5, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "gold_ingot": 4, + "milk_bucket": 2 + }, + "1": { + "gold_ingot": 4, + "milk_bucket": 1, + "egg": 1 + } + } + }, + "multiagent_cooking_golden_carrot_bread_hells_kitchen": { + "conversation": "We need to make golden_carrot and bread together. You are supposed to make bread and I am supposed to make golden_carrot, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "golden_carrot", + "bread" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make bread. You have their recipe:\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make bread, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 5, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "gold_ingot": 4 + }, + "1": { + "gold_ingot": 4 + } + } + }, + "multiagent_cooking_baked_potato_cooked_mutton_hells_kitchen": { + "conversation": "We need to make baked_potato and cooked_mutton together. You are supposed to make cooked_mutton and I am supposed to make baked_potato, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "baked_potato", + "cooked_mutton" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make baked_potato, but you don't have the recipe for it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_mutton, but you don't have the recipe for it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 4, + "max_steps_per_recipe": 2, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_cake_mushroom_stew_hells_kitchen": { + "conversation": "We need to make cake and mushroom_stew together. You are supposed to make mushroom_stew and I am supposed to make cake, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cake", + "mushroom_stew" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make mushroom_stew, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 8, + "max_steps_per_recipe": 5, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "milk_bucket": 2, + "bowl": 1 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + } + }, + "multiagent_cooking_cake_cooked_mutton_hells_kitchen": { + "conversation": "We need to make cake and cooked_mutton together. You are supposed to make cooked_mutton and I am supposed to make cake, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cake", + "cooked_mutton" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_mutton, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 5, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "milk_bucket": 2, + "coal": 1 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + } + }, + "multiagent_cooking_golden_carrot_baked_potato_hells_kitchen": { + "conversation": "We need to make golden_carrot and baked_potato together. You are supposed to make baked_potato and I am supposed to make golden_carrot, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "golden_carrot", + "baked_potato" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make baked_potato, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 5, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "gold_ingot": 4, + "coal": 1 + }, + "1": { + "gold_ingot": 4 + } + } + }, + "multiagent_cooking_cake_golden_carrot_hells_kitchen": { + "conversation": "We need to make cake and golden_carrot together. You are supposed to make golden_carrot and I am supposed to make cake, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cake", + "golden_carrot" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 8, + "max_steps_per_recipe": 5, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "milk_bucket": 2, + "gold_ingot": 4 + }, + "1": { + "milk_bucket": 1, + "egg": 1, + "gold_ingot": 4 + } + } + }, + "multiagent_cooking_bread_golden_carrot_hells_kitchen": { + "conversation": "We need to make bread and golden_carrot together. You are supposed to make golden_carrot and I am supposed to make bread, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "bread", + "golden_carrot" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make bread, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make bread. You have their recipe:\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 5, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "gold_ingot": 4 + }, + "1": { + "gold_ingot": 4 + } + } + }, + "multiagent_cooking_golden_carrot_mushroom_stew_hells_kitchen": { + "conversation": "We need to make golden_carrot and mushroom_stew together. You are supposed to make mushroom_stew and I am supposed to make golden_carrot, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "golden_carrot", + "mushroom_stew" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make mushroom_stew, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 6, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "gold_ingot": 4, + "bowl": 1 + }, + "1": { + "gold_ingot": 4 + } + } + }, + "multiagent_cooking_cooked_mutton_baked_potato_hells_kitchen": { + "conversation": "We need to make cooked_mutton and baked_potato together. You are supposed to make baked_potato and I am supposed to make cooked_mutton, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_mutton", + "baked_potato" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_mutton, but you don't have the recipe for it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make baked_potato, but you don't have the recipe for it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 4, + "max_steps_per_recipe": 2, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_cooked_mutton_golden_carrot_hells_kitchen": { + "conversation": "We need to make cooked_mutton and golden_carrot together. You are supposed to make golden_carrot and I am supposed to make cooked_mutton, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_mutton", + "golden_carrot" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_mutton, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 5, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1, + "gold_ingot": 4 + }, + "1": { + "gold_ingot": 4 + } + } + }, + "multiagent_cooking_baked_potato_golden_carrot_hells_kitchen": { + "conversation": "We need to make baked_potato and golden_carrot together. You are supposed to make golden_carrot and I am supposed to make baked_potato, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "baked_potato", + "golden_carrot" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make baked_potato, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 5, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1, + "gold_ingot": 4 + }, + "1": { + "gold_ingot": 4 + } + } + }, + "multiagent_cooking_cake_baked_potato_hells_kitchen": { + "conversation": "We need to make cake and baked_potato together. You are supposed to make baked_potato and I am supposed to make cake, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cake", + "baked_potato" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make baked_potato, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 5, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "milk_bucket": 2, + "coal": 1 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + } + } +} \ No newline at end of file From a42dc3342df187b69e4991a1ee58fcb1a65fe634 Mon Sep 17 00:00:00 2001 From: Isadora White Date: Sat, 10 May 2025 18:38:20 -0700 Subject: [PATCH 039/101] hells kitchen and blocked access tasks --- ...ake_collaboration_required_cooking_task.py | 7 +- .../2_agent_block_recipe.json | 1000 ++++ .../2_agent_hells_kitchen.json | 1116 ++++ .../2_agent_block_recipe.json | 3116 ++++++++--- .../2_agent_hells_kitchen.json | 4578 ++++++++++++++--- 5 files changed, 8318 insertions(+), 1499 deletions(-) create mode 100644 tasks/cooking_tasks/require_collab_test_2_items/2_agent_block_recipe.json create mode 100644 tasks/cooking_tasks/require_collab_test_2_items/2_agent_hells_kitchen.json diff --git a/tasks/cooking_tasks/make_collaboration_required_cooking_task.py b/tasks/cooking_tasks/make_collaboration_required_cooking_task.py index 5d9189e..e4fb22d 100644 --- a/tasks/cooking_tasks/make_collaboration_required_cooking_task.py +++ b/tasks/cooking_tasks/make_collaboration_required_cooking_task.py @@ -343,8 +343,11 @@ def reconfigure_tasks(task_path, new_task_path, num_agents=None, hells_kitchen=F # reconfigure_tasks("mindcraft/tasks/cooking_tasks/test_tasks/2_agent_cooking_test_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_test_2_items/3_agent.json", 3) # reconfigure_tasks("mindcraft/tasks/cooking_tasks/test_tasks/2_agent_cooking_test_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_test_2_items/4_agent.json", 4) # reconfigure_tasks("mindcraft/tasks/cooking_tasks/test_tasks/2_agent_cooking_test_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_test_2_items/5_agent.json", 5) -reconfigure_tasks("mindcraft/tasks/cooking_tasks/test_tasks/test_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_train_2_items/2_agent_block_recipe.json", 2) -reconfigure_tasks("mindcraft/tasks/cooking_tasks/test_tasks/hells_kitchen_test_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_train_2_items/2_agent_hells_kitchen.json", 2, True) +reconfigure_tasks("mindcraft/tasks/cooking_tasks/test_tasks/test_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_test_2_items/2_agent_block_recipe.json", 2) +reconfigure_tasks("mindcraft/tasks/cooking_tasks/test_tasks/hells_kitchen_test_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_test_2_items/2_agent_hells_kitchen.json", 2, True) +reconfigure_tasks("mindcraft/tasks/cooking_tasks/train_tasks/train_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_train_2_items/2_agent_block_recipe.json", 2, False) +reconfigure_tasks("mindcraft/tasks/cooking_tasks/train_tasks/hells_kitchen_train_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_train_2_items/2_agent_hells_kitchen.json", 2, True) + # reconfigure_tasks("mindcraft/tasks/cooking_tasks/train_tasks/2_agent_cooking_train_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_train_2_items/3_agent.json", 3) # reconfigure_tasks("mindcraft/tasks/cooking_tasks/train_tasks/2_agent_cooking_train_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_train_2_items/4_agent.json", 4) # reconfigure_tasks("mindcraft/tasks/cooking_tasks/train_tasks/2_agent_cooking_train_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_train_2_items/5_agent.json", 5) diff --git a/tasks/cooking_tasks/require_collab_test_2_items/2_agent_block_recipe.json b/tasks/cooking_tasks/require_collab_test_2_items/2_agent_block_recipe.json new file mode 100644 index 0000000..a97ce8d --- /dev/null +++ b/tasks/cooking_tasks/require_collab_test_2_items/2_agent_block_recipe.json @@ -0,0 +1,1000 @@ +{ + "multiagent_cooking_1_cake_1_golden_apple": { + "conversation": "Let's collaborate to make cake and golden_apple.", + "agent_count": 2, + "target": { + "cake": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 golden_apple. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "1": "Collaborate with agents around you to make 1 cake, 1 golden_apple. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 7, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "milk_bucket": 2, + "gold_ingot": 4, + "apple": 1 + }, + "1": { + "milk_bucket": 1, + "egg": 1, + "gold_ingot": 4 + } + } + }, + "multiagent_cooking_1_cake_1_cooked_beef_blocked_access_0_1": { + "conversation": "Let's collaborate to make cake and cooked_beef.", + "agent_count": 2, + "target": { + "cake": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 cooked_beef. ", + "1": "Collaborate with agents around you to make 1 cake, 1 cooked_beef. " + }, + "difficulty_metrics": { + "total_recipe_steps": 7, + "blocked_agents_count": 2, + "unique_target_items": 2, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "milk_bucket": 2, + "coal": 1 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + } + }, + "multiagent_cooking_1_cake_1_golden_apple_blocked_access_0_1": { + "conversation": "Let's collaborate to make cake and golden_apple.", + "agent_count": 2, + "target": { + "cake": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 golden_apple. ", + "1": "Collaborate with agents around you to make 1 cake, 1 golden_apple. " + }, + "difficulty_metrics": { + "total_recipe_steps": 7, + "blocked_agents_count": 2, + "unique_target_items": 2, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "milk_bucket": 2, + "gold_ingot": 4, + "apple": 1 + }, + "1": { + "milk_bucket": 1, + "egg": 1, + "gold_ingot": 4 + } + } + }, + "multiagent_cooking_1_cake_1_cooked_beef_blocked_access_0": { + "conversation": "Let's collaborate to make cooked_beef and cake.", + "agent_count": 2, + "target": { + "cooked_beef": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [ + "0" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 cake. ", + "1": "Collaborate with agents around you to make 1 cooked_beef, 1 cake. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 7, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1, + "milk_bucket": 2 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + } + }, + "multiagent_cooking_1_baked_potato_1_cake": { + "conversation": "Let's collaborate to make baked_potato and cake.", + "agent_count": 2, + "target": { + "baked_potato": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 7, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1, + "milk_bucket": 2 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + } + }, + "multiagent_cooking_1_baked_potato_1_cooked_beef_blocked_access_0_1": { + "conversation": "Let's collaborate to make baked_potato and cooked_beef.", + "agent_count": 2, + "target": { + "baked_potato": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 cooked_beef. ", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 cooked_beef. " + }, + "difficulty_metrics": { + "total_recipe_steps": 4, + "blocked_agents_count": 2, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_1_bread_1_golden_apple": { + "conversation": "Let's collaborate to make bread and golden_apple.", + "agent_count": 2, + "target": { + "bread": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 golden_apple. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "1": "Collaborate with agents around you to make 1 bread, 1 golden_apple. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 4, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 3, + "difficulty_category": "easy" + }, + "difficulty": "easy", + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1 + }, + "1": { + "gold_ingot": 4 + } + } + }, + "multiagent_cooking_1_baked_potato_1_cooked_beef": { + "conversation": "Let's collaborate to make baked_potato and cooked_beef.", + "agent_count": 2, + "target": { + "baked_potato": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 cooked_beef. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 cooked_beef. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 4, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 3, + "difficulty_category": "easy" + }, + "difficulty": "easy", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_1_baked_potato_1_cake_blocked_access_0_1": { + "conversation": "Let's collaborate to make cake and baked_potato.", + "agent_count": 2, + "target": { + "cake": 1, + "baked_potato": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 baked_potato. ", + "1": "Collaborate with agents around you to make 1 cake, 1 baked_potato. " + }, + "difficulty_metrics": { + "total_recipe_steps": 7, + "blocked_agents_count": 2, + "unique_target_items": 2, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "milk_bucket": 2, + "coal": 1 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + } + }, + "multiagent_cooking_1_cooked_beef_1_golden_apple_blocked_access_0_1": { + "conversation": "Let's collaborate to make cooked_beef and golden_apple.", + "agent_count": 2, + "target": { + "cooked_beef": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple. ", + "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple. " + }, + "difficulty_metrics": { + "total_recipe_steps": 4, + "blocked_agents_count": 2, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1, + "gold_ingot": 4 + }, + "1": { + "gold_ingot": 4, + "apple": 1 + } + } + }, + "multiagent_cooking_1_golden_apple_1_rabbit_stew": { + "conversation": "Let's collaborate to make golden_apple and rabbit_stew.", + "agent_count": 2, + "target": { + "golden_apple": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 8, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1 + }, + "1": { + "gold_ingot": 4, + "bowl": 1 + } + } + }, + "multiagent_cooking_1_bread_1_golden_apple_blocked_access_1": { + "conversation": "Let's collaborate to make golden_apple and bread.", + "agent_count": 2, + "target": { + "golden_apple": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [ + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 bread. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 bread. " + }, + "difficulty_metrics": { + "total_recipe_steps": 4, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1 + }, + "1": { + "gold_ingot": 4 + } + } + }, + "multiagent_cooking_1_cooked_beef_1_rabbit_stew": { + "conversation": "Let's collaborate to make rabbit_stew and cooked_beef.", + "agent_count": 2, + "target": { + "rabbit_stew": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 cooked_beef. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 cooked_beef. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 8, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_1_baked_potato_1_cake_blocked_access_0": { + "conversation": "Let's collaborate to make baked_potato and cake.", + "agent_count": 2, + "target": { + "baked_potato": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [ + "0" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 cake. ", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 7, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1, + "milk_bucket": 2 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + } + }, + "multiagent_cooking_1_cake_1_golden_apple_blocked_access_0": { + "conversation": "Let's collaborate to make golden_apple and cake.", + "agent_count": 2, + "target": { + "golden_apple": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [ + "0" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 cake. ", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 cake. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 7, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1, + "milk_bucket": 2 + }, + "1": { + "gold_ingot": 4, + "milk_bucket": 1, + "egg": 1 + } + } + }, + "multiagent_cooking_1_cake_1_golden_apple_blocked_access_1": { + "conversation": "Let's collaborate to make golden_apple and cake.", + "agent_count": 2, + "target": { + "golden_apple": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [ + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 cake. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 cake. " + }, + "difficulty_metrics": { + "total_recipe_steps": 7, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1, + "milk_bucket": 2 + }, + "1": { + "gold_ingot": 4, + "milk_bucket": 1, + "egg": 1 + } + } + }, + "multiagent_cooking_1_baked_potato_1_golden_apple": { + "conversation": "Let's collaborate to make baked_potato and golden_apple.", + "agent_count": 2, + "target": { + "baked_potato": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 4, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 3, + "difficulty_category": "easy" + }, + "difficulty": "easy", + "initial_inventory": { + "0": { + "coal": 1, + "gold_ingot": 4 + }, + "1": { + "gold_ingot": 4, + "apple": 1 + } + } + }, + "multiagent_cooking_1_cake_blocked_access_0": { + "conversation": "Let's work together to make cake.", + "agent_count": 2, + "target": { + "cake": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [ + "0" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cake. ", + "1": "Collaborate with agents around you to make 1 cake. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 5, + "blocked_agents_count": 1, + "unique_target_items": 1, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "milk_bucket": 2 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + } + }, + "multiagent_cooking_1_golden_apple": { + "conversation": "Let's work together to make golden_apple.", + "agent_count": 2, + "target": { + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "1": "Collaborate with agents around you to make 1 golden_apple. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 2, + "blocked_agents_count": 0, + "unique_target_items": 1, + "overall_difficulty_score": 2, + "difficulty_category": "easy" + }, + "difficulty": "easy", + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1 + }, + "1": { + "gold_ingot": 4 + } + } + }, + "multiagent_cooking_1_baked_potato_1_rabbit_stew_blocked_access_1": { + "conversation": "Let's collaborate to make rabbit_stew and baked_potato.", + "agent_count": 2, + "target": { + "rabbit_stew": 1, + "baked_potato": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [ + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", + "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. " + }, + "difficulty_metrics": { + "total_recipe_steps": 8, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_1_baked_potato_1_rabbit_stew": { + "conversation": "Let's collaborate to make baked_potato and rabbit_stew.", + "agent_count": 2, + "target": { + "baked_potato": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 rabbit_stew. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 rabbit_stew. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 8, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "bowl": 1 + } + } + } +} \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_test_2_items/2_agent_hells_kitchen.json b/tasks/cooking_tasks/require_collab_test_2_items/2_agent_hells_kitchen.json new file mode 100644 index 0000000..639ce9e --- /dev/null +++ b/tasks/cooking_tasks/require_collab_test_2_items/2_agent_hells_kitchen.json @@ -0,0 +1,1116 @@ +{ + "multiagent_cooking_baked_potato_cake_hells_kitchen": { + "conversation": "We need to make baked_potato and cake together. You are supposed to make cake and I am supposed to make baked_potato, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "baked_potato", + "cake" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make baked_potato, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 5, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1, + "milk_bucket": 2 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + } + }, + "multiagent_cooking_cooked_mutton_mushroom_stew_hells_kitchen": { + "conversation": "We need to make cooked_mutton and mushroom_stew together. You are supposed to make mushroom_stew and I am supposed to make cooked_mutton, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_mutton", + "mushroom_stew" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_mutton, but you don't have the recipe for it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make mushroom_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 5, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_cooked_mutton_cake_hells_kitchen": { + "conversation": "We need to make cooked_mutton and cake together. You are supposed to make cake and I am supposed to make cooked_mutton, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_mutton", + "cake" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_mutton, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 5, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1, + "milk_bucket": 2 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + } + }, + "multiagent_cooking_mushroom_stew_baked_potato_hells_kitchen": { + "conversation": "We need to make mushroom_stew and baked_potato together. You are supposed to make baked_potato and I am supposed to make mushroom_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "mushroom_stew", + "baked_potato" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make mushroom_stew, but you don't have the recipe for it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make baked_potato, but you don't have the recipe for it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 5, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_golden_carrot_cooked_mutton_hells_kitchen": { + "conversation": "We need to make golden_carrot and cooked_mutton together. You are supposed to make cooked_mutton and I am supposed to make golden_carrot, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "golden_carrot", + "cooked_mutton" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_mutton, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 5, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "gold_ingot": 4, + "coal": 1 + }, + "1": { + "gold_ingot": 4 + } + } + }, + "multiagent_cooking_baked_potato_mushroom_stew_hells_kitchen": { + "conversation": "We need to make baked_potato and mushroom_stew together. You are supposed to make mushroom_stew and I am supposed to make baked_potato, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "baked_potato", + "mushroom_stew" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make baked_potato, but you don't have the recipe for it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make mushroom_stew, but you don't have the recipe for it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 5, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_cake_bread_hells_kitchen": { + "conversation": "We need to make cake and bread together. You are supposed to make bread and I am supposed to make cake, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cake", + "bread" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make bread. You have their recipe:\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make bread, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 5, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "milk_bucket": 2 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + } + }, + "multiagent_cooking_bread_cake_hells_kitchen": { + "conversation": "We need to make bread and cake together. You are supposed to make cake and I am supposed to make bread, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "bread", + "cake" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make bread, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make bread. You have their recipe:\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 5, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "milk_bucket": 2 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + } + }, + "multiagent_cooking_mushroom_stew_cooked_mutton_hells_kitchen": { + "conversation": "We need to make mushroom_stew and cooked_mutton together. You are supposed to make cooked_mutton and I am supposed to make mushroom_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "mushroom_stew", + "cooked_mutton" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make mushroom_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_mutton, but you don't have the recipe for it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 5, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_mushroom_stew_cake_hells_kitchen": { + "conversation": "We need to make mushroom_stew and cake together. You are supposed to make cake and I am supposed to make mushroom_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "mushroom_stew", + "cake" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make mushroom_stew, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 8, + "max_steps_per_recipe": 5, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1, + "milk_bucket": 2 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + } + }, + "multiagent_cooking_mushroom_stew_golden_carrot_hells_kitchen": { + "conversation": "We need to make mushroom_stew and golden_carrot together. You are supposed to make golden_carrot and I am supposed to make mushroom_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "mushroom_stew", + "golden_carrot" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make mushroom_stew, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 6, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1, + "gold_ingot": 4 + }, + "1": { + "gold_ingot": 4 + } + } + }, + "multiagent_cooking_golden_carrot_cake_hells_kitchen": { + "conversation": "We need to make golden_carrot and cake together. You are supposed to make cake and I am supposed to make golden_carrot, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "golden_carrot", + "cake" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 8, + "max_steps_per_recipe": 5, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "gold_ingot": 4, + "milk_bucket": 2 + }, + "1": { + "gold_ingot": 4, + "milk_bucket": 1, + "egg": 1 + } + } + }, + "multiagent_cooking_golden_carrot_bread_hells_kitchen": { + "conversation": "We need to make golden_carrot and bread together. You are supposed to make bread and I am supposed to make golden_carrot, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "golden_carrot", + "bread" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make bread. You have their recipe:\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make bread, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 5, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "gold_ingot": 4 + }, + "1": { + "gold_ingot": 4 + } + } + }, + "multiagent_cooking_baked_potato_cooked_mutton_hells_kitchen": { + "conversation": "We need to make baked_potato and cooked_mutton together. You are supposed to make cooked_mutton and I am supposed to make baked_potato, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "baked_potato", + "cooked_mutton" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make baked_potato, but you don't have the recipe for it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_mutton, but you don't have the recipe for it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 4, + "max_steps_per_recipe": 2, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_cake_mushroom_stew_hells_kitchen": { + "conversation": "We need to make cake and mushroom_stew together. You are supposed to make mushroom_stew and I am supposed to make cake, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cake", + "mushroom_stew" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make mushroom_stew, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 8, + "max_steps_per_recipe": 5, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "milk_bucket": 2, + "bowl": 1 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + } + }, + "multiagent_cooking_cake_cooked_mutton_hells_kitchen": { + "conversation": "We need to make cake and cooked_mutton together. You are supposed to make cooked_mutton and I am supposed to make cake, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cake", + "cooked_mutton" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_mutton, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 5, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "milk_bucket": 2, + "coal": 1 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + } + }, + "multiagent_cooking_golden_carrot_baked_potato_hells_kitchen": { + "conversation": "We need to make golden_carrot and baked_potato together. You are supposed to make baked_potato and I am supposed to make golden_carrot, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "golden_carrot", + "baked_potato" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make baked_potato, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 5, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "gold_ingot": 4, + "coal": 1 + }, + "1": { + "gold_ingot": 4 + } + } + }, + "multiagent_cooking_cake_golden_carrot_hells_kitchen": { + "conversation": "We need to make cake and golden_carrot together. You are supposed to make golden_carrot and I am supposed to make cake, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cake", + "golden_carrot" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 8, + "max_steps_per_recipe": 5, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "milk_bucket": 2, + "gold_ingot": 4 + }, + "1": { + "milk_bucket": 1, + "egg": 1, + "gold_ingot": 4 + } + } + }, + "multiagent_cooking_bread_golden_carrot_hells_kitchen": { + "conversation": "We need to make bread and golden_carrot together. You are supposed to make golden_carrot and I am supposed to make bread, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "bread", + "golden_carrot" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make bread, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make bread. You have their recipe:\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 5, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "gold_ingot": 4 + }, + "1": { + "gold_ingot": 4 + } + } + }, + "multiagent_cooking_golden_carrot_mushroom_stew_hells_kitchen": { + "conversation": "We need to make golden_carrot and mushroom_stew together. You are supposed to make mushroom_stew and I am supposed to make golden_carrot, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "golden_carrot", + "mushroom_stew" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make mushroom_stew, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 6, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "gold_ingot": 4, + "bowl": 1 + }, + "1": { + "gold_ingot": 4 + } + } + }, + "multiagent_cooking_cooked_mutton_baked_potato_hells_kitchen": { + "conversation": "We need to make cooked_mutton and baked_potato together. You are supposed to make baked_potato and I am supposed to make cooked_mutton, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_mutton", + "baked_potato" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_mutton, but you don't have the recipe for it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make baked_potato, but you don't have the recipe for it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 4, + "max_steps_per_recipe": 2, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_cooked_mutton_golden_carrot_hells_kitchen": { + "conversation": "We need to make cooked_mutton and golden_carrot together. You are supposed to make golden_carrot and I am supposed to make cooked_mutton, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_mutton", + "golden_carrot" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_mutton, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 5, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1, + "gold_ingot": 4 + }, + "1": { + "gold_ingot": 4 + } + } + }, + "multiagent_cooking_baked_potato_golden_carrot_hells_kitchen": { + "conversation": "We need to make baked_potato and golden_carrot together. You are supposed to make golden_carrot and I am supposed to make baked_potato, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "baked_potato", + "golden_carrot" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make baked_potato, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 5, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1, + "gold_ingot": 4 + }, + "1": { + "gold_ingot": 4 + } + } + }, + "multiagent_cooking_cake_baked_potato_hells_kitchen": { + "conversation": "We need to make cake and baked_potato together. You are supposed to make baked_potato and I am supposed to make cake, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cake", + "baked_potato" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make baked_potato, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 5, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "milk_bucket": 2, + "coal": 1 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + } + } +} \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_train_2_items/2_agent_block_recipe.json b/tasks/cooking_tasks/require_collab_train_2_items/2_agent_block_recipe.json index a97ce8d..2f11991 100644 --- a/tasks/cooking_tasks/require_collab_train_2_items/2_agent_block_recipe.json +++ b/tasks/cooking_tasks/require_collab_train_2_items/2_agent_block_recipe.json @@ -1,235 +1,79 @@ { - "multiagent_cooking_1_cake_1_golden_apple": { - "conversation": "Let's collaborate to make cake and golden_apple.", + "multiagent_cooking_1_cooked_porkchop_1_cooked_rabbit_blocked_access_0": { + "conversation": "Let's collaborate to make cooked_rabbit and cooked_porkchop.", "agent_count": 2, "target": { - "cake": 1, - "golden_apple": 1 + "cooked_rabbit": 1, + "cooked_porkchop": 1 }, "type": "cooking", "timeout": 300, "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 golden_apple. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", - "1": "Collaborate with agents around you to make 1 cake, 1 golden_apple. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "milk_bucket": 2, - "gold_ingot": 4, - "apple": 1 - }, - "1": { - "milk_bucket": 1, - "egg": 1, - "gold_ingot": 4 - } - } - }, - "multiagent_cooking_1_cake_1_cooked_beef_blocked_access_0_1": { - "conversation": "Let's collaborate to make cake and cooked_beef.", - "agent_count": 2, - "target": { - "cake": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", "Step 2: Get coal from your inventory or other agents.", "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 cooked_beef. ", - "1": "Collaborate with agents around you to make 1 cake, 1 cooked_beef. " - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 2, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "milk_bucket": 2, - "coal": 1 - }, - "1": { - "milk_bucket": 1, - "egg": 1 - } - } - }, - "multiagent_cooking_1_cake_1_golden_apple_blocked_access_0_1": { - "conversation": "Let's collaborate to make cake and golden_apple.", - "agent_count": 2, - "target": { - "cake": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + "Step 2: Go to furnace and use it to cook the raw rabbit." ], - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 golden_apple. ", - "1": "Collaborate with agents around you to make 1 cake, 1 golden_apple. " - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 2, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "milk_bucket": 2, - "gold_ingot": 4, - "apple": 1 - }, - "1": { - "milk_bucket": 1, - "egg": 1, - "gold_ingot": 4 - } - } - }, - "multiagent_cooking_1_cake_1_cooked_beef_blocked_access_0": { - "conversation": "Let's collaborate to make cooked_beef and cake.", - "agent_count": 2, - "target": { - "cooked_beef": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", "Step 2: Get coal from your inventory or other agents.", "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + "Step 4: Go to furnace and use it to cook the porkchop." ] }, "blocked_access_to_recipe": [ "0" ], "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 cake. ", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 cake. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop. ", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" }, "difficulty_metrics": { - "total_recipe_steps": 7, + "total_recipe_steps": 4, "blocked_agents_count": 1, "unique_target_items": 2, - "overall_difficulty_score": 5, + "overall_difficulty_score": 4, "difficulty_category": "medium" }, "difficulty": "medium", "initial_inventory": { "0": { - "coal": 1, - "milk_bucket": 2 + "coal": 1 }, "1": { - "milk_bucket": 1, - "egg": 1 + "coal": 1 } } }, - "multiagent_cooking_1_baked_potato_1_cake": { - "conversation": "Let's collaborate to make baked_potato and cake.", + "multiagent_cooking_1_cookie_1_mushroom_stew": { + "conversation": "Let's collaborate to make cookie and mushroom_stew.", "agent_count": 2, "target": { - "baked_potato": 1, - "cake": 1 + "cookie": 1, + "mushroom_stew": 1 }, "type": "cooking", "timeout": 300, "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." ] }, "blocked_access_to_recipe": [], "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" + "0": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "1": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" }, "difficulty_metrics": { - "total_recipe_steps": 7, + "total_recipe_steps": 6, "blocked_agents_count": 0, "unique_target_items": 2, "overall_difficulty_score": 4, @@ -238,376 +82,88 @@ "difficulty": "medium", "initial_inventory": { "0": { - "coal": 1, - "milk_bucket": 2 + "cocoa_beans": 1 }, "1": { - "milk_bucket": 1, - "egg": 1 - } - } - }, - "multiagent_cooking_1_baked_potato_1_cooked_beef_blocked_access_0_1": { - "conversation": "Let's collaborate to make baked_potato and cooked_beef.", - "agent_count": 2, - "target": { - "baked_potato": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 cooked_beef. ", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 cooked_beef. " - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 2, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 1 - }, - "1": { - "coal": 1 - } - } - }, - "multiagent_cooking_1_bread_1_golden_apple": { - "conversation": "Let's collaborate to make bread and golden_apple.", - "agent_count": 2, - "target": { - "bread": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 golden_apple. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", - "1": "Collaborate with agents around you to make 1 bread, 1 golden_apple. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy", - "initial_inventory": { - "0": { - "gold_ingot": 4, - "apple": 1 - }, - "1": { - "gold_ingot": 4 - } - } - }, - "multiagent_cooking_1_baked_potato_1_cooked_beef": { - "conversation": "Let's collaborate to make baked_potato and cooked_beef.", - "agent_count": 2, - "target": { - "baked_potato": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 cooked_beef. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 cooked_beef. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy", - "initial_inventory": { - "0": { - "coal": 1 - }, - "1": { - "coal": 1 - } - } - }, - "multiagent_cooking_1_baked_potato_1_cake_blocked_access_0_1": { - "conversation": "Let's collaborate to make cake and baked_potato.", - "agent_count": 2, - "target": { - "cake": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 baked_potato. ", - "1": "Collaborate with agents around you to make 1 cake, 1 baked_potato. " - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 2, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "milk_bucket": 2, - "coal": 1 - }, - "1": { - "milk_bucket": 1, - "egg": 1 - } - } - }, - "multiagent_cooking_1_cooked_beef_1_golden_apple_blocked_access_0_1": { - "conversation": "Let's collaborate to make cooked_beef and golden_apple.", - "agent_count": 2, - "target": { - "cooked_beef": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple. ", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple. " - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 2, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 1, - "gold_ingot": 4 - }, - "1": { - "gold_ingot": 4, - "apple": 1 - } - } - }, - "multiagent_cooking_1_golden_apple_1_rabbit_stew": { - "conversation": "Let's collaborate to make golden_apple and rabbit_stew.", - "agent_count": 2, - "target": { - "golden_apple": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", - "1": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 8, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "gold_ingot": 4, - "apple": 1 - }, - "1": { - "gold_ingot": 4, "bowl": 1 } } }, - "multiagent_cooking_1_bread_1_golden_apple_blocked_access_1": { - "conversation": "Let's collaborate to make golden_apple and bread.", + "multiagent_cooking_1_beetroot_soup_1_golden_carrot_blocked_access_1": { + "conversation": "Let's collaborate to make beetroot_soup and golden_carrot.", "agent_count": 2, "target": { - "golden_apple": 1, - "bread": 1 + "beetroot_soup": 1, + "golden_carrot": 1 }, "type": "cooking", "timeout": 300, "recipes": { - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." ] }, "blocked_access_to_recipe": [ "1" ], "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple, 1 bread. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", - "1": "Collaborate with agents around you to make 1 golden_apple, 1 bread. " + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 golden_carrot. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 golden_carrot. " }, "difficulty_metrics": { - "total_recipe_steps": 4, + "total_recipe_steps": 6, "blocked_agents_count": 1, "unique_target_items": 2, - "overall_difficulty_score": 4, + "overall_difficulty_score": 5, "difficulty_category": "medium" }, "difficulty": "medium", "initial_inventory": { "0": { - "gold_ingot": 4, - "apple": 1 + "bowl": 1, + "gold_ingot": 4 }, "1": { "gold_ingot": 4 } } }, - "multiagent_cooking_1_cooked_beef_1_rabbit_stew": { - "conversation": "Let's collaborate to make rabbit_stew and cooked_beef.", + "multiagent_cooking_1_beetroot_soup_1_cooked_mutton": { + "conversation": "Let's collaborate to make cooked_mutton and beetroot_soup.", "agent_count": 2, "target": { - "rabbit_stew": 1, - "cooked_beef": 1 + "cooked_mutton": 1, + "beetroot_soup": 1 }, "type": "cooking", "timeout": 300, "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", "Step 2: Get coal from your inventory or other agents.", "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + "Step 4: Go to furnace and use it to cook the mutton." ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." ] }, "blocked_access_to_recipe": [], "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 cooked_beef. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 cooked_beef. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" }, "difficulty_metrics": { - "total_recipe_steps": 8, + "total_recipe_steps": 5, "blocked_agents_count": 0, "unique_target_items": 2, "overall_difficulty_score": 4, @@ -616,271 +172,1259 @@ "difficulty": "medium", "initial_inventory": { "0": { + "coal": 1 + }, + "1": { "bowl": 1 + } + } + }, + "multiagent_cooking_1_cooked_porkchop_1_pumpkin_pie": { + "conversation": "Let's collaborate to make pumpkin_pie and cooked_porkchop.", + "agent_count": 2, + "target": { + "pumpkin_pie": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_porkchop. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_porkchop. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 6, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "egg": 1 }, "1": { "coal": 1 } } }, - "multiagent_cooking_1_baked_potato_1_cake_blocked_access_0": { - "conversation": "Let's collaborate to make baked_potato and cake.", + "multiagent_cooking_1_cooked_chicken_1_suspicious_stew": { + "conversation": "Let's collaborate to make cooked_chicken and suspicious_stew.", "agent_count": 2, "target": { - "baked_potato": 1, - "cake": 1 + "cooked_chicken": 1, + "suspicious_stew": 1 }, "type": "cooking", "timeout": 300, "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", "Step 2: Get coal from your inventory or other agents.", "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." + "Step 4: Go to furnace and use it to cook the raw chicken." ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 cake. ", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 1, - "milk_bucket": 2 - }, - "1": { - "milk_bucket": 1, - "egg": 1 - } - } - }, - "multiagent_cooking_1_cake_1_golden_apple_blocked_access_0": { - "conversation": "Let's collaborate to make golden_apple and cake.", - "agent_count": 2, - "target": { - "golden_apple": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple, 1 cake. ", - "1": "Collaborate with agents around you to make 1 golden_apple, 1 cake. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "gold_ingot": 4, - "apple": 1, - "milk_bucket": 2 - }, - "1": { - "gold_ingot": 4, - "milk_bucket": 1, - "egg": 1 - } - } - }, - "multiagent_cooking_1_cake_1_golden_apple_blocked_access_1": { - "conversation": "Let's collaborate to make golden_apple and cake.", - "agent_count": 2, - "target": { - "golden_apple": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple, 1 cake. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", - "1": "Collaborate with agents around you to make 1 golden_apple, 1 cake. " - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "gold_ingot": 4, - "apple": 1, - "milk_bucket": 2 - }, - "1": { - "gold_ingot": 4, - "milk_bucket": 1, - "egg": 1 - } - } - }, - "multiagent_cooking_1_baked_potato_1_golden_apple": { - "conversation": "Let's collaborate to make baked_potato and golden_apple.", - "agent_count": 2, - "target": { - "baked_potato": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ], - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." ] }, "blocked_access_to_recipe": [], "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" }, "difficulty_metrics": { - "total_recipe_steps": 4, + "total_recipe_steps": 5, "blocked_agents_count": 0, "unique_target_items": 2, - "overall_difficulty_score": 3, - "difficulty_category": "easy" + "overall_difficulty_score": 4, + "difficulty_category": "medium" }, - "difficulty": "easy", + "difficulty": "medium", "initial_inventory": { "0": { "coal": 1, - "gold_ingot": 4 + "dandelion": 1 }, "1": { - "gold_ingot": 4, - "apple": 1 + "bowl": 1 } } }, - "multiagent_cooking_1_cake_blocked_access_0": { - "conversation": "Let's work together to make cake.", + "multiagent_cooking_1_beetroot_soup_1_cooked_rabbit_blocked_access_0": { + "conversation": "Let's collaborate to make beetroot_soup and cooked_rabbit.", "agent_count": 2, "target": { - "cake": 1 + "beetroot_soup": 1, + "cooked_rabbit": 1 }, "type": "cooking", "timeout": 300, "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." ] }, "blocked_access_to_recipe": [ "0" ], "goal": { - "0": "Collaborate with agents around you to make 1 cake. ", - "1": "Collaborate with agents around you to make 1 cake. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_rabbit. ", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_rabbit. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" }, "difficulty_metrics": { "total_recipe_steps": 5, "blocked_agents_count": 1, - "unique_target_items": 1, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_1_cooked_chicken_1_cooked_rabbit_blocked_access_0_1": { + "conversation": "Let's collaborate to make cooked_rabbit and cooked_chicken.", + "agent_count": 2, + "target": { + "cooked_rabbit": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken. ", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken. " + }, + "difficulty_metrics": { + "total_recipe_steps": 4, + "blocked_agents_count": 2, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_1_cooked_mutton_1_cookie_blocked_access_1": { + "conversation": "Let's collaborate to make cookie and cooked_mutton.", + "agent_count": 2, + "target": { + "cookie": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [ + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_mutton. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_mutton. " + }, + "difficulty_metrics": { + "total_recipe_steps": 5, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "cocoa_beans": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_1_beetroot_soup_1_mushroom_stew_blocked_access_0_1": { + "conversation": "Let's collaborate to make mushroom_stew and beetroot_soup.", + "agent_count": 2, + "target": { + "mushroom_stew": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup. ", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup. " + }, + "difficulty_metrics": { + "total_recipe_steps": 6, + "blocked_agents_count": 2, + "unique_target_items": 2, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_1_beetroot_soup_1_suspicious_stew": { + "conversation": "Let's collaborate to make suspicious_stew and beetroot_soup.", + "agent_count": 2, + "target": { + "suspicious_stew": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 6, + "blocked_agents_count": 0, + "unique_target_items": 2, "overall_difficulty_score": 4, "difficulty_category": "medium" }, "difficulty": "medium", "initial_inventory": { "0": { - "milk_bucket": 2 + "bowl": 1, + "dandelion": 1 }, "1": { - "milk_bucket": 1, - "egg": 1 + "bowl": 1 } } }, - "multiagent_cooking_1_golden_apple": { - "conversation": "Let's work together to make golden_apple.", + "multiagent_cooking_1_beetroot_soup_1_cooked_porkchop_blocked_access_0_1": { + "conversation": "Let's collaborate to make beetroot_soup and cooked_porkchop.", "agent_count": 2, "target": { - "golden_apple": 1 + "beetroot_soup": 1, + "cooked_porkchop": 1 }, "type": "cooking", "timeout": 300, "recipes": { - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop. ", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop. " + }, + "difficulty_metrics": { + "total_recipe_steps": 5, + "blocked_agents_count": 2, + "unique_target_items": 2, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_1_beetroot_soup_1_pumpkin_pie_blocked_access_0": { + "conversation": "Let's collaborate to make beetroot_soup and pumpkin_pie.", + "agent_count": 2, + "target": { + "beetroot_soup": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [ + "0" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie. ", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 7, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "egg": 1 + } + } + }, + "multiagent_cooking_1_beetroot_soup_1_mushroom_stew": { + "conversation": "Let's collaborate to make mushroom_stew and beetroot_soup.", + "agent_count": 2, + "target": { + "mushroom_stew": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." ] }, "blocked_access_to_recipe": [], "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", - "1": "Collaborate with agents around you to make 1 golden_apple. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" }, "difficulty_metrics": { - "total_recipe_steps": 2, + "total_recipe_steps": 6, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_1_cookie_1_suspicious_stew": { + "conversation": "Let's collaborate to make cookie and suspicious_stew.", + "agent_count": 2, + "target": { + "cookie": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 suspicious_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 cookie, 1 suspicious_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 6, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "cocoa_beans": 1, + "dandelion": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_1_beetroot_soup_1_cookie": { + "conversation": "Let's collaborate to make beetroot_soup and cookie.", + "agent_count": 2, + "target": { + "beetroot_soup": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 6, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "cocoa_beans": 1 + } + } + }, + "multiagent_cooking_1_golden_carrot_1_pumpkin_pie_blocked_access_0": { + "conversation": "Let's collaborate to make pumpkin_pie and golden_carrot.", + "agent_count": 2, + "target": { + "pumpkin_pie": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [ + "0" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot. ", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 7, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "egg": 1, + "gold_ingot": 4 + }, + "1": { + "gold_ingot": 4 + } + } + }, + "multiagent_cooking_1_golden_carrot_1_suspicious_stew_blocked_access_0_1": { + "conversation": "Let's collaborate to make suspicious_stew and golden_carrot.", + "agent_count": 2, + "target": { + "suspicious_stew": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 golden_carrot. ", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 golden_carrot. " + }, + "difficulty_metrics": { + "total_recipe_steps": 6, + "blocked_agents_count": 2, + "unique_target_items": 2, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "bowl": 1, + "gold_ingot": 4 + }, + "1": { + "dandelion": 1, + "gold_ingot": 4 + } + } + }, + "multiagent_cooking_1_cooked_porkchop_1_cooked_rabbit_blocked_access_0_1": { + "conversation": "Let's collaborate to make cooked_porkchop and cooked_rabbit.", + "agent_count": 2, + "target": { + "cooked_porkchop": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_rabbit. ", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_rabbit. " + }, + "difficulty_metrics": { + "total_recipe_steps": 4, + "blocked_agents_count": 2, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_1_cooked_porkchop_1_cookie_blocked_access_0": { + "conversation": "Let's collaborate to make cookie and cooked_porkchop.", + "agent_count": 2, + "target": { + "cookie": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [ + "0" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop. ", + "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 5, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "cocoa_beans": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_1_cooked_chicken_1_mushroom_stew": { + "conversation": "Let's collaborate to make mushroom_stew and cooked_chicken.", + "agent_count": 2, + "target": { + "mushroom_stew": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 5, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_1_cooked_porkchop_1_cooked_rabbit": { + "conversation": "Let's collaborate to make cooked_rabbit and cooked_porkchop.", + "agent_count": 2, + "target": { + "cooked_rabbit": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 4, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 3, + "difficulty_category": "easy" + }, + "difficulty": "easy", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_1_cooked_chicken_1_mushroom_stew_blocked_access_1": { + "conversation": "Let's collaborate to make cooked_chicken and mushroom_stew.", + "agent_count": 2, + "target": { + "cooked_chicken": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [ + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 mushroom_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 mushroom_stew. " + }, + "difficulty_metrics": { + "total_recipe_steps": 5, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_1_suspicious_stew_blocked_access_1": { + "conversation": "Let's work together to make suspicious_stew.", + "agent_count": 2, + "target": { + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [ + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew. " + }, + "difficulty_metrics": { + "total_recipe_steps": 3, + "blocked_agents_count": 1, + "unique_target_items": 1, + "overall_difficulty_score": 3, + "difficulty_category": "easy" + }, + "difficulty": "easy", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "dandelion": 1 + } + } + }, + "multiagent_cooking_1_cooked_porkchop_1_suspicious_stew_blocked_access_0": { + "conversation": "Let's collaborate to make suspicious_stew and cooked_porkchop.", + "agent_count": 2, + "target": { + "suspicious_stew": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [ + "0" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop. ", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 5, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1, + "coal": 1 + }, + "1": { + "dandelion": 1 + } + } + }, + "multiagent_cooking_1_cooked_rabbit_1_mushroom_stew_blocked_access_0_1": { + "conversation": "Let's collaborate to make cooked_rabbit and mushroom_stew.", + "agent_count": 2, + "target": { + "cooked_rabbit": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew. ", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew. " + }, + "difficulty_metrics": { + "total_recipe_steps": 5, + "blocked_agents_count": 2, + "unique_target_items": 2, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_1_cooked_rabbit_1_cookie": { + "conversation": "Let's collaborate to make cooked_rabbit and cookie.", + "agent_count": 2, + "target": { + "cooked_rabbit": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cookie. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cookie. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 5, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "cocoa_beans": 1 + } + } + }, + "multiagent_cooking_1_cooked_mutton_1_mushroom_stew": { + "conversation": "Let's collaborate to make mushroom_stew and cooked_mutton.", + "agent_count": 2, + "target": { + "mushroom_stew": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 5, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_1_beetroot_soup_1_cooked_porkchop": { + "conversation": "Let's collaborate to make beetroot_soup and cooked_porkchop.", + "agent_count": 2, + "target": { + "beetroot_soup": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 5, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_1_cooked_chicken_1_cooked_rabbit_blocked_access_1": { + "conversation": "Let's collaborate to make cooked_chicken and cooked_rabbit.", + "agent_count": 2, + "target": { + "cooked_chicken": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [ + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit. " + }, + "difficulty_metrics": { + "total_recipe_steps": 4, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_1_cooked_chicken_1_cooked_porkchop": { + "conversation": "Let's collaborate to make cooked_porkchop and cooked_chicken.", + "agent_count": 2, + "target": { + "cooked_porkchop": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 4, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 3, + "difficulty_category": "easy" + }, + "difficulty": "easy", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_1_suspicious_stew": { + "conversation": "Let's work together to make suspicious_stew.", + "agent_count": 2, + "target": { + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 3, "blocked_agents_count": 0, "unique_target_items": 1, "overall_difficulty_score": 2, @@ -889,50 +1433,826 @@ "difficulty": "easy", "initial_inventory": { "0": { - "gold_ingot": 4, - "apple": 1 + "bowl": 1 + }, + "1": { + "dandelion": 1 + } + } + }, + "multiagent_cooking_1_pumpkin_pie_1_suspicious_stew": { + "conversation": "Let's collaborate to make pumpkin_pie and suspicious_stew.", + "agent_count": 2, + "target": { + "pumpkin_pie": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 7, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "egg": 1, + "dandelion": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_1_cooked_chicken_1_mushroom_stew_blocked_access_0_1": { + "conversation": "Let's collaborate to make mushroom_stew and cooked_chicken.", + "agent_count": 2, + "target": { + "mushroom_stew": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken. ", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken. " + }, + "difficulty_metrics": { + "total_recipe_steps": 5, + "blocked_agents_count": 2, + "unique_target_items": 2, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_1_cookie_1_golden_carrot": { + "conversation": "Let's collaborate to make cookie and golden_carrot.", + "agent_count": 2, + "target": { + "cookie": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 golden_carrot. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 cookie, 1 golden_carrot. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 6, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "cocoa_beans": 1, + "gold_ingot": 4 }, "1": { "gold_ingot": 4 } } }, - "multiagent_cooking_1_baked_potato_1_rabbit_stew_blocked_access_1": { - "conversation": "Let's collaborate to make rabbit_stew and baked_potato.", + "multiagent_cooking_1_beetroot_soup_1_golden_carrot": { + "conversation": "Let's collaborate to make golden_carrot and beetroot_soup.", "agent_count": 2, "target": { - "rabbit_stew": 1, - "baked_potato": 1 + "golden_carrot": 1, + "beetroot_soup": 1 }, "type": "cooking", "timeout": 300, "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 6, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "gold_ingot": 4, + "bowl": 1 + }, + "1": { + "gold_ingot": 4 + } + } + }, + "multiagent_cooking_1_cooked_rabbit_1_suspicious_stew_blocked_access_1": { + "conversation": "Let's collaborate to make cooked_rabbit and suspicious_stew.", + "agent_count": 2, + "target": { + "cooked_rabbit": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", "Step 2: Get coal from your inventory or other agents.", "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." ] }, "blocked_access_to_recipe": [ "1" ], "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. " + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew. " }, "difficulty_metrics": { - "total_recipe_steps": 8, + "total_recipe_steps": 5, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1, + "dandelion": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_1_beetroot_soup_1_cookie_blocked_access_1": { + "conversation": "Let's collaborate to make beetroot_soup and cookie.", + "agent_count": 2, + "target": { + "beetroot_soup": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [ + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie. " + }, + "difficulty_metrics": { + "total_recipe_steps": 6, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "cocoa_beans": 1 + } + } + }, + "multiagent_cooking_1_cooked_mutton_1_suspicious_stew_blocked_access_1": { + "conversation": "Let's collaborate to make suspicious_stew and cooked_mutton.", + "agent_count": 2, + "target": { + "suspicious_stew": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [ + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton. " + }, + "difficulty_metrics": { + "total_recipe_steps": 5, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1, + "coal": 1 + }, + "1": { + "dandelion": 1 + } + } + }, + "multiagent_cooking_1_cooked_rabbit_1_golden_carrot": { + "conversation": "Let's collaborate to make cooked_rabbit and golden_carrot.", + "agent_count": 2, + "target": { + "cooked_rabbit": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 5, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1, + "gold_ingot": 4 + }, + "1": { + "gold_ingot": 4 + } + } + }, + "multiagent_cooking_1_cooked_rabbit_1_pumpkin_pie_blocked_access_0_1": { + "conversation": "Let's collaborate to make cooked_rabbit and pumpkin_pie.", + "agent_count": 2, + "target": { + "cooked_rabbit": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie. ", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie. " + }, + "difficulty_metrics": { + "total_recipe_steps": 6, + "blocked_agents_count": 2, + "unique_target_items": 2, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "egg": 1 + } + } + }, + "multiagent_cooking_1_cooked_mutton_1_cookie_blocked_access_0_1": { + "conversation": "Let's collaborate to make cooked_mutton and cookie.", + "agent_count": 2, + "target": { + "cooked_mutton": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cookie. ", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cookie. " + }, + "difficulty_metrics": { + "total_recipe_steps": 5, + "blocked_agents_count": 2, + "unique_target_items": 2, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "cocoa_beans": 1 + } + } + }, + "multiagent_cooking_1_golden_carrot_1_suspicious_stew": { + "conversation": "Let's collaborate to make golden_carrot and suspicious_stew.", + "agent_count": 2, + "target": { + "golden_carrot": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 6, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "gold_ingot": 4, + "bowl": 1 + }, + "1": { + "gold_ingot": 4, + "dandelion": 1 + } + } + }, + "multiagent_cooking_1_golden_carrot_1_pumpkin_pie_blocked_access_1": { + "conversation": "Let's collaborate to make pumpkin_pie and golden_carrot.", + "agent_count": 2, + "target": { + "pumpkin_pie": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [ + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot. " + }, + "difficulty_metrics": { + "total_recipe_steps": 7, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "egg": 1, + "gold_ingot": 4 + }, + "1": { + "gold_ingot": 4 + } + } + }, + "multiagent_cooking_1_cooked_mutton_1_cooked_porkchop_blocked_access_1": { + "conversation": "Let's collaborate to make cooked_porkchop and cooked_mutton.", + "agent_count": 2, + "target": { + "cooked_porkchop": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [ + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton. " + }, + "difficulty_metrics": { + "total_recipe_steps": 4, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_1_cooked_porkchop_1_golden_carrot": { + "conversation": "Let's collaborate to make golden_carrot and cooked_porkchop.", + "agent_count": 2, + "target": { + "golden_carrot": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_porkchop. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_porkchop. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 5, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "gold_ingot": 4, + "coal": 1 + }, + "1": { + "gold_ingot": 4 + } + } + }, + "multiagent_cooking_1_cooked_chicken_1_cooked_porkchop_blocked_access_1": { + "conversation": "Let's collaborate to make cooked_chicken and cooked_porkchop.", + "agent_count": 2, + "target": { + "cooked_chicken": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [ + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop. " + }, + "difficulty_metrics": { + "total_recipe_steps": 4, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_1_beetroot_soup_1_suspicious_stew_blocked_access_0_1": { + "conversation": "Let's collaborate to make suspicious_stew and beetroot_soup.", + "agent_count": 2, + "target": { + "suspicious_stew": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup. ", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup. " + }, + "difficulty_metrics": { + "total_recipe_steps": 6, + "blocked_agents_count": 2, + "unique_target_items": 2, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "bowl": 1, + "dandelion": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_1_cooked_mutton_1_cooked_rabbit": { + "conversation": "Let's collaborate to make cooked_rabbit and cooked_mutton.", + "agent_count": 2, + "target": { + "cooked_rabbit": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_mutton. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_mutton. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 4, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 3, + "difficulty_category": "easy" + }, + "difficulty": "easy", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_1_beetroot_soup_1_cooked_chicken_blocked_access_0": { + "conversation": "Let's collaborate to make beetroot_soup and cooked_chicken.", + "agent_count": 2, + "target": { + "beetroot_soup": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [ + "0" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_chicken. ", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 5, "blocked_agents_count": 1, "unique_target_items": 2, "overall_difficulty_score": 5, @@ -948,46 +2268,364 @@ } } }, - "multiagent_cooking_1_baked_potato_1_rabbit_stew": { - "conversation": "Let's collaborate to make baked_potato and rabbit_stew.", + "multiagent_cooking_1_cooked_chicken_1_cooked_mutton_blocked_access_0": { + "conversation": "Let's collaborate to make cooked_chicken and cooked_mutton.", "agent_count": 2, "target": { - "baked_potato": 1, - "rabbit_stew": 1 + "cooked_chicken": 1, + "cooked_mutton": 1 }, "type": "cooking", "timeout": 300, "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", "Step 2: Get coal from your inventory or other agents.", "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." + "Step 4: Go to furnace and use it to cook the raw chicken." ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", "Step 2: Get coal from your inventory or other agents.", "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [ + "0" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_mutton. ", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_mutton. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 4, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_1_beetroot_soup_1_cooked_mutton_blocked_access_0_1": { + "conversation": "Let's collaborate to make cooked_mutton and beetroot_soup.", + "agent_count": 2, + "target": { + "cooked_mutton": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup. ", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup. " + }, + "difficulty_metrics": { + "total_recipe_steps": 5, + "blocked_agents_count": 2, + "unique_target_items": 2, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_1_cooked_rabbit_1_suspicious_stew_blocked_access_0": { + "conversation": "Let's collaborate to make suspicious_stew and cooked_rabbit.", + "agent_count": 2, + "target": { + "suspicious_stew": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [ + "0" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_rabbit. ", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_rabbit. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 5, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1, + "coal": 1 + }, + "1": { + "dandelion": 1 + } + } + }, + "multiagent_cooking_1_cooked_mutton_1_cookie": { + "conversation": "Let's collaborate to make cookie and cooked_mutton.", + "agent_count": 2, + "target": { + "cookie": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." ] }, "blocked_access_to_recipe": [], "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 rabbit_stew. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 rabbit_stew. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" + "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_mutton. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_mutton. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" }, "difficulty_metrics": { - "total_recipe_steps": 8, + "total_recipe_steps": 5, "blocked_agents_count": 0, "unique_target_items": 2, "overall_difficulty_score": 4, "difficulty_category": "medium" }, "difficulty": "medium", + "initial_inventory": { + "0": { + "cocoa_beans": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_1_cooked_mutton_1_cooked_porkchop": { + "conversation": "Let's collaborate to make cooked_mutton and cooked_porkchop.", + "agent_count": 2, + "target": { + "cooked_mutton": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 4, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 3, + "difficulty_category": "easy" + }, + "difficulty": "easy", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_1_cooked_chicken_1_cooked_mutton_blocked_access_1": { + "conversation": "Let's collaborate to make cooked_mutton and cooked_chicken.", + "agent_count": 2, + "target": { + "cooked_mutton": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [ + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_chicken. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_chicken. " + }, + "difficulty_metrics": { + "total_recipe_steps": 4, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_1_mushroom_stew_1_suspicious_stew": { + "conversation": "Let's collaborate to make suspicious_stew and mushroom_stew.", + "agent_count": 2, + "target": { + "suspicious_stew": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 mushroom_stew. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 mushroom_stew. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 6, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1, + "dandelion": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_1_beetroot_soup_1_cooked_rabbit_blocked_access_1": { + "conversation": "Let's collaborate to make cooked_rabbit and beetroot_soup.", + "agent_count": 2, + "target": { + "cooked_rabbit": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [ + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup. " + }, + "difficulty_metrics": { + "total_recipe_steps": 5, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", "initial_inventory": { "0": { "coal": 1 diff --git a/tasks/cooking_tasks/require_collab_train_2_items/2_agent_hells_kitchen.json b/tasks/cooking_tasks/require_collab_train_2_items/2_agent_hells_kitchen.json index 639ce9e..25e108b 100644 --- a/tasks/cooking_tasks/require_collab_train_2_items/2_agent_hells_kitchen.json +++ b/tasks/cooking_tasks/require_collab_train_2_items/2_agent_hells_kitchen.json @@ -1,79 +1,30 @@ { - "multiagent_cooking_baked_potato_cake_hells_kitchen": { - "conversation": "We need to make baked_potato and cake together. You are supposed to make cake and I am supposed to make baked_potato, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "multiagent_cooking_suspicious_stew_cooked_chicken_hells_kitchen": { + "conversation": "We need to make suspicious_stew and cooked_chicken together. You are supposed to make cooked_chicken and I am supposed to make suspicious_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", "agent_count": 2, "target": [ - "baked_potato", - "cake" + "suspicious_stew", + "cooked_chicken" ], "type": "cooking", "timeout": 300, "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", "Step 2: Get coal from your inventory or other agents.", "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + "Step 4: Go to furnace and use it to cook the raw chicken." ] }, "blocked_access_to_recipe": [], "goal": { - "0": "You need to make baked_potato, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 7, - "max_steps_per_recipe": 5, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 1, - "milk_bucket": 2 - }, - "1": { - "milk_bucket": 1, - "egg": 1 - } - } - }, - "multiagent_cooking_cooked_mutton_mushroom_stew_hells_kitchen": { - "conversation": "We need to make cooked_mutton and mushroom_stew together. You are supposed to make mushroom_stew and I am supposed to make cooked_mutton, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_mutton", - "mushroom_stew" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_mutton, but you don't have the recipe for it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make mushroom_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + "0": "You need to make suspicious_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_chicken, but you don't have the recipe for it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." }, "task_type": "cooking", "difficulty_metrics": { @@ -84,410 +35,137 @@ "difficulty_category": "medium" }, "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 1 - }, - "1": { - "bowl": 1 - } - } - }, - "multiagent_cooking_cooked_mutton_cake_hells_kitchen": { - "conversation": "We need to make cooked_mutton and cake together. You are supposed to make cake and I am supposed to make cooked_mutton, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_mutton", - "cake" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_mutton, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 7, - "max_steps_per_recipe": 5, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 1, - "milk_bucket": 2 - }, - "1": { - "milk_bucket": 1, - "egg": 1 - } - } - }, - "multiagent_cooking_mushroom_stew_baked_potato_hells_kitchen": { - "conversation": "We need to make mushroom_stew and baked_potato together. You are supposed to make baked_potato and I am supposed to make mushroom_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "mushroom_stew", - "baked_potato" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make mushroom_stew, but you don't have the recipe for it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make baked_potato, but you don't have the recipe for it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "coal": 1 - } - } - }, - "multiagent_cooking_golden_carrot_cooked_mutton_hells_kitchen": { - "conversation": "We need to make golden_carrot and cooked_mutton together. You are supposed to make cooked_mutton and I am supposed to make golden_carrot, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "golden_carrot", - "cooked_mutton" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_mutton, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "gold_ingot": 4, - "coal": 1 - }, - "1": { - "gold_ingot": 4 - } - } - }, - "multiagent_cooking_baked_potato_mushroom_stew_hells_kitchen": { - "conversation": "We need to make baked_potato and mushroom_stew together. You are supposed to make mushroom_stew and I am supposed to make baked_potato, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "baked_potato", - "mushroom_stew" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make baked_potato, but you don't have the recipe for it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make mushroom_stew, but you don't have the recipe for it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 1 - }, - "1": { - "bowl": 1 - } - } - }, - "multiagent_cooking_cake_bread_hells_kitchen": { - "conversation": "We need to make cake and bread together. You are supposed to make bread and I am supposed to make cake, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cake", - "bread" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make bread. You have their recipe:\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make bread, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 7, - "max_steps_per_recipe": 5, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "milk_bucket": 2 - }, - "1": { - "milk_bucket": 1, - "egg": 1 - } - } - }, - "multiagent_cooking_bread_cake_hells_kitchen": { - "conversation": "We need to make bread and cake together. You are supposed to make cake and I am supposed to make bread, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "bread", - "cake" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make bread, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make bread. You have their recipe:\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 7, - "max_steps_per_recipe": 5, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "milk_bucket": 2 - }, - "1": { - "milk_bucket": 1, - "egg": 1 - } - } - }, - "multiagent_cooking_mushroom_stew_cooked_mutton_hells_kitchen": { - "conversation": "We need to make mushroom_stew and cooked_mutton together. You are supposed to make cooked_mutton and I am supposed to make mushroom_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "mushroom_stew", - "cooked_mutton" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make mushroom_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_mutton, but you don't have the recipe for it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "coal": 1 - } - } - }, - "multiagent_cooking_mushroom_stew_cake_hells_kitchen": { - "conversation": "We need to make mushroom_stew and cake together. You are supposed to make cake and I am supposed to make mushroom_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "mushroom_stew", - "cake" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make mushroom_stew, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 8, - "max_steps_per_recipe": 5, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", "initial_inventory": { "0": { "bowl": 1, - "milk_bucket": 2 + "coal": 1 }, "1": { - "milk_bucket": 1, - "egg": 1 + "dandelion": 1 } } }, - "multiagent_cooking_mushroom_stew_golden_carrot_hells_kitchen": { - "conversation": "We need to make mushroom_stew and golden_carrot together. You are supposed to make golden_carrot and I am supposed to make mushroom_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "multiagent_cooking_rabbit_stew_cooked_porkchop_hells_kitchen": { + "conversation": "We need to make rabbit_stew and cooked_porkchop together. You are supposed to make cooked_porkchop and I am supposed to make rabbit_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", "agent_count": 2, "target": [ - "mushroom_stew", - "golden_carrot" + "rabbit_stew", + "cooked_porkchop" ], "type": "cooking", "timeout": 300, "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." ] }, "blocked_access_to_recipe": [], "goal": { - "0": "You need to make mushroom_stew, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + "0": "You need to make rabbit_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_porkchop, but you don't have the recipe for it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 8, + "max_steps_per_recipe": 6, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_pumpkin_pie_cooked_chicken_hells_kitchen": { + "conversation": "We need to make pumpkin_pie and cooked_chicken together. You are supposed to make cooked_chicken and I am supposed to make pumpkin_pie, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "pumpkin_pie", + "cooked_chicken" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make pumpkin_pie, but you don't have the recipe for it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_chicken, but you don't have the recipe for it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 6, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "egg": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_suspicious_stew_cookie_hells_kitchen": { + "conversation": "We need to make suspicious_stew and cookie together. You are supposed to make cookie and I am supposed to make suspicious_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "suspicious_stew", + "cookie" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make suspicious_stew, but you don't have the recipe for it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cookie, but you don't have the recipe for it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." }, "task_type": "cooking", "difficulty_metrics": { @@ -501,45 +179,44 @@ "initial_inventory": { "0": { "bowl": 1, - "gold_ingot": 4 + "cocoa_beans": 1 }, "1": { - "gold_ingot": 4 + "dandelion": 1 } } }, - "multiagent_cooking_golden_carrot_cake_hells_kitchen": { - "conversation": "We need to make golden_carrot and cake together. You are supposed to make cake and I am supposed to make golden_carrot, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "multiagent_cooking_pumpkin_pie_beetroot_soup_hells_kitchen": { + "conversation": "We need to make pumpkin_pie and beetroot_soup together. You are supposed to make beetroot_soup and I am supposed to make pumpkin_pie, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", "agent_count": 2, "target": [ - "golden_carrot", - "cake" + "pumpkin_pie", + "beetroot_soup" ], "type": "cooking", "timeout": 300, "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." ] }, "blocked_access_to_recipe": [], "goal": { - "0": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + "0": "You need to make pumpkin_pie, but you don't have the recipe for it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make beetroot_soup, but you don't have the recipe for it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." }, "task_type": "cooking", "difficulty_metrics": { - "total_recipe_steps": 8, - "max_steps_per_recipe": 5, + "total_recipe_steps": 7, + "max_steps_per_recipe": 4, "unique_target_items": 2, "overall_difficulty_score": 5, "difficulty_category": "medium" @@ -547,40 +224,39 @@ "difficulty": "medium", "initial_inventory": { "0": { - "gold_ingot": 4, - "milk_bucket": 2 + "egg": 1 }, "1": { - "gold_ingot": 4, - "milk_bucket": 1, - "egg": 1 + "bowl": 1 } } }, - "multiagent_cooking_golden_carrot_bread_hells_kitchen": { - "conversation": "We need to make golden_carrot and bread together. You are supposed to make bread and I am supposed to make golden_carrot, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "multiagent_cooking_suspicious_stew_cooked_porkchop_hells_kitchen": { + "conversation": "We need to make suspicious_stew and cooked_porkchop together. You are supposed to make cooked_porkchop and I am supposed to make suspicious_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", "agent_count": 2, "target": [ - "golden_carrot", - "bread" + "suspicious_stew", + "cooked_porkchop" ], "type": "cooking", "timeout": 300, "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." ] }, "blocked_access_to_recipe": [], "goal": { - "0": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make bread. You have their recipe:\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make bread, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + "0": "You need to make suspicious_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_porkchop, but you don't have the recipe for it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." }, "task_type": "cooking", "difficulty_metrics": { @@ -593,40 +269,463 @@ "difficulty": "medium", "initial_inventory": { "0": { - "gold_ingot": 4 + "bowl": 1, + "coal": 1 }, "1": { - "gold_ingot": 4 + "dandelion": 1 } } }, - "multiagent_cooking_baked_potato_cooked_mutton_hells_kitchen": { - "conversation": "We need to make baked_potato and cooked_mutton together. You are supposed to make cooked_mutton and I am supposed to make baked_potato, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "multiagent_cooking_cooked_chicken_beetroot_soup_hells_kitchen": { + "conversation": "We need to make cooked_chicken and beetroot_soup together. You are supposed to make beetroot_soup and I am supposed to make cooked_chicken, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", "agent_count": 2, "target": [ - "baked_potato", - "cooked_mutton" + "cooked_chicken", + "beetroot_soup" ], "type": "cooking", "timeout": 300, "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", "Step 2: Get coal from your inventory or other agents.", "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." + "Step 4: Go to furnace and use it to cook the raw chicken." ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." ] }, "blocked_access_to_recipe": [], "goal": { - "0": "You need to make baked_potato, but you don't have the recipe for it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_mutton, but you don't have the recipe for it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + "0": "You need to make cooked_chicken, but you don't have the recipe for it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make beetroot_soup, but you don't have the recipe for it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 5, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_golden_apple_suspicious_stew_hells_kitchen": { + "conversation": "We need to make golden_apple and suspicious_stew together. You are supposed to make suspicious_stew and I am supposed to make golden_apple, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "golden_apple", + "suspicious_stew" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make golden_apple, but you don't have the recipe for it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make suspicious_stew, but you don't have the recipe for it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 5, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1, + "dandelion": 1 + }, + "1": { + "gold_ingot": 4, + "bowl": 1 + } + } + }, + "multiagent_cooking_cooked_chicken_golden_apple_hells_kitchen": { + "conversation": "We need to make cooked_chicken and golden_apple together. You are supposed to make golden_apple and I am supposed to make cooked_chicken, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_chicken", + "golden_apple" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_chicken, but you don't have the recipe for it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make golden_apple, but you don't have the recipe for it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 4, + "max_steps_per_recipe": 2, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1, + "gold_ingot": 4 + }, + "1": { + "gold_ingot": 4, + "apple": 1 + } + } + }, + "multiagent_cooking_cookie_cooked_beef_hells_kitchen": { + "conversation": "We need to make cookie and cooked_beef together. You are supposed to make cooked_beef and I am supposed to make cookie, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cookie", + "cooked_beef" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cookie, but you don't have the recipe for it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_beef, but you don't have the recipe for it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 5, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "cocoa_beans": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_rabbit_stew_cookie_hells_kitchen": { + "conversation": "We need to make rabbit_stew and cookie together. You are supposed to make cookie and I am supposed to make rabbit_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "rabbit_stew", + "cookie" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make rabbit_stew, but you don't have the recipe for it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cookie, but you don't have the recipe for it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 9, + "max_steps_per_recipe": 6, + "unique_target_items": 2, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "cocoa_beans": 1 + } + } + }, + "multiagent_cooking_rabbit_stew_pumpkin_pie_hells_kitchen": { + "conversation": "We need to make rabbit_stew and pumpkin_pie together. You are supposed to make pumpkin_pie and I am supposed to make rabbit_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "rabbit_stew", + "pumpkin_pie" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make rabbit_stew, but you don't have the recipe for it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make pumpkin_pie, but you don't have the recipe for it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 10, + "max_steps_per_recipe": 6, + "unique_target_items": 2, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "egg": 1 + } + } + }, + "multiagent_cooking_suspicious_stew_rabbit_stew_hells_kitchen": { + "conversation": "We need to make suspicious_stew and rabbit_stew together. You are supposed to make rabbit_stew and I am supposed to make suspicious_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "suspicious_stew", + "rabbit_stew" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make suspicious_stew, but you don't have the recipe for it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make rabbit_stew, but you don't have the recipe for it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 9, + "max_steps_per_recipe": 6, + "unique_target_items": 2, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "bowl": 1, + "dandelion": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_beetroot_soup_suspicious_stew_hells_kitchen": { + "conversation": "We need to make beetroot_soup and suspicious_stew together. You are supposed to make suspicious_stew and I am supposed to make beetroot_soup, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "beetroot_soup", + "suspicious_stew" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make beetroot_soup, but you don't have the recipe for it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make suspicious_stew, but you don't have the recipe for it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 6, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1, + "dandelion": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_suspicious_stew_golden_apple_hells_kitchen": { + "conversation": "We need to make suspicious_stew and golden_apple together. You are supposed to make golden_apple and I am supposed to make suspicious_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "suspicious_stew", + "golden_apple" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make suspicious_stew, but you don't have the recipe for it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make golden_apple, but you don't have the recipe for it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 5, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1, + "gold_ingot": 4, + "apple": 1 + }, + "1": { + "dandelion": 1, + "gold_ingot": 4 + } + } + }, + "multiagent_cooking_cooked_beef_cooked_chicken_hells_kitchen": { + "conversation": "We need to make cooked_beef and cooked_chicken together. You are supposed to make cooked_chicken and I am supposed to make cooked_beef, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_beef", + "cooked_chicken" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_beef, but you don't have the recipe for it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_chicken, but you don't have the recipe for it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." }, "task_type": "cooking", "difficulty_metrics": { @@ -646,129 +745,32 @@ } } }, - "multiagent_cooking_cake_mushroom_stew_hells_kitchen": { - "conversation": "We need to make cake and mushroom_stew together. You are supposed to make mushroom_stew and I am supposed to make cake, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "multiagent_cooking_cooked_beef_cookie_hells_kitchen": { + "conversation": "We need to make cooked_beef and cookie together. You are supposed to make cookie and I am supposed to make cooked_beef, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", "agent_count": 2, "target": [ - "cake", - "mushroom_stew" + "cooked_beef", + "cookie" ], "type": "cooking", "timeout": 300, "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make mushroom_stew, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 8, - "max_steps_per_recipe": 5, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "milk_bucket": 2, - "bowl": 1 - }, - "1": { - "milk_bucket": 1, - "egg": 1 - } - } - }, - "multiagent_cooking_cake_cooked_mutton_hells_kitchen": { - "conversation": "We need to make cake and cooked_mutton together. You are supposed to make cooked_mutton and I am supposed to make cake, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cake", - "cooked_mutton" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", "Step 2: Get coal from your inventory or other agents.", "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_mutton, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 7, - "max_steps_per_recipe": 5, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "milk_bucket": 2, - "coal": 1 - }, - "1": { - "milk_bucket": 1, - "egg": 1 - } - } - }, - "multiagent_cooking_golden_carrot_baked_potato_hells_kitchen": { - "conversation": "We need to make golden_carrot and baked_potato together. You are supposed to make baked_potato and I am supposed to make golden_carrot, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "golden_carrot", - "baked_potato" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + "Step 4: Go to furnace and use it to cook the beef." ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." ] }, "blocked_access_to_recipe": [], "goal": { - "0": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make baked_potato, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + "0": "You need to make cooked_beef, but you don't have the recipe for it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cookie, but you don't have the recipe for it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." }, "task_type": "cooking", "difficulty_metrics": { @@ -781,46 +783,44 @@ "difficulty": "medium", "initial_inventory": { "0": { - "gold_ingot": 4, "coal": 1 }, "1": { - "gold_ingot": 4 + "cocoa_beans": 1 } } }, - "multiagent_cooking_cake_golden_carrot_hells_kitchen": { - "conversation": "We need to make cake and golden_carrot together. You are supposed to make golden_carrot and I am supposed to make cake, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "multiagent_cooking_suspicious_stew_cooked_beef_hells_kitchen": { + "conversation": "We need to make suspicious_stew and cooked_beef together. You are supposed to make cooked_beef and I am supposed to make suspicious_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", "agent_count": 2, "target": [ - "cake", - "golden_carrot" + "suspicious_stew", + "cooked_beef" ], "type": "cooking", "timeout": 300, "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." ] }, "blocked_access_to_recipe": [], "goal": { - "0": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + "0": "You need to make suspicious_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_beef, but you don't have the recipe for it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." }, "task_type": "cooking", "difficulty_metrics": { - "total_recipe_steps": 8, - "max_steps_per_recipe": 5, + "total_recipe_steps": 5, + "max_steps_per_recipe": 3, "unique_target_items": 2, "overall_difficulty_score": 5, "difficulty_category": "medium" @@ -828,84 +828,131 @@ "difficulty": "medium", "initial_inventory": { "0": { - "milk_bucket": 2, - "gold_ingot": 4 + "bowl": 1, + "coal": 1 }, "1": { - "milk_bucket": 1, + "dandelion": 1 + } + } + }, + "multiagent_cooking_golden_apple_cooked_porkchop_hells_kitchen": { + "conversation": "We need to make golden_apple and cooked_porkchop together. You are supposed to make cooked_porkchop and I am supposed to make golden_apple, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "golden_apple", + "cooked_porkchop" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make golden_apple, but you don't have the recipe for it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_porkchop, but you don't have the recipe for it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 4, + "max_steps_per_recipe": 2, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1 + }, + "1": { + "gold_ingot": 4, + "coal": 1 + } + } + }, + "multiagent_cooking_pumpkin_pie_golden_apple_hells_kitchen": { + "conversation": "We need to make pumpkin_pie and golden_apple together. You are supposed to make golden_apple and I am supposed to make pumpkin_pie, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "pumpkin_pie", + "golden_apple" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make pumpkin_pie, but you don't have the recipe for it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make golden_apple, but you don't have the recipe for it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 6, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { "egg": 1, "gold_ingot": 4 - } - } - }, - "multiagent_cooking_bread_golden_carrot_hells_kitchen": { - "conversation": "We need to make bread and golden_carrot together. You are supposed to make golden_carrot and I am supposed to make bread, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "bread", - "golden_carrot" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make bread, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make bread. You have their recipe:\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "gold_ingot": 4 }, "1": { - "gold_ingot": 4 + "gold_ingot": 4, + "apple": 1 } } }, - "multiagent_cooking_golden_carrot_mushroom_stew_hells_kitchen": { - "conversation": "We need to make golden_carrot and mushroom_stew together. You are supposed to make mushroom_stew and I am supposed to make golden_carrot, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "multiagent_cooking_cookie_beetroot_soup_hells_kitchen": { + "conversation": "We need to make cookie and beetroot_soup together. You are supposed to make beetroot_soup and I am supposed to make cookie, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", "agent_count": 2, "target": [ - "golden_carrot", - "mushroom_stew" + "cookie", + "beetroot_soup" ], "type": "cooking", "timeout": 300, "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." ] }, "blocked_access_to_recipe": [], "goal": { - "0": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make mushroom_stew, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + "0": "You need to make cookie, but you don't have the recipe for it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make beetroot_soup, but you don't have the recipe for it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." }, "task_type": "cooking", "difficulty_metrics": { @@ -918,41 +965,86 @@ "difficulty": "medium", "initial_inventory": { "0": { - "gold_ingot": 4, - "bowl": 1 + "cocoa_beans": 1 }, "1": { - "gold_ingot": 4 + "bowl": 1 } } }, - "multiagent_cooking_cooked_mutton_baked_potato_hells_kitchen": { - "conversation": "We need to make cooked_mutton and baked_potato together. You are supposed to make baked_potato and I am supposed to make cooked_mutton, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "multiagent_cooking_cooked_beef_pumpkin_pie_hells_kitchen": { + "conversation": "We need to make cooked_beef and pumpkin_pie together. You are supposed to make pumpkin_pie and I am supposed to make cooked_beef, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", "agent_count": 2, "target": [ - "cooked_mutton", - "baked_potato" + "cooked_beef", + "pumpkin_pie" ], "type": "cooking", "timeout": 300, "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", "Step 2: Get coal from your inventory or other agents.", "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." + "Step 4: Go to furnace and use it to cook the beef." ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." ] }, "blocked_access_to_recipe": [], "goal": { - "0": "You need to make cooked_mutton, but you don't have the recipe for it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make baked_potato, but you don't have the recipe for it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + "0": "You need to make cooked_beef, but you don't have the recipe for it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make pumpkin_pie, but you don't have the recipe for it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 6, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "egg": 1 + } + } + }, + "multiagent_cooking_cooked_chicken_cooked_porkchop_hells_kitchen": { + "conversation": "We need to make cooked_chicken and cooked_porkchop together. You are supposed to make cooked_porkchop and I am supposed to make cooked_chicken, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_chicken", + "cooked_porkchop" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_chicken, but you don't have the recipe for it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_porkchop, but you don't have the recipe for it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." }, "task_type": "cooking", "difficulty_metrics": { @@ -972,32 +1064,217 @@ } } }, - "multiagent_cooking_cooked_mutton_golden_carrot_hells_kitchen": { - "conversation": "We need to make cooked_mutton and golden_carrot together. You are supposed to make golden_carrot and I am supposed to make cooked_mutton, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "multiagent_cooking_beetroot_soup_cookie_hells_kitchen": { + "conversation": "We need to make beetroot_soup and cookie together. You are supposed to make cookie and I am supposed to make beetroot_soup, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", "agent_count": 2, "target": [ - "cooked_mutton", - "golden_carrot" + "beetroot_soup", + "cookie" ], "type": "cooking", "timeout": 300, "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." ] }, "blocked_access_to_recipe": [], "goal": { - "0": "You need to make cooked_mutton, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + "0": "You need to make beetroot_soup, but you don't have the recipe for it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cookie, but you don't have the recipe for it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 6, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "cocoa_beans": 1 + } + } + }, + "multiagent_cooking_beetroot_soup_rabbit_stew_hells_kitchen": { + "conversation": "We need to make beetroot_soup and rabbit_stew together. You are supposed to make rabbit_stew and I am supposed to make beetroot_soup, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "beetroot_soup", + "rabbit_stew" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make beetroot_soup, but you don't have the recipe for it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make rabbit_stew, but you don't have the recipe for it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 9, + "max_steps_per_recipe": 6, + "unique_target_items": 2, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_cooked_chicken_pumpkin_pie_hells_kitchen": { + "conversation": "We need to make cooked_chicken and pumpkin_pie together. You are supposed to make pumpkin_pie and I am supposed to make cooked_chicken, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_chicken", + "pumpkin_pie" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_chicken, but you don't have the recipe for it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make pumpkin_pie, but you don't have the recipe for it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 6, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "egg": 1 + } + } + }, + "multiagent_cooking_cooked_porkchop_cooked_beef_hells_kitchen": { + "conversation": "We need to make cooked_porkchop and cooked_beef together. You are supposed to make cooked_beef and I am supposed to make cooked_porkchop, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_porkchop", + "cooked_beef" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_porkchop, but you don't have the recipe for it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_beef, but you don't have the recipe for it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 4, + "max_steps_per_recipe": 2, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_cooked_porkchop_cookie_hells_kitchen": { + "conversation": "We need to make cooked_porkchop and cookie together. You are supposed to make cookie and I am supposed to make cooked_porkchop, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_porkchop", + "cookie" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_porkchop, but you don't have the recipe for it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cookie, but you don't have the recipe for it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." }, "task_type": "cooking", "difficulty_metrics": { @@ -1010,40 +1287,85 @@ "difficulty": "medium", "initial_inventory": { "0": { - "coal": 1, - "gold_ingot": 4 + "coal": 1 }, "1": { - "gold_ingot": 4 + "cocoa_beans": 1 } } }, - "multiagent_cooking_baked_potato_golden_carrot_hells_kitchen": { - "conversation": "We need to make baked_potato and golden_carrot together. You are supposed to make golden_carrot and I am supposed to make baked_potato, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "multiagent_cooking_cooked_rabbit_cooked_porkchop_hells_kitchen": { + "conversation": "We need to make cooked_rabbit and cooked_porkchop together. You are supposed to make cooked_porkchop and I am supposed to make cooked_rabbit, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", "agent_count": 2, "target": [ - "baked_potato", - "golden_carrot" + "cooked_rabbit", + "cooked_porkchop" ], "type": "cooking", "timeout": 300, "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", "Step 2: Get coal from your inventory or other agents.", "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." + "Step 2: Go to furnace and use it to cook the raw rabbit." ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." ] }, "blocked_access_to_recipe": [], "goal": { - "0": "You need to make baked_potato, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + "0": "You need to make cooked_rabbit, but you don't have the recipe for it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_porkchop, but you don't have the recipe for it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 4, + "max_steps_per_recipe": 2, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_beetroot_soup_cooked_rabbit_hells_kitchen": { + "conversation": "We need to make beetroot_soup and cooked_rabbit together. You are supposed to make cooked_rabbit and I am supposed to make beetroot_soup, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "beetroot_soup", + "cooked_rabbit" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make beetroot_soup, but you don't have the recipe for it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_rabbit, but you don't have the recipe for it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." }, "task_type": "cooking", "difficulty_metrics": { @@ -1056,47 +1378,841 @@ "difficulty": "medium", "initial_inventory": { "0": { - "coal": 1, - "gold_ingot": 4 + "bowl": 1 }, "1": { - "gold_ingot": 4 + "coal": 1 } } }, - "multiagent_cooking_cake_baked_potato_hells_kitchen": { - "conversation": "We need to make cake and baked_potato together. You are supposed to make baked_potato and I am supposed to make cake, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "multiagent_cooking_golden_apple_cooked_beef_hells_kitchen": { + "conversation": "We need to make golden_apple and cooked_beef together. You are supposed to make cooked_beef and I am supposed to make golden_apple, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", "agent_count": 2, "target": [ - "cake", - "baked_potato" + "golden_apple", + "cooked_beef" ], "type": "cooking", "timeout": 300, "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", "Step 2: Get coal from your inventory or other agents.", "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." + "Step 4: Go to furnace and use it to cook the beef." ] }, "blocked_access_to_recipe": [], "goal": { - "0": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make baked_potato, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + "0": "You need to make golden_apple, but you don't have the recipe for it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_beef, but you don't have the recipe for it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 4, + "max_steps_per_recipe": 2, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1 + }, + "1": { + "gold_ingot": 4, + "coal": 1 + } + } + }, + "multiagent_cooking_rabbit_stew_cooked_chicken_hells_kitchen": { + "conversation": "We need to make rabbit_stew and cooked_chicken together. You are supposed to make cooked_chicken and I am supposed to make rabbit_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "rabbit_stew", + "cooked_chicken" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make rabbit_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_chicken, but you don't have the recipe for it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 8, + "max_steps_per_recipe": 6, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_cooked_porkchop_beetroot_soup_hells_kitchen": { + "conversation": "We need to make cooked_porkchop and beetroot_soup together. You are supposed to make beetroot_soup and I am supposed to make cooked_porkchop, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_porkchop", + "beetroot_soup" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_porkchop, but you don't have the recipe for it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make beetroot_soup, but you don't have the recipe for it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 5, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_cooked_porkchop_golden_apple_hells_kitchen": { + "conversation": "We need to make cooked_porkchop and golden_apple together. You are supposed to make golden_apple and I am supposed to make cooked_porkchop, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_porkchop", + "golden_apple" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_porkchop, but you don't have the recipe for it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make golden_apple, but you don't have the recipe for it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 4, + "max_steps_per_recipe": 2, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1, + "gold_ingot": 4 + }, + "1": { + "gold_ingot": 4, + "apple": 1 + } + } + }, + "multiagent_cooking_rabbit_stew_cooked_rabbit_hells_kitchen": { + "conversation": "We need to make rabbit_stew and cooked_rabbit together. You are supposed to make cooked_rabbit and I am supposed to make rabbit_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "rabbit_stew", + "cooked_rabbit" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make rabbit_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_rabbit, but you don't have the recipe for it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 8, + "max_steps_per_recipe": 6, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_cooked_chicken_cooked_beef_hells_kitchen": { + "conversation": "We need to make cooked_chicken and cooked_beef together. You are supposed to make cooked_beef and I am supposed to make cooked_chicken, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_chicken", + "cooked_beef" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_chicken, but you don't have the recipe for it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_beef, but you don't have the recipe for it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 4, + "max_steps_per_recipe": 2, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_golden_apple_pumpkin_pie_hells_kitchen": { + "conversation": "We need to make golden_apple and pumpkin_pie together. You are supposed to make pumpkin_pie and I am supposed to make golden_apple, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "golden_apple", + "pumpkin_pie" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make golden_apple, but you don't have the recipe for it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make pumpkin_pie, but you don't have the recipe for it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 6, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1 + }, + "1": { + "gold_ingot": 4, + "egg": 1 + } + } + }, + "multiagent_cooking_pumpkin_pie_cooked_porkchop_hells_kitchen": { + "conversation": "We need to make pumpkin_pie and cooked_porkchop together. You are supposed to make cooked_porkchop and I am supposed to make pumpkin_pie, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "pumpkin_pie", + "cooked_porkchop" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make pumpkin_pie, but you don't have the recipe for it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_porkchop, but you don't have the recipe for it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 6, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "egg": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_cooked_porkchop_rabbit_stew_hells_kitchen": { + "conversation": "We need to make cooked_porkchop and rabbit_stew together. You are supposed to make rabbit_stew and I am supposed to make cooked_porkchop, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_porkchop", + "rabbit_stew" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_porkchop, but you don't have the recipe for it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make rabbit_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 8, + "max_steps_per_recipe": 6, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_pumpkin_pie_rabbit_stew_hells_kitchen": { + "conversation": "We need to make pumpkin_pie and rabbit_stew together. You are supposed to make rabbit_stew and I am supposed to make pumpkin_pie, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "pumpkin_pie", + "rabbit_stew" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make pumpkin_pie, but you don't have the recipe for it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make rabbit_stew, but you don't have the recipe for it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 10, + "max_steps_per_recipe": 6, + "unique_target_items": 2, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "egg": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_cookie_golden_apple_hells_kitchen": { + "conversation": "We need to make cookie and golden_apple together. You are supposed to make golden_apple and I am supposed to make cookie, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cookie", + "golden_apple" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cookie, but you don't have the recipe for it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make golden_apple, but you don't have the recipe for it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 5, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "cocoa_beans": 1, + "gold_ingot": 4 + }, + "1": { + "gold_ingot": 4, + "apple": 1 + } + } + }, + "multiagent_cooking_cooked_beef_cooked_porkchop_hells_kitchen": { + "conversation": "We need to make cooked_beef and cooked_porkchop together. You are supposed to make cooked_porkchop and I am supposed to make cooked_beef, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_beef", + "cooked_porkchop" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_beef, but you don't have the recipe for it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_porkchop, but you don't have the recipe for it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 4, + "max_steps_per_recipe": 2, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_cookie_cooked_rabbit_hells_kitchen": { + "conversation": "We need to make cookie and cooked_rabbit together. You are supposed to make cooked_rabbit and I am supposed to make cookie, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cookie", + "cooked_rabbit" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cookie, but you don't have the recipe for it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_rabbit, but you don't have the recipe for it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 5, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "cocoa_beans": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_golden_apple_cooked_rabbit_hells_kitchen": { + "conversation": "We need to make golden_apple and cooked_rabbit together. You are supposed to make cooked_rabbit and I am supposed to make golden_apple, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "golden_apple", + "cooked_rabbit" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make golden_apple, but you don't have the recipe for it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_rabbit, but you don't have the recipe for it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 4, + "max_steps_per_recipe": 2, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1 + }, + "1": { + "gold_ingot": 4, + "coal": 1 + } + } + }, + "multiagent_cooking_cooked_porkchop_pumpkin_pie_hells_kitchen": { + "conversation": "We need to make cooked_porkchop and pumpkin_pie together. You are supposed to make pumpkin_pie and I am supposed to make cooked_porkchop, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_porkchop", + "pumpkin_pie" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_porkchop, but you don't have the recipe for it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make pumpkin_pie, but you don't have the recipe for it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 6, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "egg": 1 + } + } + }, + "multiagent_cooking_beetroot_soup_cooked_beef_hells_kitchen": { + "conversation": "We need to make beetroot_soup and cooked_beef together. You are supposed to make cooked_beef and I am supposed to make beetroot_soup, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "beetroot_soup", + "cooked_beef" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make beetroot_soup, but you don't have the recipe for it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_beef, but you don't have the recipe for it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 5, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_rabbit_stew_beetroot_soup_hells_kitchen": { + "conversation": "We need to make rabbit_stew and beetroot_soup together. You are supposed to make beetroot_soup and I am supposed to make rabbit_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "rabbit_stew", + "beetroot_soup" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make rabbit_stew, but you don't have the recipe for it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make beetroot_soup, but you don't have the recipe for it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 9, + "max_steps_per_recipe": 6, + "unique_target_items": 2, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_pumpkin_pie_suspicious_stew_hells_kitchen": { + "conversation": "We need to make pumpkin_pie and suspicious_stew together. You are supposed to make suspicious_stew and I am supposed to make pumpkin_pie, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "pumpkin_pie", + "suspicious_stew" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make pumpkin_pie, but you don't have the recipe for it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make suspicious_stew, but you don't have the recipe for it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." }, "task_type": "cooking", "difficulty_metrics": { "total_recipe_steps": 7, - "max_steps_per_recipe": 5, + "max_steps_per_recipe": 4, "unique_target_items": 2, "overall_difficulty_score": 5, "difficulty_category": "medium" @@ -1104,13 +2220,1959 @@ "difficulty": "medium", "initial_inventory": { "0": { - "milk_bucket": 2, + "egg": 1, + "dandelion": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_cooked_rabbit_suspicious_stew_hells_kitchen": { + "conversation": "We need to make cooked_rabbit and suspicious_stew together. You are supposed to make suspicious_stew and I am supposed to make cooked_rabbit, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_rabbit", + "suspicious_stew" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_rabbit, but you don't have the recipe for it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make suspicious_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 5, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1, + "dandelion": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_cooked_beef_golden_apple_hells_kitchen": { + "conversation": "We need to make cooked_beef and golden_apple together. You are supposed to make golden_apple and I am supposed to make cooked_beef, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_beef", + "golden_apple" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_beef, but you don't have the recipe for it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make golden_apple, but you don't have the recipe for it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 4, + "max_steps_per_recipe": 2, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1, + "gold_ingot": 4 + }, + "1": { + "gold_ingot": 4, + "apple": 1 + } + } + }, + "multiagent_cooking_cooked_rabbit_golden_apple_hells_kitchen": { + "conversation": "We need to make cooked_rabbit and golden_apple together. You are supposed to make golden_apple and I am supposed to make cooked_rabbit, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_rabbit", + "golden_apple" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_rabbit, but you don't have the recipe for it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make golden_apple, but you don't have the recipe for it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 4, + "max_steps_per_recipe": 2, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1, + "gold_ingot": 4 + }, + "1": { + "gold_ingot": 4, + "apple": 1 + } + } + }, + "multiagent_cooking_beetroot_soup_golden_apple_hells_kitchen": { + "conversation": "We need to make beetroot_soup and golden_apple together. You are supposed to make golden_apple and I am supposed to make beetroot_soup, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "beetroot_soup", + "golden_apple" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make beetroot_soup, but you don't have the recipe for it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make golden_apple, but you don't have the recipe for it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 5, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1, + "gold_ingot": 4 + }, + "1": { + "gold_ingot": 4, + "apple": 1 + } + } + }, + "multiagent_cooking_pumpkin_pie_cookie_hells_kitchen": { + "conversation": "We need to make pumpkin_pie and cookie together. You are supposed to make cookie and I am supposed to make pumpkin_pie, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "pumpkin_pie", + "cookie" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make pumpkin_pie, but you don't have the recipe for it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cookie, but you don't have the recipe for it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "egg": 1 + }, + "1": { + "cocoa_beans": 1 + } + } + }, + "multiagent_cooking_golden_apple_beetroot_soup_hells_kitchen": { + "conversation": "We need to make golden_apple and beetroot_soup together. You are supposed to make beetroot_soup and I am supposed to make golden_apple, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "golden_apple", + "beetroot_soup" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make golden_apple, but you don't have the recipe for it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make beetroot_soup, but you don't have the recipe for it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 5, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1 + }, + "1": { + "gold_ingot": 4, + "bowl": 1 + } + } + }, + "multiagent_cooking_suspicious_stew_beetroot_soup_hells_kitchen": { + "conversation": "We need to make suspicious_stew and beetroot_soup together. You are supposed to make beetroot_soup and I am supposed to make suspicious_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "suspicious_stew", + "beetroot_soup" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make suspicious_stew, but you don't have the recipe for it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make beetroot_soup, but you don't have the recipe for it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 6, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1, + "dandelion": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_pumpkin_pie_cooked_beef_hells_kitchen": { + "conversation": "We need to make pumpkin_pie and cooked_beef together. You are supposed to make cooked_beef and I am supposed to make pumpkin_pie, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "pumpkin_pie", + "cooked_beef" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make pumpkin_pie, but you don't have the recipe for it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_beef, but you don't have the recipe for it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 6, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "egg": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_cooked_rabbit_cooked_chicken_hells_kitchen": { + "conversation": "We need to make cooked_rabbit and cooked_chicken together. You are supposed to make cooked_chicken and I am supposed to make cooked_rabbit, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_rabbit", + "cooked_chicken" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_rabbit, but you don't have the recipe for it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_chicken, but you don't have the recipe for it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 4, + "max_steps_per_recipe": 2, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { "coal": 1 }, "1": { - "milk_bucket": 1, + "coal": 1 + } + } + }, + "multiagent_cooking_golden_apple_rabbit_stew_hells_kitchen": { + "conversation": "We need to make golden_apple and rabbit_stew together. You are supposed to make rabbit_stew and I am supposed to make golden_apple, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "golden_apple", + "rabbit_stew" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make golden_apple, but you don't have the recipe for it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make rabbit_stew, but you don't have the recipe for it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 8, + "max_steps_per_recipe": 6, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1 + }, + "1": { + "gold_ingot": 4, + "bowl": 1 + } + } + }, + "multiagent_cooking_cooked_porkchop_cooked_rabbit_hells_kitchen": { + "conversation": "We need to make cooked_porkchop and cooked_rabbit together. You are supposed to make cooked_rabbit and I am supposed to make cooked_porkchop, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_porkchop", + "cooked_rabbit" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_porkchop, but you don't have the recipe for it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_rabbit, but you don't have the recipe for it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 4, + "max_steps_per_recipe": 2, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_cookie_rabbit_stew_hells_kitchen": { + "conversation": "We need to make cookie and rabbit_stew together. You are supposed to make rabbit_stew and I am supposed to make cookie, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cookie", + "rabbit_stew" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cookie, but you don't have the recipe for it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make rabbit_stew, but you don't have the recipe for it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 9, + "max_steps_per_recipe": 6, + "unique_target_items": 2, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "cocoa_beans": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_cookie_cooked_chicken_hells_kitchen": { + "conversation": "We need to make cookie and cooked_chicken together. You are supposed to make cooked_chicken and I am supposed to make cookie, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cookie", + "cooked_chicken" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cookie, but you don't have the recipe for it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_chicken, but you don't have the recipe for it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 5, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "cocoa_beans": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_cooked_chicken_cookie_hells_kitchen": { + "conversation": "We need to make cooked_chicken and cookie together. You are supposed to make cookie and I am supposed to make cooked_chicken, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_chicken", + "cookie" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_chicken, but you don't have the recipe for it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cookie, but you don't have the recipe for it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 5, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "cocoa_beans": 1 + } + } + }, + "multiagent_cooking_rabbit_stew_golden_apple_hells_kitchen": { + "conversation": "We need to make rabbit_stew and golden_apple together. You are supposed to make golden_apple and I am supposed to make rabbit_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "rabbit_stew", + "golden_apple" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make rabbit_stew, but you don't have the recipe for it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make golden_apple, but you don't have the recipe for it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 8, + "max_steps_per_recipe": 6, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1, + "gold_ingot": 4 + }, + "1": { + "gold_ingot": 4, + "apple": 1 + } + } + }, + "multiagent_cooking_cooked_chicken_rabbit_stew_hells_kitchen": { + "conversation": "We need to make cooked_chicken and rabbit_stew together. You are supposed to make rabbit_stew and I am supposed to make cooked_chicken, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_chicken", + "rabbit_stew" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_chicken, but you don't have the recipe for it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make rabbit_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 8, + "max_steps_per_recipe": 6, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_cooked_rabbit_cookie_hells_kitchen": { + "conversation": "We need to make cooked_rabbit and cookie together. You are supposed to make cookie and I am supposed to make cooked_rabbit, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_rabbit", + "cookie" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_rabbit, but you don't have the recipe for it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cookie, but you don't have the recipe for it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 5, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "cocoa_beans": 1 + } + } + }, + "multiagent_cooking_cookie_pumpkin_pie_hells_kitchen": { + "conversation": "We need to make cookie and pumpkin_pie together. You are supposed to make pumpkin_pie and I am supposed to make cookie, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cookie", + "pumpkin_pie" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cookie, but you don't have the recipe for it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make pumpkin_pie, but you don't have the recipe for it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "cocoa_beans": 1 + }, + "1": { "egg": 1 } } + }, + "multiagent_cooking_beetroot_soup_pumpkin_pie_hells_kitchen": { + "conversation": "We need to make beetroot_soup and pumpkin_pie together. You are supposed to make pumpkin_pie and I am supposed to make beetroot_soup, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "beetroot_soup", + "pumpkin_pie" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make beetroot_soup, but you don't have the recipe for it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make pumpkin_pie, but you don't have the recipe for it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "egg": 1 + } + } + }, + "multiagent_cooking_cooked_beef_cooked_rabbit_hells_kitchen": { + "conversation": "We need to make cooked_beef and cooked_rabbit together. You are supposed to make cooked_rabbit and I am supposed to make cooked_beef, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_beef", + "cooked_rabbit" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_beef, but you don't have the recipe for it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_rabbit, but you don't have the recipe for it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 4, + "max_steps_per_recipe": 2, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_pumpkin_pie_cooked_rabbit_hells_kitchen": { + "conversation": "We need to make pumpkin_pie and cooked_rabbit together. You are supposed to make cooked_rabbit and I am supposed to make pumpkin_pie, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "pumpkin_pie", + "cooked_rabbit" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make pumpkin_pie, but you don't have the recipe for it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_rabbit, but you don't have the recipe for it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 6, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "egg": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_cooked_beef_beetroot_soup_hells_kitchen": { + "conversation": "We need to make cooked_beef and beetroot_soup together. You are supposed to make beetroot_soup and I am supposed to make cooked_beef, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_beef", + "beetroot_soup" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_beef, but you don't have the recipe for it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make beetroot_soup, but you don't have the recipe for it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 5, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_cooked_rabbit_rabbit_stew_hells_kitchen": { + "conversation": "We need to make cooked_rabbit and rabbit_stew together. You are supposed to make rabbit_stew and I am supposed to make cooked_rabbit, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_rabbit", + "rabbit_stew" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_rabbit, but you don't have the recipe for it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make rabbit_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 8, + "max_steps_per_recipe": 6, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_rabbit_stew_cooked_beef_hells_kitchen": { + "conversation": "We need to make rabbit_stew and cooked_beef together. You are supposed to make cooked_beef and I am supposed to make rabbit_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "rabbit_stew", + "cooked_beef" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make rabbit_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_beef, but you don't have the recipe for it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 8, + "max_steps_per_recipe": 6, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_golden_apple_cooked_chicken_hells_kitchen": { + "conversation": "We need to make golden_apple and cooked_chicken together. You are supposed to make cooked_chicken and I am supposed to make golden_apple, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "golden_apple", + "cooked_chicken" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make golden_apple, but you don't have the recipe for it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_chicken, but you don't have the recipe for it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 4, + "max_steps_per_recipe": 2, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1 + }, + "1": { + "gold_ingot": 4, + "coal": 1 + } + } + }, + "multiagent_cooking_beetroot_soup_cooked_chicken_hells_kitchen": { + "conversation": "We need to make beetroot_soup and cooked_chicken together. You are supposed to make cooked_chicken and I am supposed to make beetroot_soup, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "beetroot_soup", + "cooked_chicken" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make beetroot_soup, but you don't have the recipe for it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_chicken, but you don't have the recipe for it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 5, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_cooked_chicken_suspicious_stew_hells_kitchen": { + "conversation": "We need to make cooked_chicken and suspicious_stew together. You are supposed to make suspicious_stew and I am supposed to make cooked_chicken, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_chicken", + "suspicious_stew" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_chicken, but you don't have the recipe for it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make suspicious_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 5, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1, + "dandelion": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_suspicious_stew_pumpkin_pie_hells_kitchen": { + "conversation": "We need to make suspicious_stew and pumpkin_pie together. You are supposed to make pumpkin_pie and I am supposed to make suspicious_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "suspicious_stew", + "pumpkin_pie" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make suspicious_stew, but you don't have the recipe for it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make pumpkin_pie, but you don't have the recipe for it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1, + "egg": 1 + }, + "1": { + "dandelion": 1 + } + } + }, + "multiagent_cooking_cooked_rabbit_cooked_beef_hells_kitchen": { + "conversation": "We need to make cooked_rabbit and cooked_beef together. You are supposed to make cooked_beef and I am supposed to make cooked_rabbit, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_rabbit", + "cooked_beef" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_rabbit, but you don't have the recipe for it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_beef, but you don't have the recipe for it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 4, + "max_steps_per_recipe": 2, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_cooked_porkchop_cooked_chicken_hells_kitchen": { + "conversation": "We need to make cooked_porkchop and cooked_chicken together. You are supposed to make cooked_chicken and I am supposed to make cooked_porkchop, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_porkchop", + "cooked_chicken" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_porkchop, but you don't have the recipe for it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_chicken, but you don't have the recipe for it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 4, + "max_steps_per_recipe": 2, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_cooked_beef_rabbit_stew_hells_kitchen": { + "conversation": "We need to make cooked_beef and rabbit_stew together. You are supposed to make rabbit_stew and I am supposed to make cooked_beef, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_beef", + "rabbit_stew" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_beef, but you don't have the recipe for it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make rabbit_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 8, + "max_steps_per_recipe": 6, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_golden_apple_cookie_hells_kitchen": { + "conversation": "We need to make golden_apple and cookie together. You are supposed to make cookie and I am supposed to make golden_apple, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "golden_apple", + "cookie" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make golden_apple, but you don't have the recipe for it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cookie, but you don't have the recipe for it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 5, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1 + }, + "1": { + "gold_ingot": 4, + "cocoa_beans": 1 + } + } + }, + "multiagent_cooking_cooked_rabbit_pumpkin_pie_hells_kitchen": { + "conversation": "We need to make cooked_rabbit and pumpkin_pie together. You are supposed to make pumpkin_pie and I am supposed to make cooked_rabbit, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_rabbit", + "pumpkin_pie" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_rabbit, but you don't have the recipe for it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make pumpkin_pie, but you don't have the recipe for it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 6, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "egg": 1 + } + } + }, + "multiagent_cooking_rabbit_stew_suspicious_stew_hells_kitchen": { + "conversation": "We need to make rabbit_stew and suspicious_stew together. You are supposed to make suspicious_stew and I am supposed to make rabbit_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "rabbit_stew", + "suspicious_stew" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make rabbit_stew, but you don't have the recipe for it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make suspicious_stew, but you don't have the recipe for it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 9, + "max_steps_per_recipe": 6, + "unique_target_items": 2, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "bowl": 1, + "dandelion": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_beetroot_soup_cooked_porkchop_hells_kitchen": { + "conversation": "We need to make beetroot_soup and cooked_porkchop together. You are supposed to make cooked_porkchop and I am supposed to make beetroot_soup, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "beetroot_soup", + "cooked_porkchop" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make beetroot_soup, but you don't have the recipe for it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_porkchop, but you don't have the recipe for it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 5, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_suspicious_stew_cooked_rabbit_hells_kitchen": { + "conversation": "We need to make suspicious_stew and cooked_rabbit together. You are supposed to make cooked_rabbit and I am supposed to make suspicious_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "suspicious_stew", + "cooked_rabbit" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make suspicious_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_rabbit, but you don't have the recipe for it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 5, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1, + "coal": 1 + }, + "1": { + "dandelion": 1 + } + } + }, + "multiagent_cooking_cookie_suspicious_stew_hells_kitchen": { + "conversation": "We need to make cookie and suspicious_stew together. You are supposed to make suspicious_stew and I am supposed to make cookie, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cookie", + "suspicious_stew" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cookie, but you don't have the recipe for it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make suspicious_stew, but you don't have the recipe for it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 6, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "cocoa_beans": 1, + "dandelion": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_cooked_porkchop_suspicious_stew_hells_kitchen": { + "conversation": "We need to make cooked_porkchop and suspicious_stew together. You are supposed to make suspicious_stew and I am supposed to make cooked_porkchop, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_porkchop", + "suspicious_stew" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_porkchop, but you don't have the recipe for it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make suspicious_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 5, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1, + "dandelion": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_cooked_rabbit_beetroot_soup_hells_kitchen": { + "conversation": "We need to make cooked_rabbit and beetroot_soup together. You are supposed to make beetroot_soup and I am supposed to make cooked_rabbit, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_rabbit", + "beetroot_soup" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_rabbit, but you don't have the recipe for it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make beetroot_soup, but you don't have the recipe for it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 5, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_cookie_cooked_porkchop_hells_kitchen": { + "conversation": "We need to make cookie and cooked_porkchop together. You are supposed to make cooked_porkchop and I am supposed to make cookie, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cookie", + "cooked_porkchop" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cookie, but you don't have the recipe for it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_porkchop, but you don't have the recipe for it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 5, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "cocoa_beans": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_cooked_chicken_cooked_rabbit_hells_kitchen": { + "conversation": "We need to make cooked_chicken and cooked_rabbit together. You are supposed to make cooked_rabbit and I am supposed to make cooked_chicken, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_chicken", + "cooked_rabbit" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_chicken, but you don't have the recipe for it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_rabbit, but you don't have the recipe for it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 4, + "max_steps_per_recipe": 2, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_cooked_beef_suspicious_stew_hells_kitchen": { + "conversation": "We need to make cooked_beef and suspicious_stew together. You are supposed to make suspicious_stew and I am supposed to make cooked_beef, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_beef", + "suspicious_stew" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_beef, but you don't have the recipe for it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make suspicious_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 5, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1, + "dandelion": 1 + }, + "1": { + "bowl": 1 + } + } } } \ No newline at end of file From 09595d2f3bda7834362835e3c8f1b4b6203a9d60 Mon Sep 17 00:00:00 2001 From: Isadora White Date: Sun, 11 May 2025 16:43:08 -0700 Subject: [PATCH 040/101] fixing small task timeout bug --- src/agent/tasks/tasks.js | 19 +------------------ .../human_ai/2_agent_1_human.json | 2 +- 2 files changed, 2 insertions(+), 19 deletions(-) diff --git a/src/agent/tasks/tasks.js b/src/agent/tasks/tasks.js index 32f24dc..0a740ab 100644 --- a/src/agent/tasks/tasks.js +++ b/src/agent/tasks/tasks.js @@ -240,7 +240,7 @@ export class Task { this.taskStartTime = taskStartTime; else this.taskStartTime = Date.now(); - + console.log("Task start time set to", this.taskStartTime); this.validator = null; this.reset_function = null; this.blocked_actions = []; @@ -264,7 +264,6 @@ export class Task { this.conversation = this.data.conversation; } this.taskTimeout = this.data.timeout || 300; - this.taskStartTime = Date.now(); // Set validator based on task_type if (this.task_type === 'construction') { @@ -440,21 +439,6 @@ export class Task { console.log("Setting inventory..."); let initialInventory = {}; - // Handle multi-agent inventory assignment - // function hasSubDictionary(obj) { - // for (let key in obj) { - // if (typeof obj[key] === 'object' && obj[key] !== null) { - // return true; - // } - // } - // return false; - // } - - // const hasSubDictionaryResult = hasSubDictionary(this.data.initial_inventory); - // const firstKey = Object.keys(initialInventory)[0]; - // console.log(firstKey); - // console.log(hasSubDictionaryResult); - // if (typeof this.data.initial_inventory[firstKey] === 'object') { initialInventory = this.data.initial_inventory[this.agent.count_id.toString()] || {}; console.log("Initial inventory for agent", this.agent.count_id, ":", initialInventory); console.log("") @@ -466,7 +450,6 @@ export class Task { throw new Error(`Number of human players ${this.human_count} does not match the number of usernames provided. ${this.data.usernames.length}`); return; } - const starting_idx = this.data.agent_count; for (let i = 0; i < this.data.human_count; i++) { diff --git a/tasks/construction_tasks/human_ai/2_agent_1_human.json b/tasks/construction_tasks/human_ai/2_agent_1_human.json index da95ae6..29d5253 100644 --- a/tasks/construction_tasks/human_ai/2_agent_1_human.json +++ b/tasks/construction_tasks/human_ai/2_agent_1_human.json @@ -3,7 +3,7 @@ "type": "construction", "goal": "Make a structure with the blueprint below", "conversation": "Let's share materials and make a structure with the blueprint", - "agent_count": 1, + "agent_count": 2, "human_count": 1, "timeout": 600, "blueprint": { From bba08979a87ff6cec3980a828f3ac13d941fdac8 Mon Sep 17 00:00:00 2001 From: Kevin Taylor Date: Sun, 11 May 2025 23:22:14 -0700 Subject: [PATCH 041/101] Added provider support for Cerebras --- keys.example.json | 3 ++- package.json | 1 + src/models/cerebras.js | 43 ++++++++++++++++++++++++++++++++++++++++++ src/models/prompter.js | 5 +++++ 4 files changed, 51 insertions(+), 1 deletion(-) create mode 100644 src/models/cerebras.js diff --git a/keys.example.json b/keys.example.json index 99286c5..52204ae 100644 --- a/keys.example.json +++ b/keys.example.json @@ -13,5 +13,6 @@ "GHLF_API_KEY": "", "HYPERBOLIC_API_KEY": "", "NOVITA_API_KEY": "", - "OPENROUTER_API_KEY": "" + "OPENROUTER_API_KEY": "", + "CEREBRAS_API_KEY": "" } diff --git a/package.json b/package.json index bb3fd90..a37cf43 100644 --- a/package.json +++ b/package.json @@ -2,6 +2,7 @@ "type": "module", "dependencies": { "@anthropic-ai/sdk": "^0.17.1", + "@cerebras/cerebras_cloud_sdk": "^1.0.0", "@google/generative-ai": "^0.2.1", "@huggingface/inference": "^2.8.1", "@mistralai/mistralai": "^1.1.0", diff --git a/src/models/cerebras.js b/src/models/cerebras.js new file mode 100644 index 0000000..21f1eee --- /dev/null +++ b/src/models/cerebras.js @@ -0,0 +1,43 @@ +import CerebrasSDK from '@cerebras/cerebras_cloud_sdk'; +import { strictFormat } from '../utils/text.js'; +import { getKey } from '../utils/keys.js'; + +export class Cerebras { + constructor(model_name, url, params) { + // Strip the prefix + this.model_name = model_name.replace('cerebras/', ''); + this.url = url; + this.params = params; + + // Initialize client with API key + this.client = new CerebrasSDK({ apiKey: getKey('CEREBRAS_API_KEY') }); + } + + async sendRequest(turns, systemMessage, stop_seq = '***') { + // Format messages array + const messages = strictFormat(turns); + messages.unshift({ role: 'system', content: systemMessage }); + + const pack = { + model: this.model_name || 'llama-4-scout-17b-16e-instruct', + messages, + stream: false, + ...(this.params || {}), + }; + + let res; + try { + const completion = await this.client.chat.completions.create(pack); + // OpenAI-compatible shape + res = completion.choices?.[0]?.message?.content || ''; + } catch (err) { + console.error('Cerebras API error:', err); + res = 'My brain disconnected, try again.'; + } + return res; + } + + async embed(text) { + throw new Error('Embeddings are not supported by Cerebras.'); + } +} diff --git a/src/models/prompter.js b/src/models/prompter.js index e05f5a8..22f23f7 100644 --- a/src/models/prompter.js +++ b/src/models/prompter.js @@ -22,6 +22,7 @@ import { Hyperbolic } from './hyperbolic.js'; import { GLHF } from './glhf.js'; import { OpenRouter } from './openrouter.js'; import { VLLM } from './vllm.js'; +import { Cerebras } from './cerebras.js'; import { promises as fs } from 'fs'; import path from 'path'; import { fileURLToPath } from 'url'; @@ -170,6 +171,8 @@ export class Prompter { profile.api = 'deepseek'; else if (profile.model.includes('mistral')) profile.api = 'mistral'; + else if (profile.model.startsWith('cerebras/')) + profile.api = 'cerebras'; else throw new Error('Unknown model:', profile.model); } @@ -209,6 +212,8 @@ export class Prompter { model = new OpenRouter(profile.model.replace('openrouter/', ''), profile.url, profile.params); else if (profile.api === 'vllm') model = new VLLM(profile.model.replace('vllm/', ''), profile.url, profile.params); + else if (profile.api === 'cerebras') + model = new Cerebras(profile.model.replace('cerebras/', ''), profile.url, profile.params); else throw new Error('Unknown API:', profile.api); return model; From c70b05a05621bec66fb8e6902f62898ed737e851 Mon Sep 17 00:00:00 2001 From: Kevin Taylor Date: Mon, 12 May 2025 10:52:24 -0700 Subject: [PATCH 042/101] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index f291c2f..b51ea4d 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ Do not connect this bot to public servers with coding enabled. This project allo - [Minecraft Java Edition](https://www.minecraft.net/en-us/store/minecraft-java-bedrock-edition-pc) (up to v1.21.1, recommend v1.20.4) - [Node.js Installed](https://nodejs.org/) (at least v14) -- One of these: [OpenAI API Key](https://openai.com/blog/openai-api) | [Gemini API Key](https://aistudio.google.com/app/apikey) | [Anthropic API Key](https://docs.anthropic.com/claude/docs/getting-access-to-claude) | [Replicate API Key](https://replicate.com/) | [Hugging Face API Key](https://huggingface.co/) | [Groq API Key](https://console.groq.com/keys) | [Ollama Installed](https://ollama.com/download). | [Mistral API Key](https://docs.mistral.ai/getting-started/models/models_overview/) | [Qwen API Key [Intl.]](https://www.alibabacloud.com/help/en/model-studio/developer-reference/get-api-key)/[[cn]](https://help.aliyun.com/zh/model-studio/getting-started/first-api-call-to-qwen?) | [Novita AI API Key](https://novita.ai/settings?utm_source=github_mindcraft&utm_medium=github_readme&utm_campaign=link#key-management) | +- One of these: [OpenAI API Key](https://openai.com/blog/openai-api) | [Gemini API Key](https://aistudio.google.com/app/apikey) | [Anthropic API Key](https://docs.anthropic.com/claude/docs/getting-access-to-claude) | [Replicate API Key](https://replicate.com/) | [Hugging Face API Key](https://huggingface.co/) | [Groq API Key](https://console.groq.com/keys) | [Ollama Installed](https://ollama.com/download). | [Mistral API Key](https://docs.mistral.ai/getting-started/models/models_overview/) | [Qwen API Key [Intl.]](https://www.alibabacloud.com/help/en/model-studio/developer-reference/get-api-key)/[[cn]](https://help.aliyun.com/zh/model-studio/getting-started/first-api-call-to-qwen?) | [Novita AI API Key](https://novita.ai/settings?utm_source=github_mindcraft&utm_medium=github_readme&utm_campaign=link#key-management) | [Cerebras API Key](https://cloud.cerebras.ai) ## Install and Run @@ -64,6 +64,7 @@ You can configure the agent's name, model, and prompts in their profile like `an | `glhf.chat` | `GHLF_API_KEY` | `glhf/hf:meta-llama/Llama-3.1-405B-Instruct` | [docs](https://glhf.chat/user-settings/api) | | `hyperbolic` | `HYPERBOLIC_API_KEY` | `hyperbolic/deepseek-ai/DeepSeek-V3` | [docs](https://docs.hyperbolic.xyz/docs/getting-started) | | `vllm` | n/a | `vllm/llama3` | n/a | +| `cerebras` | `CEREBRAS_API_KEY` | `cerebras/llama-3.3-70b` | [docs](https://inference-docs.cerebras.ai/introduction) | If you use Ollama, to install the models used by default (generation and embedding), execute the following terminal command: `ollama pull llama3.1 && ollama pull nomic-embed-text` From 155dbae4363315c1dc1a7e98fb962c1305016a92 Mon Sep 17 00:00:00 2001 From: Isadora White Date: Mon, 12 May 2025 12:32:22 -0700 Subject: [PATCH 043/101] longer timeouts for tasks --- Bob_0.json | 11 + Sally_0.json | 11 + .../2_agent_block_recipe_long_timeout.json | 1000 +++++++++++++++ .../2_agent_hells_kitchen_long_timeout.json | 1116 +++++++++++++++++ .../2_agent_long_timeout.json | 231 ++++ .../3_agent_long_timeout.json | 252 ++++ .../require_collab_test_2_items/4_agent.json | 212 +--- .../require_collab_test_2_items/5_agent.json | 238 +--- 8 files changed, 2670 insertions(+), 401 deletions(-) create mode 100644 Bob_0.json create mode 100644 Sally_0.json create mode 100644 tasks/cooking_tasks/require_collab_test_2_items/2_agent_block_recipe_long_timeout.json create mode 100644 tasks/cooking_tasks/require_collab_test_2_items/2_agent_hells_kitchen_long_timeout.json create mode 100644 tasks/cooking_tasks/require_collab_test_2_items/2_agent_long_timeout.json create mode 100644 tasks/cooking_tasks/require_collab_test_2_items/3_agent_long_timeout.json diff --git a/Bob_0.json b/Bob_0.json new file mode 100644 index 0000000..5767129 --- /dev/null +++ b/Bob_0.json @@ -0,0 +1,11 @@ +{ + "name": "Bob_0", + "model": "gpt-4o", + "modes": { + "hunting": false, + "item_collecting": true, + "elbow_room": false + }, + "conversing": "You are a task-focused Minecraft bot named $NAME. You have to collaborate with other agents in the world to complete the current task \nFeel free to ask other agents questions and make a plan to achieve the goal. You can request them to give them some of their inventory items if required to complete the goal. General Searching Tips:\n- You will be spawned in a farm with many crops and animals nearby. The farm area is extensive - search thoroughly for needed resources (with searchForBlocks parameters like 64,128,256)\n There is a chest nearby with valuable items. Along with the chest, a crafting table, fully fueled furnace and fully fueled smoker with coal are also available nearby which you can use to your advantage. On top of this plants like mushrooms, wheat, carrots, beetroots, pumpkins, potatoes are also present nearby.\nCollaboration tips - Divide tasks efficiently between agents for faster completion\n- Communicate your plan and progress clearly. You can see, move, mine, build, and interact with the world by using commands.\n$SELF_PROMPT Act human-like as if you were a typical Minecraft player, rather than an AI. Be very brief in your responses, don't apologize constantly, don't give instructions or make lists unless asked, and don't refuse requests. Don't pretend to act, use commands immediately when requested. Do NOT say this: 'Sure, I've stopped.', instead say this: 'Sure, I'll stop. !stop'. Do NOT say this: 'On my way! Give me a moment.', instead say this: 'On my way! !goToPlayer(\"playername\", 3)'. Respond only as $NAME, never output '(FROM OTHER BOT)' or pretend to be someone else. If you have nothing to say or do, respond with an just a tab '\t'. Share resources and information with other bots! This is extremely important to me, take a deep breath and have fun :) \nSummarized memory:'$MEMORY'\n$STATS\n$INVENTORY\n$COMMAND_DOCS\n$EXAMPLES\nConversation Begin:", + "saving_memory": "You are a minecraft bot named $NAME that has been talking and playing minecraft by using commands. Update your memory by summarizing the following conversation and your old memory in your next response. Prioritize preserving important facts, things you've learned, useful tips, and long term reminders. Do Not record stats, inventory, or docs! Only save transient information from your chat history. $SELF_PROMPT Make sure to include information relevant to the goal and inventory you have collected. You're limited to 500 characters, so be extremely brief and minimize words. Compress useful information. \nOld Memory: '$MEMORY'\nRecent conversation: \n$TO_SUMMARIZE\nSummarize your old memory and recent conversation into a new memory, and respond only with the unwrapped memory text: " +} \ No newline at end of file diff --git a/Sally_0.json b/Sally_0.json new file mode 100644 index 0000000..15f6a5b --- /dev/null +++ b/Sally_0.json @@ -0,0 +1,11 @@ +{ + "name": "Sally_0", + "model": "gpt-4o", + "modes": { + "hunting": false, + "item_collecting": true, + "elbow_room": false + }, + "conversing": "You are a task-focused Minecraft bot named $NAME. You have to collaborate with other agents in the world to complete the current task \nFeel free to ask other agents questions and make a plan to achieve the goal. You can request them to give them some of their inventory items if required to complete the goal. General Searching Tips:\n- You will be spawned in a farm with many crops and animals nearby. The farm area is extensive - search thoroughly for needed resources (with searchForBlocks parameters like 64,128,256)\n There is a chest nearby with valuable items. Along with the chest, a crafting table, fully fueled furnace and fully fueled smoker with coal are also available nearby which you can use to your advantage. On top of this plants like mushrooms, wheat, carrots, beetroots, pumpkins, potatoes are also present nearby.\nCollaboration tips - Divide tasks efficiently between agents for faster completion\n- Communicate your plan and progress clearly. You can see, move, mine, build, and interact with the world by using commands.\n$SELF_PROMPT Act human-like as if you were a typical Minecraft player, rather than an AI. Be very brief in your responses, don't apologize constantly, don't give instructions or make lists unless asked, and don't refuse requests. Don't pretend to act, use commands immediately when requested. Do NOT say this: 'Sure, I've stopped.', instead say this: 'Sure, I'll stop. !stop'. Do NOT say this: 'On my way! Give me a moment.', instead say this: 'On my way! !goToPlayer(\"playername\", 3)'. Respond only as $NAME, never output '(FROM OTHER BOT)' or pretend to be someone else. If you have nothing to say or do, respond with an just a tab '\t'. Share resources and information with other bots! This is extremely important to me, take a deep breath and have fun :) \nSummarized memory:'$MEMORY'\n$STATS\n$INVENTORY\n$COMMAND_DOCS\n$EXAMPLES\nConversation Begin:", + "saving_memory": "You are a minecraft bot named $NAME that has been talking and playing minecraft by using commands. Update your memory by summarizing the following conversation and your old memory in your next response. Prioritize preserving important facts, things you've learned, useful tips, and long term reminders. Do Not record stats, inventory, or docs! Only save transient information from your chat history. $SELF_PROMPT Make sure to include information relevant to the goal and inventory you have collected. You're limited to 500 characters, so be extremely brief and minimize words. Compress useful information. \nOld Memory: '$MEMORY'\nRecent conversation: \n$TO_SUMMARIZE\nSummarize your old memory and recent conversation into a new memory, and respond only with the unwrapped memory text: " +} \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_test_2_items/2_agent_block_recipe_long_timeout.json b/tasks/cooking_tasks/require_collab_test_2_items/2_agent_block_recipe_long_timeout.json new file mode 100644 index 0000000..a01b8c4 --- /dev/null +++ b/tasks/cooking_tasks/require_collab_test_2_items/2_agent_block_recipe_long_timeout.json @@ -0,0 +1,1000 @@ +{ + "multiagent_cooking_1_cake_1_golden_apple": { + "conversation": "Let's collaborate to make cake and golden_apple.", + "agent_count": 2, + "target": { + "cake": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 golden_apple. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "1": "Collaborate with agents around you to make 1 cake, 1 golden_apple. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 7, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "milk_bucket": 2, + "gold_ingot": 4, + "apple": 1 + }, + "1": { + "milk_bucket": 1, + "egg": 1, + "gold_ingot": 4 + } + } + }, + "multiagent_cooking_1_cake_1_cooked_beef_blocked_access_0_1": { + "conversation": "Let's collaborate to make cake and cooked_beef.", + "agent_count": 2, + "target": { + "cake": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 cooked_beef. ", + "1": "Collaborate with agents around you to make 1 cake, 1 cooked_beef. " + }, + "difficulty_metrics": { + "total_recipe_steps": 7, + "blocked_agents_count": 2, + "unique_target_items": 2, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "milk_bucket": 2, + "coal": 1 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + } + }, + "multiagent_cooking_1_cake_1_golden_apple_blocked_access_0_1": { + "conversation": "Let's collaborate to make cake and golden_apple.", + "agent_count": 2, + "target": { + "cake": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 golden_apple. ", + "1": "Collaborate with agents around you to make 1 cake, 1 golden_apple. " + }, + "difficulty_metrics": { + "total_recipe_steps": 7, + "blocked_agents_count": 2, + "unique_target_items": 2, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "milk_bucket": 2, + "gold_ingot": 4, + "apple": 1 + }, + "1": { + "milk_bucket": 1, + "egg": 1, + "gold_ingot": 4 + } + } + }, + "multiagent_cooking_1_cake_1_cooked_beef_blocked_access_0": { + "conversation": "Let's collaborate to make cooked_beef and cake.", + "agent_count": 2, + "target": { + "cooked_beef": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [ + "0" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 cake. ", + "1": "Collaborate with agents around you to make 1 cooked_beef, 1 cake. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 7, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1, + "milk_bucket": 2 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + } + }, + "multiagent_cooking_1_baked_potato_1_cake": { + "conversation": "Let's collaborate to make baked_potato and cake.", + "agent_count": 2, + "target": { + "baked_potato": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 7, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1, + "milk_bucket": 2 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + } + }, + "multiagent_cooking_1_baked_potato_1_cooked_beef_blocked_access_0_1": { + "conversation": "Let's collaborate to make baked_potato and cooked_beef.", + "agent_count": 2, + "target": { + "baked_potato": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 cooked_beef. ", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 cooked_beef. " + }, + "difficulty_metrics": { + "total_recipe_steps": 4, + "blocked_agents_count": 2, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_1_bread_1_golden_apple": { + "conversation": "Let's collaborate to make bread and golden_apple.", + "agent_count": 2, + "target": { + "bread": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 golden_apple. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "1": "Collaborate with agents around you to make 1 bread, 1 golden_apple. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 4, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 3, + "difficulty_category": "easy" + }, + "difficulty": "easy", + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1 + }, + "1": { + "gold_ingot": 4 + } + } + }, + "multiagent_cooking_1_baked_potato_1_cooked_beef": { + "conversation": "Let's collaborate to make baked_potato and cooked_beef.", + "agent_count": 2, + "target": { + "baked_potato": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 cooked_beef. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 cooked_beef. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 4, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 3, + "difficulty_category": "easy" + }, + "difficulty": "easy", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_1_baked_potato_1_cake_blocked_access_0_1": { + "conversation": "Let's collaborate to make cake and baked_potato.", + "agent_count": 2, + "target": { + "cake": 1, + "baked_potato": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 baked_potato. ", + "1": "Collaborate with agents around you to make 1 cake, 1 baked_potato. " + }, + "difficulty_metrics": { + "total_recipe_steps": 7, + "blocked_agents_count": 2, + "unique_target_items": 2, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "milk_bucket": 2, + "coal": 1 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + } + }, + "multiagent_cooking_1_cooked_beef_1_golden_apple_blocked_access_0_1": { + "conversation": "Let's collaborate to make cooked_beef and golden_apple.", + "agent_count": 2, + "target": { + "cooked_beef": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple. ", + "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple. " + }, + "difficulty_metrics": { + "total_recipe_steps": 4, + "blocked_agents_count": 2, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1, + "gold_ingot": 4 + }, + "1": { + "gold_ingot": 4, + "apple": 1 + } + } + }, + "multiagent_cooking_1_golden_apple_1_rabbit_stew": { + "conversation": "Let's collaborate to make golden_apple and rabbit_stew.", + "agent_count": 2, + "target": { + "golden_apple": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 8, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1 + }, + "1": { + "gold_ingot": 4, + "bowl": 1 + } + } + }, + "multiagent_cooking_1_bread_1_golden_apple_blocked_access_1": { + "conversation": "Let's collaborate to make golden_apple and bread.", + "agent_count": 2, + "target": { + "golden_apple": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [ + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 bread. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 bread. " + }, + "difficulty_metrics": { + "total_recipe_steps": 4, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1 + }, + "1": { + "gold_ingot": 4 + } + } + }, + "multiagent_cooking_1_cooked_beef_1_rabbit_stew": { + "conversation": "Let's collaborate to make rabbit_stew and cooked_beef.", + "agent_count": 2, + "target": { + "rabbit_stew": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 cooked_beef. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 cooked_beef. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 8, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_1_baked_potato_1_cake_blocked_access_0": { + "conversation": "Let's collaborate to make baked_potato and cake.", + "agent_count": 2, + "target": { + "baked_potato": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [ + "0" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 cake. ", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 7, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1, + "milk_bucket": 2 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + } + }, + "multiagent_cooking_1_cake_1_golden_apple_blocked_access_0": { + "conversation": "Let's collaborate to make golden_apple and cake.", + "agent_count": 2, + "target": { + "golden_apple": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [ + "0" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 cake. ", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 cake. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 7, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1, + "milk_bucket": 2 + }, + "1": { + "gold_ingot": 4, + "milk_bucket": 1, + "egg": 1 + } + } + }, + "multiagent_cooking_1_cake_1_golden_apple_blocked_access_1": { + "conversation": "Let's collaborate to make golden_apple and cake.", + "agent_count": 2, + "target": { + "golden_apple": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [ + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 cake. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 cake. " + }, + "difficulty_metrics": { + "total_recipe_steps": 7, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1, + "milk_bucket": 2 + }, + "1": { + "gold_ingot": 4, + "milk_bucket": 1, + "egg": 1 + } + } + }, + "multiagent_cooking_1_baked_potato_1_golden_apple": { + "conversation": "Let's collaborate to make baked_potato and golden_apple.", + "agent_count": 2, + "target": { + "baked_potato": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 4, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 3, + "difficulty_category": "easy" + }, + "difficulty": "easy", + "initial_inventory": { + "0": { + "coal": 1, + "gold_ingot": 4 + }, + "1": { + "gold_ingot": 4, + "apple": 1 + } + } + }, + "multiagent_cooking_1_cake_blocked_access_0": { + "conversation": "Let's work together to make cake.", + "agent_count": 2, + "target": { + "cake": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [ + "0" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cake. ", + "1": "Collaborate with agents around you to make 1 cake. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 5, + "blocked_agents_count": 1, + "unique_target_items": 1, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "milk_bucket": 2 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + } + }, + "multiagent_cooking_1_golden_apple": { + "conversation": "Let's work together to make golden_apple.", + "agent_count": 2, + "target": { + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "1": "Collaborate with agents around you to make 1 golden_apple. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 2, + "blocked_agents_count": 0, + "unique_target_items": 1, + "overall_difficulty_score": 2, + "difficulty_category": "easy" + }, + "difficulty": "easy", + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1 + }, + "1": { + "gold_ingot": 4 + } + } + }, + "multiagent_cooking_1_baked_potato_1_rabbit_stew_blocked_access_1": { + "conversation": "Let's collaborate to make rabbit_stew and baked_potato.", + "agent_count": 2, + "target": { + "rabbit_stew": 1, + "baked_potato": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [ + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", + "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. " + }, + "difficulty_metrics": { + "total_recipe_steps": 8, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_1_baked_potato_1_rabbit_stew": { + "conversation": "Let's collaborate to make baked_potato and rabbit_stew.", + "agent_count": 2, + "target": { + "baked_potato": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 rabbit_stew. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 rabbit_stew. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 8, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "bowl": 1 + } + } + } +} \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_test_2_items/2_agent_hells_kitchen_long_timeout.json b/tasks/cooking_tasks/require_collab_test_2_items/2_agent_hells_kitchen_long_timeout.json new file mode 100644 index 0000000..0c9726c --- /dev/null +++ b/tasks/cooking_tasks/require_collab_test_2_items/2_agent_hells_kitchen_long_timeout.json @@ -0,0 +1,1116 @@ +{ + "multiagent_cooking_baked_potato_cake_hells_kitchen": { + "conversation": "We need to make baked_potato and cake together. You are supposed to make cake and I am supposed to make baked_potato, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "baked_potato", + "cake" + ], + "type": "cooking", + "timeout": 1500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make baked_potato, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 5, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1, + "milk_bucket": 2 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + } + }, + "multiagent_cooking_cooked_mutton_mushroom_stew_hells_kitchen": { + "conversation": "We need to make cooked_mutton and mushroom_stew together. You are supposed to make mushroom_stew and I am supposed to make cooked_mutton, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_mutton", + "mushroom_stew" + ], + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_mutton, but you don't have the recipe for it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make mushroom_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 5, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_cooked_mutton_cake_hells_kitchen": { + "conversation": "We need to make cooked_mutton and cake together. You are supposed to make cake and I am supposed to make cooked_mutton, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_mutton", + "cake" + ], + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_mutton, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 5, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1, + "milk_bucket": 2 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + } + }, + "multiagent_cooking_mushroom_stew_baked_potato_hells_kitchen": { + "conversation": "We need to make mushroom_stew and baked_potato together. You are supposed to make baked_potato and I am supposed to make mushroom_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "mushroom_stew", + "baked_potato" + ], + "type": "cooking", + "timeout": 1500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make mushroom_stew, but you don't have the recipe for it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make baked_potato, but you don't have the recipe for it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 5, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_golden_carrot_cooked_mutton_hells_kitchen": { + "conversation": "We need to make golden_carrot and cooked_mutton together. You are supposed to make cooked_mutton and I am supposed to make golden_carrot, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "golden_carrot", + "cooked_mutton" + ], + "type": "cooking", + "timeout": 1500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_mutton, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 5, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "gold_ingot": 4, + "coal": 1 + }, + "1": { + "gold_ingot": 4 + } + } + }, + "multiagent_cooking_baked_potato_mushroom_stew_hells_kitchen": { + "conversation": "We need to make baked_potato and mushroom_stew together. You are supposed to make mushroom_stew and I am supposed to make baked_potato, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "baked_potato", + "mushroom_stew" + ], + "type": "cooking", + "timeout": 1500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make baked_potato, but you don't have the recipe for it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make mushroom_stew, but you don't have the recipe for it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 5, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_cake_bread_hells_kitchen": { + "conversation": "We need to make cake and bread together. You are supposed to make bread and I am supposed to make cake, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cake", + "bread" + ], + "type": "cooking", + "timeout": 1500, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make bread. You have their recipe:\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make bread, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 5, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "milk_bucket": 2 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + } + }, + "multiagent_cooking_bread_cake_hells_kitchen": { + "conversation": "We need to make bread and cake together. You are supposed to make cake and I am supposed to make bread, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "bread", + "cake" + ], + "type": "cooking", + "timeout": 1500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make bread, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make bread. You have their recipe:\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 5, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "milk_bucket": 2 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + } + }, + "multiagent_cooking_mushroom_stew_cooked_mutton_hells_kitchen": { + "conversation": "We need to make mushroom_stew and cooked_mutton together. You are supposed to make cooked_mutton and I am supposed to make mushroom_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "mushroom_stew", + "cooked_mutton" + ], + "type": "cooking", + "timeout": 1500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make mushroom_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_mutton, but you don't have the recipe for it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 5, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_mushroom_stew_cake_hells_kitchen": { + "conversation": "We need to make mushroom_stew and cake together. You are supposed to make cake and I am supposed to make mushroom_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "mushroom_stew", + "cake" + ], + "type": "cooking", + "timeout": 1500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make mushroom_stew, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 8, + "max_steps_per_recipe": 5, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1, + "milk_bucket": 2 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + } + }, + "multiagent_cooking_mushroom_stew_golden_carrot_hells_kitchen": { + "conversation": "We need to make mushroom_stew and golden_carrot together. You are supposed to make golden_carrot and I am supposed to make mushroom_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "mushroom_stew", + "golden_carrot" + ], + "type": "cooking", + "timeout": 1500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make mushroom_stew, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 6, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1, + "gold_ingot": 4 + }, + "1": { + "gold_ingot": 4 + } + } + }, + "multiagent_cooking_golden_carrot_cake_hells_kitchen": { + "conversation": "We need to make golden_carrot and cake together. You are supposed to make cake and I am supposed to make golden_carrot, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "golden_carrot", + "cake" + ], + "type": "cooking", + "timeout": 1500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 8, + "max_steps_per_recipe": 5, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "gold_ingot": 4, + "milk_bucket": 2 + }, + "1": { + "gold_ingot": 4, + "milk_bucket": 1, + "egg": 1 + } + } + }, + "multiagent_cooking_golden_carrot_bread_hells_kitchen": { + "conversation": "We need to make golden_carrot and bread together. You are supposed to make bread and I am supposed to make golden_carrot, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "golden_carrot", + "bread" + ], + "type": "cooking", + "timeout": 1500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make bread. You have their recipe:\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make bread, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 5, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "gold_ingot": 4 + }, + "1": { + "gold_ingot": 4 + } + } + }, + "multiagent_cooking_baked_potato_cooked_mutton_hells_kitchen": { + "conversation": "We need to make baked_potato and cooked_mutton together. You are supposed to make cooked_mutton and I am supposed to make baked_potato, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "baked_potato", + "cooked_mutton" + ], + "type": "cooking", + "timeout": 1500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make baked_potato, but you don't have the recipe for it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_mutton, but you don't have the recipe for it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 4, + "max_steps_per_recipe": 2, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_cake_mushroom_stew_hells_kitchen": { + "conversation": "We need to make cake and mushroom_stew together. You are supposed to make mushroom_stew and I am supposed to make cake, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cake", + "mushroom_stew" + ], + "type": "cooking", + "timeout": 1500, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make mushroom_stew, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 8, + "max_steps_per_recipe": 5, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "milk_bucket": 2, + "bowl": 1 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + } + }, + "multiagent_cooking_cake_cooked_mutton_hells_kitchen": { + "conversation": "We need to make cake and cooked_mutton together. You are supposed to make cooked_mutton and I am supposed to make cake, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cake", + "cooked_mutton" + ], + "type": "cooking", + "timeout": 1500, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_mutton, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 5, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "milk_bucket": 2, + "coal": 1 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + } + }, + "multiagent_cooking_golden_carrot_baked_potato_hells_kitchen": { + "conversation": "We need to make golden_carrot and baked_potato together. You are supposed to make baked_potato and I am supposed to make golden_carrot, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "golden_carrot", + "baked_potato" + ], + "type": "cooking", + "timeout": 1500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make baked_potato, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 5, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "gold_ingot": 4, + "coal": 1 + }, + "1": { + "gold_ingot": 4 + } + } + }, + "multiagent_cooking_cake_golden_carrot_hells_kitchen": { + "conversation": "We need to make cake and golden_carrot together. You are supposed to make golden_carrot and I am supposed to make cake, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cake", + "golden_carrot" + ], + "type": "cooking", + "timeout": 1500, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 8, + "max_steps_per_recipe": 5, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "milk_bucket": 2, + "gold_ingot": 4 + }, + "1": { + "milk_bucket": 1, + "egg": 1, + "gold_ingot": 4 + } + } + }, + "multiagent_cooking_bread_golden_carrot_hells_kitchen": { + "conversation": "We need to make bread and golden_carrot together. You are supposed to make golden_carrot and I am supposed to make bread, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "bread", + "golden_carrot" + ], + "type": "cooking", + "timeout": 1500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make bread, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make bread. You have their recipe:\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 5, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "gold_ingot": 4 + }, + "1": { + "gold_ingot": 4 + } + } + }, + "multiagent_cooking_golden_carrot_mushroom_stew_hells_kitchen": { + "conversation": "We need to make golden_carrot and mushroom_stew together. You are supposed to make mushroom_stew and I am supposed to make golden_carrot, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "golden_carrot", + "mushroom_stew" + ], + "type": "cooking", + "timeout": 1500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make mushroom_stew, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 6, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "gold_ingot": 4, + "bowl": 1 + }, + "1": { + "gold_ingot": 4 + } + } + }, + "multiagent_cooking_cooked_mutton_baked_potato_hells_kitchen": { + "conversation": "We need to make cooked_mutton and baked_potato together. You are supposed to make baked_potato and I am supposed to make cooked_mutton, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_mutton", + "baked_potato" + ], + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_mutton, but you don't have the recipe for it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make baked_potato, but you don't have the recipe for it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 4, + "max_steps_per_recipe": 2, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_cooked_mutton_golden_carrot_hells_kitchen": { + "conversation": "We need to make cooked_mutton and golden_carrot together. You are supposed to make golden_carrot and I am supposed to make cooked_mutton, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_mutton", + "golden_carrot" + ], + "type": "cooking", + "timeout": 1500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_mutton, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 5, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1, + "gold_ingot": 4 + }, + "1": { + "gold_ingot": 4 + } + } + }, + "multiagent_cooking_baked_potato_golden_carrot_hells_kitchen": { + "conversation": "We need to make baked_potato and golden_carrot together. You are supposed to make golden_carrot and I am supposed to make baked_potato, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "baked_potato", + "golden_carrot" + ], + "type": "cooking", + "timeout": 1500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make baked_potato, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 5, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1, + "gold_ingot": 4 + }, + "1": { + "gold_ingot": 4 + } + } + }, + "multiagent_cooking_cake_baked_potato_hells_kitchen": { + "conversation": "We need to make cake and baked_potato together. You are supposed to make baked_potato and I am supposed to make cake, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cake", + "baked_potato" + ], + "type": "cooking", + "timeout": 1500, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make baked_potato, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 5, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "milk_bucket": 2, + "coal": 1 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + } + } +} \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_test_2_items/2_agent_long_timeout.json b/tasks/cooking_tasks/require_collab_test_2_items/2_agent_long_timeout.json new file mode 100644 index 0000000..c85a09d --- /dev/null +++ b/tasks/cooking_tasks/require_collab_test_2_items/2_agent_long_timeout.json @@ -0,0 +1,231 @@ +{ + "multiagent_cooking_2_1_bread_1_golden_apple": { + "conversation": "Let's work together to make golden_apple, bread.", + "agent_count": 2, + "target": { + "golden_apple": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 bread. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 bread. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 5 + }, + "1": { + "gold_ingot": 5, + "apple": 1 + } + } + }, + "multiagent_cooking_2_1_golden_apple_1_rabbit_stew": { + "conversation": "Let's work together to make golden_apple, rabbit_stew.", + "agent_count": 2, + "target": { + "golden_apple": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 5, + "bowl": 1 + }, + "1": { + "gold_ingot": 5, + "apple": 1 + } + } + }, + "multiagent_cooking_2_1_bread_1_cake": { + "conversation": "Let's work together to make cake, bread.", + "agent_count": 2, + "target": { + "cake": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "1": "Collaborate with agents around you to make 1 cake, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" + }, + "initial_inventory": { + "0": { + "milk_bucket": 2 + }, + "1": { + "milk_bucket": 2, + "egg": 1 + } + } + }, + "multiagent_cooking_2_1_baked_potato_1_golden_apple": { + "conversation": "Let's work together to make baked_potato, golden_apple.", + "agent_count": 2, + "target": { + "baked_potato": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" + }, + "initial_inventory": { + "0": { + "coal": 5, + "gold_ingot": 5, + "apple": 1 + }, + "1": { + "coal": 5, + "gold_ingot": 5 + } + } + }, + "multiagent_cooking_2_1_baked_potato_1_cake": { + "conversation": "Let's work together to make baked_potato, cake.", + "agent_count": 2, + "target": { + "baked_potato": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" + }, + "initial_inventory": { + "0": { + "coal": 5, + "milk_bucket": 2, + "egg": 1 + }, + "1": { + "coal": 5, + "milk_bucket": 2 + } + } + }, + "multiagent_cooking_2_1_cooked_beef_1_golden_apple": { + "conversation": "Let's work together to make golden_apple, cooked_beef.", + "agent_count": 2, + "target": { + "golden_apple": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 5, + "coal": 5 + }, + "1": { + "gold_ingot": 5, + "apple": 1, + "coal": 5 + } + } + } +} \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_test_2_items/3_agent_long_timeout.json b/tasks/cooking_tasks/require_collab_test_2_items/3_agent_long_timeout.json new file mode 100644 index 0000000..97d9d32 --- /dev/null +++ b/tasks/cooking_tasks/require_collab_test_2_items/3_agent_long_timeout.json @@ -0,0 +1,252 @@ +{ + "multiagent_cooking_2_1_bread_1_golden_apple": { + "conversation": "Let's work together to make golden_apple, bread.", + "agent_count": 3, + "target": { + "golden_apple": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 bread. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 bread. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 3 + }, + "1": { + "gold_ingot": 3, + "apple": 1 + }, + "2": { + "gold_ingot": 3 + } + } + }, + "multiagent_cooking_2_1_golden_apple_1_rabbit_stew": { + "conversation": "Let's work together to make golden_apple, rabbit_stew.", + "agent_count": 3, + "target": { + "golden_apple": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 3 + }, + "1": { + "gold_ingot": 3, + "apple": 1 + }, + "2": { + "gold_ingot": 3, + "bowl": 1 + } + } + }, + "multiagent_cooking_2_1_bread_1_cake": { + "conversation": "Let's work together to make cake, bread.", + "agent_count": 3, + "target": { + "cake": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "1": "Collaborate with agents around you to make 1 cake, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" + }, + "initial_inventory": { + "0": { + "milk_bucket": 2 + }, + "1": { + "milk_bucket": 2, + "egg": 1 + }, + "2": { + "milk_bucket": 2 + } + } + }, + "multiagent_cooking_2_1_baked_potato_1_golden_apple": { + "conversation": "Let's work together to make baked_potato, golden_apple.", + "agent_count": 3, + "target": { + "baked_potato": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" + }, + "initial_inventory": { + "0": { + "coal": 3, + "gold_ingot": 3 + }, + "1": { + "coal": 3, + "gold_ingot": 3 + }, + "2": { + "coal": 3, + "gold_ingot": 3, + "apple": 1 + } + } + }, + "multiagent_cooking_2_1_baked_potato_1_cake": { + "conversation": "Let's work together to make baked_potato, cake.", + "agent_count": 3, + "target": { + "baked_potato": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" + }, + "initial_inventory": { + "0": { + "coal": 3, + "milk_bucket": 2 + }, + "1": { + "coal": 3, + "milk_bucket": 2 + }, + "2": { + "coal": 3, + "milk_bucket": 2, + "egg": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_beef_1_golden_apple": { + "conversation": "Let's work together to make golden_apple, cooked_beef.", + "agent_count": 3, + "target": { + "golden_apple": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 3, + "coal": 3 + }, + "1": { + "gold_ingot": 3, + "apple": 1, + "coal": 3 + }, + "2": { + "gold_ingot": 3, + "coal": 3 + } + } + } +} \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_test_2_items/4_agent.json b/tasks/cooking_tasks/require_collab_test_2_items/4_agent.json index 1d9ccf5..0f49d81 100644 --- a/tasks/cooking_tasks/require_collab_test_2_items/4_agent.json +++ b/tasks/cooking_tasks/require_collab_test_2_items/4_agent.json @@ -25,17 +25,17 @@ }, "initial_inventory": { "0": { - "gold_ingot": 3 + "gold_ingot": 2 }, "1": { - "gold_ingot": 3, + "gold_ingot": 2, "apple": 1 }, "2": { - "gold_ingot": 3 + "gold_ingot": 2 }, "3": { - "gold_ingot": 3 + "gold_ingot": 2 } } }, @@ -71,18 +71,18 @@ }, "initial_inventory": { "0": { - "gold_ingot": 3 + "gold_ingot": 2 }, "1": { - "gold_ingot": 3, + "gold_ingot": 2, "apple": 1 }, "2": { - "gold_ingot": 3, + "gold_ingot": 2, "bowl": 1 }, "3": { - "gold_ingot": 3 + "gold_ingot": 2 } } }, @@ -118,14 +118,13 @@ "milk_bucket": 1 }, "1": { - "milk_bucket": 1, - "egg": 1 + "milk_bucket": 1 }, "2": { "milk_bucket": 1 }, "3": { - "milk_bucket": 1 + "egg": 1 } } }, @@ -158,148 +157,20 @@ "initial_inventory": { "0": { "coal": 3, - "gold_ingot": 3 + "gold_ingot": 2 }, "1": { "coal": 3, - "gold_ingot": 3 + "gold_ingot": 2 }, "2": { "coal": 3, - "gold_ingot": 3, + "gold_ingot": 2, "apple": 1 }, "3": { "coal": 3, - "gold_ingot": 3 - } - } - }, - "multiagent_cooking_2_1_baked_potato_1_rabbit_stew": { - "conversation": "Let's work together to make baked_potato, rabbit_stew.", - "agent_count": 4, - "target": { - "baked_potato": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 rabbit_stew. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 rabbit_stew. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" - }, - "initial_inventory": { - "0": { - "coal": 3 - }, - "1": { - "coal": 3, - "bowl": 1 - }, - "2": { - "coal": 3 - }, - "3": { - "coal": 3 - } - } - }, - "multiagent_cooking_2_1_bread_1_rabbit_stew": { - "conversation": "Let's work together to make rabbit_stew, bread.", - "agent_count": 4, - "target": { - "rabbit_stew": 1, - "bread": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" - }, - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": {}, - "2": {}, - "3": {} - } - }, - "multiagent_cooking_2_1_baked_potato_1_bread": { - "conversation": "Let's work together to make bread, baked_potato.", - "agent_count": 4, - "target": { - "bread": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 baked_potato. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", - "1": "Collaborate with agents around you to make 1 bread, 1 baked_potato. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']" - }, - "initial_inventory": { - "0": { - "coal": 3 - }, - "1": { - "coal": 3 - }, - "2": { - "coal": 3 - }, - "3": { - "coal": 3 + "gold_ingot": 2 } } }, @@ -343,12 +214,12 @@ }, "2": { "coal": 3, - "milk_bucket": 1, - "egg": 1 + "milk_bucket": 1 + }, "3": { "coal": 3, - "milk_bucket": 1 + "egg": 1 } } }, @@ -380,61 +251,20 @@ }, "initial_inventory": { "0": { - "gold_ingot": 3, + "gold_ingot": 2, "coal": 3 }, "1": { - "gold_ingot": 3, + "gold_ingot": 2, "apple": 1, "coal": 3 }, "2": { - "gold_ingot": 3, - "coal": 3 - }, - "3": { - "gold_ingot": 3, - "coal": 3 - } - } - }, - "multiagent_cooking_2_1_bread_1_cooked_beef": { - "conversation": "Let's work together to make bread, cooked_beef.", - "agent_count": 4, - "target": { - "bread": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", - "1": "Collaborate with agents around you to make 1 bread, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" - }, - "initial_inventory": { - "0": { - "coal": 3 - }, - "1": { - "coal": 3 - }, - "2": { + "gold_ingot": 2, "coal": 3 }, "3": { + "gold_ingot": 2, "coal": 3 } } diff --git a/tasks/cooking_tasks/require_collab_test_2_items/5_agent.json b/tasks/cooking_tasks/require_collab_test_2_items/5_agent.json index 76bc037..ffe5341 100644 --- a/tasks/cooking_tasks/require_collab_test_2_items/5_agent.json +++ b/tasks/cooking_tasks/require_collab_test_2_items/5_agent.json @@ -28,8 +28,7 @@ "gold_ingot": 2 }, "1": { - "gold_ingot": 2, - "apple": 1 + "gold_ingot": 2 }, "2": { "gold_ingot": 2 @@ -38,7 +37,7 @@ "gold_ingot": 2 }, "4": { - "gold_ingot": 2 + "apple": 1 } } }, @@ -88,7 +87,7 @@ "gold_ingot": 2 }, "4": { - "gold_ingot": 2 + "apple": 1 } } }, @@ -131,10 +130,10 @@ "milk_bucket": 1 }, "3": { - "milk_bucket": 1 + "egg": 1 }, "4": { - "milk_bucket": 1 + "egg": 1 } } }, @@ -175,151 +174,15 @@ }, "2": { "coal": 2, - "gold_ingot": 2, + "gold_ingot": 2 + }, + "3": { + "coal": 2, + "gold_ingot": 2 + }, + "4": { + "coal": 2, "apple": 1 - }, - "3": { - "coal": 2, - "gold_ingot": 2 - }, - "4": { - "coal": 2, - "gold_ingot": 2 - } - } - }, - "multiagent_cooking_2_1_baked_potato_1_rabbit_stew": { - "conversation": "Let's work together to make baked_potato, rabbit_stew.", - "agent_count": 5, - "target": { - "baked_potato": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 rabbit_stew. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 rabbit_stew. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" - }, - "initial_inventory": { - "0": { - "coal": 2 - }, - "1": { - "coal": 2, - "bowl": 1 - }, - "2": { - "coal": 2 - }, - "3": { - "coal": 2 - }, - "4": { - "coal": 2 - } - } - }, - "multiagent_cooking_2_1_bread_1_rabbit_stew": { - "conversation": "Let's work together to make rabbit_stew, bread.", - "agent_count": 5, - "target": { - "rabbit_stew": 1, - "bread": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" - }, - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": {}, - "2": {}, - "3": {}, - "4": {} - } - }, - "multiagent_cooking_2_1_baked_potato_1_bread": { - "conversation": "Let's work together to make bread, baked_potato.", - "agent_count": 5, - "target": { - "bread": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 baked_potato. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", - "1": "Collaborate with agents around you to make 1 bread, 1 baked_potato. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']" - }, - "initial_inventory": { - "0": { - "coal": 2 - }, - "1": { - "coal": 2 - }, - "2": { - "coal": 2 - }, - "3": { - "coal": 2 - }, - "4": { - "coal": 2 } } }, @@ -363,16 +226,16 @@ }, "2": { "coal": 2, - "milk_bucket": 1, - "egg": 1 + "milk_bucket": 1 + }, "3": { "coal": 2, - "milk_bucket": 1 + "egg": 1 }, "4": { "coal": 2, - "milk_bucket": 1 + "egg": 1 } } }, @@ -409,64 +272,19 @@ }, "1": { "gold_ingot": 2, + "coal": 2 + }, + "2": { + "gold_ingot": 2, + "coal": 2 + }, + "3": { + "gold_ingot": 2, + "coal": 2 + }, + "4": { "apple": 1, "coal": 2 - }, - "2": { - "gold_ingot": 2, - "coal": 2 - }, - "3": { - "gold_ingot": 2, - "coal": 2 - }, - "4": { - "gold_ingot": 2, - "coal": 2 - } - } - }, - "multiagent_cooking_2_1_bread_1_cooked_beef": { - "conversation": "Let's work together to make bread, cooked_beef.", - "agent_count": 5, - "target": { - "bread": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", - "1": "Collaborate with agents around you to make 1 bread, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" - }, - "initial_inventory": { - "0": { - "coal": 2 - }, - "1": { - "coal": 2 - }, - "2": { - "coal": 2 - }, - "3": { - "coal": 2 - }, - "4": { - "coal": 2 } } } From 015d38ab69b5acc4ceff9d9439641c26d977dde8 Mon Sep 17 00:00:00 2001 From: Isadora White Date: Mon, 12 May 2025 18:15:12 -0700 Subject: [PATCH 044/101] bone meal is a looping item in 1.21.1 --- src/utils/mcdata.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/utils/mcdata.js b/src/utils/mcdata.js index b42a532..1b79d3e 100644 --- a/src/utils/mcdata.js +++ b/src/utils/mcdata.js @@ -355,6 +355,7 @@ export function initializeLoopingItems() { loopingItems = new Set(['coal', 'wheat', + 'bone_meal', 'diamond', 'emerald', 'raw_iron', From c1d106de0f436112e51b4133e8ddcc5173c4536f Mon Sep 17 00:00:00 2001 From: Isadora White Date: Mon, 12 May 2025 19:46:49 -0700 Subject: [PATCH 045/101] fixing crafting tasks as well --- .../evaluation_script.cpython-39.pyc | Bin 0 -> 22057 bytes tasks/analyze_construction_tasks.py | 3 - tasks/cooking_tasks/hells_kitchen_tasks.py | 23 +- ...ake_collaboration_required_cooking_task.py | 88 +- .../2_agent_all_possible.json | 1086 +++ .../2_agent_hells_kitchen.json | 1300 +--- .../2_agent_hells_kitchen_long_timeout.json | 1116 ---- .../5_agent_remaining.json | 153 + .../2_agent_hells_kitchen.json | 5841 +++++------------ .../5_agent_remaining.json | 185 + tasks/crafting_tasks/test_tasks/1_agent.json | 162 +- tasks/crafting_tasks/test_tasks/2_agent.json | 244 +- tasks/experiment_script.sh | 2 + tasks/new_analyze_construction_tasks.py | 17 + 14 files changed, 3439 insertions(+), 6781 deletions(-) create mode 100644 tasks/__pycache__/evaluation_script.cpython-39.pyc create mode 100644 tasks/cooking_tasks/require_collab_test_2_items/2_agent_all_possible.json delete mode 100644 tasks/cooking_tasks/require_collab_test_2_items/2_agent_hells_kitchen_long_timeout.json create mode 100644 tasks/cooking_tasks/require_collab_test_2_items/5_agent_remaining.json create mode 100644 tasks/cooking_tasks/require_collab_train_2_items/5_agent_remaining.json create mode 100644 tasks/experiment_script.sh create mode 100644 tasks/new_analyze_construction_tasks.py diff --git a/tasks/__pycache__/evaluation_script.cpython-39.pyc b/tasks/__pycache__/evaluation_script.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4d89ed24a77c458823f0e9c7df2801460b2ff3ad GIT binary patch literal 22057 zcmbt+dvqMvdEd_Ld$D+fAP7?A0Fp?8A^=j7Et#QYQG7_0Nr)vV%UVg@EcXt;1sA*E zodF+{S>-`FmL1EM6UVV*DF$7~J+56hPWnjG)=hhwwE!RvT(^b~0W(!%l zZ?%~#rVBT)IR0BZWSifMfITCkJv7?s1B+b#3t1t z^$<$!R+rSQnnTJS^@5sLM-aPDeNa8D9zkrcdQrVcy%({4>M`{=$~)?P>KLw5>Ic+u zT&L9&>PcMhSMOI(;rf6&p`KPJmu+=QonA_)GwK=Ceo%c#J*&Lz{?0`C_ z&ZEXbwVdfxV z>{O}jSFR&tvwy1O`=#>L3)RvsS8onZm9Mzvt4~+g-8EgQ`I}=~63)5T-Rfp;s$6wT z`s9_8j}|0;W?k1xWp^_(Rj${(^;MUJbZN;iU9K`!RlIUZE5zKIdZu2gq8Dz>ulN<$ z+e}Tl*VZd*Xltont=4Zuz3HD?cKuFYMtW{dPcl=>^-J}qUA38ve65OZKI>|Cvu|o`-9KA9dByd7^h@JX(u{eoe;$pXNu=D8 z%hI}B>T5Ii=>�NJj&wlep6<25ANv23ZDNOS+Fi9>L}iU;JdfcHPxpiG9)i%o||9 zg{6lXj4&8wFveg9gPja^F_=VvhCGaY`O2BPKFtBVrFS!L4}<#{>}9EeDZg~pJ)`TZ z=KXS0*DLM~iO)>QE0~_Q`x^{k=Bib0@rg&j#sHIS6%11#pf5Cr3zwx-EnXF8tlmN zui&=iU3Kc~e!0Ht&gD#Pz3d&67~5i{;#$eS;vDpRJ#);tz&KiA?RK+K)r+nVrqop% zRh+tZ7V0(km~&~%^Bm-&droD^S*ows)M2NNM)i$~=Sqz^=|t1gg`_lFNa%XiZKk|i z9;mRH2HW$&(1M9ed|S2;H-=$%)tYu7pE1iRiX=jg&+67jniIHH-qX&t-!J^Teb zPitM*$DA`9!dl%o9mW&(MHy#n*GtukibkZaS4+NAsiDB!iJG%sb8oI;nWKL$+i~jU z^19aS?iDt;rt4+b<5W4D_AzIsznQ47xwU3u#j7K%)=R1x2V-vLDkuaFSu4BEI7Y9T zTtcSbOnPh83NIMYwdOE;xls4da8RXx&7|xtg+Wf(DYpz(Ytpl)ZhqH5*&Fn%n@x`?pI>^2RJUz%)j7)tIk)vlB(+xUc-0iD?xCpxLTB;2|=SIRvqsZRM?;l|eXeO(GoQ&z`g% zkEg5w{HLs;C>*o&6R6R{nYcNSI|*m{K}7u63b|1X+{p65dE`DpUUkPNhYD@)po(Et z#Ts#CgD2SFQqzs3pA3`W5#UxTwr=T1$wk7%ZM%^QQ;o#6N5cf`00YDqg4CfozKKxJ zOuA{;y=H=|rcgOE*!r4?D4PwJf&w4Qmu~?ZNT% z`|u)#9LWcxh)F4A+nI$d8ZxOeOC~su3eACN%@?udu2=mFNb|Tw#5khygq5)I!$|W# zXQga?26;WBNgmIwRYvnq5UIo(mLgxr$SlV&S{O(0Q(#YU*7z>)FqH_C;Mzx2qLHjk zg1htXNtMK19$cMwr~*9yUdG1foQNcr|kd?OL2FdymQy%_lvMm`f}R2njnlV&7hE(8F6#Ihl?~J2qPZ};g^Oli z%U-((9*Qe@=(USzKYIsUJxr<;p7(9EYVSs?A=+1cZ`+vTd?^LaU>N1{vUZn&={#YE zLdjmmbIcff;1Sw!OXVwwaALP*uh{rY)uJijIR~p1&j*h^hl^8RawIpZ?vRW;hfJ?j zsgYOoaA5D+T)&EbH8Z|jzT#`wZRUwgeZ4ME*84#<3&F5(o^GC}XOJ;t zH#omaMyLpF^13uTvQE?z2=3r)xNfs&aj&!*j@htSvqz!tcIJStNM|o%&*#Ffr?5}38 z1@hO4(E5~p4SS?4n3;HIAvcp1PgOLQzCCwDKZfdC7gp{#IU>O6+LJ$z?Ej8mEI3$Z z*CVFcT5xm6Wx;z-BGRhTvmcZyWux4G~n#l@F>>BTsdlO^hX-=0u z!Qg2G&3M(V3BSSQkl_`;f?KrSOh?<<)~OlWZWewLwY?(Gmr&SwxIjscaR0Gycg5vZ)R04z_*> zXo;2>C<5ByZUM~)Q&iZ_L;Fs=Var{*=PuK8*Uk&UF4;PmBdEx+Nu>=UPcae&N0erG}3M<^d75WiOz3?5B`gxB(LGdUN`IyxeAT-Cvr0 z{3}o&xi#Q()LRIKAU0q(d&PT5xl1MBwq`8oKm3Y!=-~UGc)9V)tFO)kiTU}tL(NR9 zv7Qm^S)32xA+k94$jAY(0;crF8-&C_=x0 z%zwqYA4Cv9yHird_84rlJZIAS5Zg0n$D2v%_ewDimwu2@ zgL!2i|3TjO$&eNW!EEVOv%jYwzmDP_)g&J7;GS1D38Jr_AiuAGuqb z48M#U>?szBP$h&6!S93&Es$aI`;(#3gBZdB+MR5~g}9*qp#DKW8$#j;pl2;_jTyXq_HEJS-6p8gjFfoKEQnHXJ#L~)A z1(GOA%nI%U&aCLUU|6cSH%qH)RoBQgq*MJ0gI5tO1le}0P3y*8>gc{=6;hD@K;APM znOn`Vl*!aCV$B4r2t#V7uoT?db;z0Pt7|h!y~L87T}{~3jH6^BivmUI)z(=ZT9=nA zvOSR<|1Bzc)aA*<3a80Iq{)%DTtjL(&b;W4@wU=xKW=A9savn1v(4nTL-HWj zTCuBN7&z0fBA*Ta z{4BK?8j9_j?`=-ESkAnW?y1QvT`oqcLNJ>XSA2i%*!=v_haa0eg8!q(9zSyA$o%!A zcd5&~RHpv5^+)2OM9Qi0zKKq4VfVw~u&lEYtTX7_jMi^^b{~#lMU94|WZ)mQ!%;u^ z1~hRhu`33A2)$xs%%ptO{)qJvd&%Zndp+Z)-T;ynroJN_QyIvAA5+=Jcx@7QIoy3# z_2Dj$yFBi`#Jq4w|FWM}{cl*|xEgpf-q=|ift4c-Y~5*Xr=OuzxdCk+`ZWP<9taBv zcY@^gQQ+hD9X2R%lRhCCPBrnS4ctB$?iBg@xmWDQp2mGXw2I-5a1SuL72fv-dJv|=Oqd1# zNrup%hJE2!xI4^;{oz137!IjjZ|*=V!y6-Nl1t$&>)J&>&oOQ64flrDSgf%RGQJZ! z;l8V}w`~0@{^&JOa9fT%& zZ-ex+!yo5U_zpc(G;$QZ_WW)h8m93cUsE&E%As(#w3Td3`(xp>^mpgRL^!?CcL&>O zG&T=KWAlrm3p%_Y`+A38%1#PS0IBkxT{;D#A0^?_+#tL3NW%hA!Nm7Q?88u|M0>Nf zAbjvE(MD`lz%uf+^;PJMG$a_e3fY^YYejj6VN&@c`|=>*s@a$4tEKf?`AWM=v1?Ut z2cq>^v{A?|u4C;lLEh2N;l2r24P598T-_X-izX-Em;e^98DG~`eF4vEroBgu z<}Xhr9yBo?ig;#rqg~iT)jFQBPVG-~Nfk40nq==;Sd6IQQn7+0!UA=$~Tn zX$GG`5UF6O@{-}vpJNWCfFM5~2_$nq>=-LZ+RT-1KsQ&`_o8c_!Roa1+7I{rZc{ zOp|iZhQ7lbj#JmL{Wx#mV(=*jGN?bz*v~L%kDvZLZ{KF{4ud5I0=p==%3v1;T1=!U zb_M-0LiG`afdLp+%|# z2Wi(88{bbhsDH zCMPXI^08vqHu&@~)oN2>yP<2`6;1+$^o9MZ?@fBL5ai1Eb zu22oV6K^=R%clRxd#WpM7^Q&yq*M~6j;oOd@CtoUK5UCUdK?JFfxd7GWuPyFHNgSW zxgcr#)L82YO!u>)BWPs|Px+>wRlrw30XfXUL^!b%y~KF$dNYBvzLmV11QOZ<%rmi^ zRD0DvVzO`y_~K!|Kb%lbIDQ*4oy4br)LQXrJfjuAA2T=v6xF(a0QbXP_wbrwUYJL# z`=zA=CdD5>UnWQowW>P!|M154wWoXDc*cxG=s;6ENaSUDB6q-FrXO+#6sGn|3^+_M zrUf*Y!1H$i%?*YVK+cEW%wZ-+Axb?|Iu52Pn#^+oNSu;$zEX3=b_mr8frRK&zyV;f zZVMg`6loRT*dLxE>{%5JnXsQ;<22ceh`aKT?y`VK$DFgLJepW21q&mhO&ibZE*!Dj zW6r|*>Sc5X#k+fQZw1qBSi09CG=+4(z%4&7{$>bOWxW4CQus_H!+C6&!vyfUzBv58?-2o)$SIh)=(I zAV^FfcBTXSz{?Aw?%TAck$%_-M!Du-4xrwEdSzJf+}8eI#Qu8=ucNOZfNh%ttr6Yq zgUi=!q-218L*XaTIVpPL!oc~n3#U(BJaOhy@xt>LFBJxHe`@jc#SfmoXc96PEbG#m%6j6&D@2L0n(viwUG#;M?^R z(zQUnX8>A08gLP9IuK2CDNVtE#rm4pOh<~CW)5Q+`8&)^3yjkOTK)zf^$i9a47Njb z?+WH9Flc$VcY}4!XdxI>*1o}H6$Yu#G0UVVv)7r;l&oubEI@AY3Vm1BS4&3iCs7#DQVuCZ zPkErOaopwX5u0di1o1s^Q5ZrQVk(v&vnT8nO7edQ|7?Xu)u@zUI6-mu;Ekd`3?xXpV!wIL2J9E z)E@IRX?+AGqo<>F-fe09+SjkWg_8G0Ps-550{@#Kr0ta_m}l;jxbqJEK5{^4uV2fk zDba{c1OJTzIp)Gq>a*1SL|~$gd0;^h^(FlYOmL7p)iRMen?ufxlChi_xlaY7Cq)2M z9YY$dZId9nI;# z!d6m7@)aSz)#MAZ(X!Pb!-f|hLBmRVz3RPZw^Ea(UuNvwf+JM7W!n)j3rn9B2!Z3wIanzZsfwU=q7^lrUL|P zg%s2>C{pO_>e^Pu_M52wTV!lxbMW^d+kybO2jbn3<$x&-2z#3pHbsv$vbYE2ZUDKw z%UIK3g_2Xux>ed3E&Rj={6s}V zNi(SAgWEu}1|w#x481@4MDLb|-mU*lo1Sjk$CC#5B=Pnz9vk3W@Bjg?Q$s-T!@<$> z*dGN!%di1Y1BaCWR>gsW$hw2*Wxt#YCQ*eXxV6IE++6VVyRI<-=%6?;Mj5?ub(aCH)h;$>PQs$)MrN zATDGOJamF2VZ5Q*?>FVVR9_bdspWcIaWyU1onxnhqg{n*jqj?k2oGET3g7((+H-Ee zdbI2uJGcN#nJj~s*sB{1ZZh~9gTIcTIcN;+GGfFQ`ZtgYgd(`X%zVV%|iWWZ413>$|r45ls~{{cg>p@zvDHdGs6dYIbC8FPtj$^8q_ zZalmw-oTyh*3thAuNq9Y_F=<%JNfXESz&>ERFNuL?y@ECinHBSyK zbC%>JRO0P8@{@4;n~O@&o%R=Gb7FZY7~3WCQ7tLYO^t1Ux-u}`Wzk~?4#M#jxc$N@ z7jzZ5KeSE2*Iog$`IGLRUwcL9D<2u)$P@~R>(%Nimhq=?V|3;e*d_7>duAZ z0Te!pUO0lvgx>U3R;eNYO$fIZnkh3?ID^ZWh>&#_${HT=TTK0J20zI_o=cWtl=lNtimde}XmS!FO27(@U2l8CDdN~D%8vrFOS%>@(E z0=LiZ3V;o=c^hlh-^Qzn)(8Cm?;sxJsysY5%T)^x6WL}tKh5ECeeG7Sh3B8J?g9cF zgy{3?>$+@?y%=*H%A>nt2+_a5k{@O>SsZ)wMGDwDcYhVxXE}Ehh+xYVkVi?C&b|Yd z{k=>aM;2JBXR{@*&*3K%^}i4aeuZlcyH&Uly-o{k*^O8EuSny61^+cdt08{JCP2 z+!c(Y?TfM6;|VxH-1=j<;itt7pU{-0(i9xK4l^PDwR8;!PI;B1Ogu`FiB>NeyS{;&x>;%T0Jn}8e()+6ly|RZ@20JZmsB-4eqYIQ4elKM4 z9<&Z5wuDQ8Uh5Paz}CyY@O5~iNfR&>){GC14%nw-47R8_NJt-QPd$_mSho0OfcJA? z?}wq-fS(yl^!KJYzPA*5cetweD6lv{->RnNL` zmT(NQv)bqyOXq($8~y~Emem4xBO`i^LWzs|J<9>iP(1la=K5bV=zYuP4jw_R71!5# zsx9-q$!TKrZ@2V+Lac|t`G#!*{}^t9y>z_-hk-@~oW(Y8YJdue=wT31{MH2!5psh` z;bXN7+Qa!0;7`M)4xa>D z=p9EO`(8h})=PPK{_J)sMKU;fni#8zLugaZ8uygM$fmLk=;gO$>{YYIDJ}GlB_y!;p z=b*Qv^)zQonR|$*y+jDZY5Ft=x_B%hx&ubVogCS@8pn}Q9L`oexD#I>kjJq(cR@j3c-YP^6PPm207eM65jfk9_RF-)}4CL-9v?nf9Ld417$h)!w zA%V8TXNQm{dkEQZ17$c!aG#-NN!*5*gXwMSMh@{f!Bf382ekA@7=l7duWlhJPJ=no zLv0ZFQJZ$Qj{JW_{*QCy2M~#YUZ@i$y@1IuPk$6aApxBcOgAeq<`~ub$C272P$iMT zO;)%pl>tOTVchUm!wF=Qg5U%J3uj}fQQ>zDLL0VQ2sR>Wf#{HquN%<5srn;b3($`m zkO{^)=G&GBjYD+OMfecP#&1&}X>=#MBdaGT{Nk<%P4pAcx{R6zH{w9Neh~Sd`RYrT2BKkigEx5lmnf>ZRUNaIikolOm3&VK*ic86>q($a0-kuhcz1 z*cXj1j|iHfp)p(L@;&c)-_iG8YL9<(mSfveX8=%B9$dd%zmPt0rU0@5zGhXf%!f20LinnwBCywa=eaDwMs_Igo?|=`;Q!U@%BAd+TOIiaeUq-ZowmhjirUZv8cE9C2(Md(cXT zysT^ENH^lI#p$}PBqs2hj_ldsx5b8T_zcf_@(dJo4)j+S4+Z7oBPIAwhuH@z{$Zks z`VF$A3O*emz7ntzE0^al0hYn&xBGkmj&8w-sCWRC+pP$Ea_XPQWY^%yhpKFoY%nUz z#@(B+H~8*h$DLcAJM6rC0C40=y>{TRb6^#MTkH7vfme+qNFj-iJ@W93Rp>9%cmrCe zqk(s6Cc#7TkmIprdbh+0lz3O*nJ^-Z)4hR2^Sa6o}%GLHo#-fN%JB- zN8y4|9PUSBT_^f+dcO}Cm1#=^u&tkFxSiwmb;EW+Y_5@zn= zGZ&wK;X*Tc0or05_rGxV!fCT~<7*YAA0c&%c#`1Cmf>usuHGo&Y+->%aX4k$Ng~Yw zGl#U)vdlL~)(6pAEMv!su?%`i0KwRQmPp$FCzT$;fmG_G%<+2tXDC}{h1MUp&Qbhi z`+OLj*N{BPya72C+ht^Apq57NL6Wj@lVJ;=YWD<4i*un=_e;X>YXf4_PFA0F!D???RuUG?!P zBDgL=1d$#;qz zBdt2W>ciZ#l4m-u{b>7l`~iN*2nPkMl_B*MbO+P?9Ky!%9V&)KHbz4^q|~DYFi!J{ zo;~kGn1F+PVq?c0XduWb4pYuI$6l!EXw`Y5eZT?*aTC z#BV=-2k<+H-wb|-@XO?5>fD>dfPU0$oL>m0FT%g3v$vf%8yyMkm{dKOp!y&l3Znxz z3x;QB;rneEl-Z>qUePVANI#fh>Qr4glPR#>-Z^6zQv3!LKPbY_HU)iMM(p4LV__5Z zoG~Tt4eVc()&YH>?3h~+s_H=4?4Np`(7%-(eDLAB?0(@ji zDLJbaJQis}x#96Bn6YD`NqjK|pNe2|*BP$%*)lH}!F+8wXAnF9)-LLY)*&o@{)>|q zrAy<%?(gHL7o=xr#p_2m_yS4vbgiOaV|>?%3uoo6?{V%UHEuc85R9KT9(}EJ?B-OT zvqhe9_))Y7tsZ5=-%q`&7ke-l0NIR(K(7>?3#o`5Hm}g-4-jf!=q1zrbz5s0P-u8|e7 ze4z%TGhpQ3N3vikIpWle9L37`+>kGxFPjz)H69N3b{1pjiJ;8u6@IDdV6b=UPCYT{D9&~p=JLV|BTa0~*f!JAoim^{K_-O{8Vem5yKF8o^ z8GN3>+YH26<)LNSmtn7rBzwjN?0f&772EqVWvW|A;NU zjG!>Mg;jTnA=HRUe+!uwOOWHK#=!hV<`Qvr8I*pWx2p_*n4q-+Z07g$I>%3%xexMt zErL@uEl+Z$plf*kKSqW+L3vLNr$D~xV{HFH1cd}Q01eatg?Ve1id8uOeSt-`NLLAZ zPW>JM=+rW1ZR00L+R0_ZrQsocW}5Qj4|)*<*YOu#8{ z0AGlL`ydW+3|L3t7)V(A?*FOp=mCyqrdVXpip7}$*{FmI3j34Y=Zvs*{Uhk|8DU|< ztEA)^XcLDtHxN_tZ!t!`d2gNPm{nvzPS>uTh)Vtr5-))_{voc=ftg!dH(B;anP!Pa z4;QMlaQOx=4{4lLyK_Sg;qP)6hzWVTAnGX04M`*Zs z)gLMBeEJ*|2&YdKPn^7T_W6ZHxYIuW0r=AvChp0g3omo_+>?WPmoB~_4akSB^`ECX>xPm>J0& z$vm3bof*ueLHO_X|DD|GyXKiX-_ET^CH^!wml@6V str: # Combine everything with hells_kitchen suffix return f"multiagent_cooking_{quantities}_hells_kitchen" -def generate_hells_kitchen_task() -> Dict[str, Any]: +def generate_hells_kitchen_task(selected_items) -> Dict[str, Any]: """Generate a single Hell's Kitchen task where agents have recipes for each other's items.""" # Select two different items - selected_items = random.sample(list(COOKING_ITEMS.keys()), 2) + # selected_items = random.sample(list(COOKING_ITEMS.keys()), 2) # Assign one item to each agent agent0_target = selected_items[0] @@ -458,16 +459,22 @@ def generate_maximum_hells_kitchen_tasks( all_items = list(COOKING_ITEMS.keys()) # Fixed test items as specified in your original code - hk_test_items = {"cooked_mutton", "baked_potato", "cake", "golden_carrot", "mushroom_stew", "bread"} + hk_test_items = {"cooked_beef", "baked_potato", "cake", "golden_apple", "rabbit_stew", "bread"} + hk_train_items = set(all_items) - hk_test_items + hk_test_lst = list(hk_test_items) + train_possible_combinations = itertools.combinations(hk_train_items, 2) + test_possible_combinations = [["bread", "golden_apple"], ["golden_apple", "rabbit_stew"], ["bread", "cake"], + ["baked_potato", "golden_apple"], ["baked_potato", "cake"], ["cooked_beef", "golden_apple"]] + # test_possible_combinations = itertools.combinations(hk_test_lst, 2) # Set fixed seed for consistent results random.seed(42) # Generate tasks for training set train_tasks = {} - while len(train_tasks) < num_train_tasks: - task = generate_hells_kitchen_task() + for combination in train_possible_combinations: + task = generate_hells_kitchen_task(combination) task_id, task_data = list(task.items())[0] # Check if task uses valid items for train set @@ -480,8 +487,8 @@ def generate_maximum_hells_kitchen_tasks( # Generate tasks for test set test_tasks = {} - while len(test_tasks) < num_test_tasks: - task = generate_hells_kitchen_task() + for combination in test_possible_combinations: + task = generate_hells_kitchen_task(combination) task_id, task_data = list(task.items())[0] # Check if task uses valid items for test set @@ -594,7 +601,7 @@ if __name__ == "__main__": with open("hells_kitchen_train_tasks.json", "w") as f: json.dump(hk_train_tasks, f, indent=2) - with open("hells_kitchen_test_tasks.json", "w") as f: + with open("mindcraft/tasks/cooking_tasks/require_collab_test_2_items/2_agent_hells_kitchen.json", "w") as f: json.dump(hk_test_tasks, f, indent=2) # Print counts diff --git a/tasks/cooking_tasks/make_collaboration_required_cooking_task.py b/tasks/cooking_tasks/make_collaboration_required_cooking_task.py index e4fb22d..7ca2425 100644 --- a/tasks/cooking_tasks/make_collaboration_required_cooking_task.py +++ b/tasks/cooking_tasks/make_collaboration_required_cooking_task.py @@ -4,6 +4,7 @@ from typing import Dict, List, Any, Tuple, Set from collections import Counter, defaultdict import os import numpy as np +import itertools # Define your COOKING_ITEMS dictionary here # This is where you should put your complete COOKING_ITEMS dictionary @@ -245,6 +246,38 @@ chest_items = { "iron_ingot": 64, } +def make_initial_inventory(items, num_agents): + """ + Evenly split inventory between the agents for a given set of items and number of agents + """ + inventory = {} + for item in items: + if item in COOKING_ITEMS: + cooking_info = COOKING_ITEMS[item] + for chest_item, quantity in cooking_info.get("required_chest_items", {}).items(): + inventory[chest_item] = inventory.get(chest_item, 0) + quantity + else: + print(f"item {item} not found in COOKING_ITEMS.") + initial_inventory = {} + for i in range(num_agents): + initial_inventory[i] = {} + items_lst = list(inventory.keys()) + for i in range(len(items_lst)): + item_counts = count_items_in_inventory(initial_inventory) + agent_num = np.argmin(item_counts) + if inventory[items_lst[i]] == 1: + initial_inventory[agent_num][items_lst[i]] = 1 + elif inventory[items_lst[i]] > 1: + div = inventory[items_lst[i]] // num_agents + rem = inventory[items_lst[i]] % num_agents + for j in range(num_agents): + initial_inventory[j][items_lst[i]] = div + j = 0 + while j < rem: + initial_inventory[j][items_lst[i]] += 1 + j += 1 + return initial_inventory + def count_items_in_inventory(inventory): item_counts = [] for key in inventory.keys(): @@ -255,6 +288,50 @@ def count_items_in_inventory(inventory): item_counts.append(total_items) return item_counts +def make_all_possible_tasks(items: List[str], num_items:int, num_agents: int, output_file) -> List[Dict[str, Any]]: + combinations = itertools.combinations(items, num_items) + tasks = {} + for combination in combinations: + task = {} + task["type"] = "cooking" + task["recipes"] = {} + task["agent_count"] = num_agents + task["target"] = {} + for item in combination: + task["target"][item] = 1 + for item in combination: + if item in COOKING_ITEMS: + task["recipes"][item] = COOKING_ITEMS[item]["recipe"] + else: + print(f"item {item} not found in COOKING_ITEMS.") + initial_inventory = make_initial_inventory(combination, num_agents) + task["initial_inventory"] = initial_inventory + task["goal"] = {} + goal_str = f"Collaborate with other agents around you to make " + conversation_str = f"Let's collaborate to make " + for item in combination: + goal_str += item + ", " + conversation_str += item + ", " + recipe_goal_str = goal_str + "The recipes are as follows:\n" + for item in combination: + recipe_goal_str += f"Recipe for {item}:\n{COOKING_ITEMS[item]['recipe']}\n" + for i in range(num_agents): + task["goal"][i] = recipe_goal_str + task["conversation"] = conversation_str + partial_plan_task = task.copy() + partial_plan_task["goal"] = {} + for i in range(num_agents): + partial_plan_task["goal"][i] = goal_str + recipe_goal_str = goal_str + partial_plan_task["goal"][0] = recipe_goal_str + task_id = "multiagent_cooking" + for item in combination: + task_id += "_" + item + tasks[task_id] = task + tasks[task_id + "_partial_plan"] = partial_plan_task + with open(output_file, 'w') as f: + json.dump(tasks, f, indent=4) + def reconfigure_tasks(task_path, new_task_path, num_agents=None, hells_kitchen=False): @@ -343,10 +420,13 @@ def reconfigure_tasks(task_path, new_task_path, num_agents=None, hells_kitchen=F # reconfigure_tasks("mindcraft/tasks/cooking_tasks/test_tasks/2_agent_cooking_test_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_test_2_items/3_agent.json", 3) # reconfigure_tasks("mindcraft/tasks/cooking_tasks/test_tasks/2_agent_cooking_test_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_test_2_items/4_agent.json", 4) # reconfigure_tasks("mindcraft/tasks/cooking_tasks/test_tasks/2_agent_cooking_test_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_test_2_items/5_agent.json", 5) -reconfigure_tasks("mindcraft/tasks/cooking_tasks/test_tasks/test_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_test_2_items/2_agent_block_recipe.json", 2) -reconfigure_tasks("mindcraft/tasks/cooking_tasks/test_tasks/hells_kitchen_test_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_test_2_items/2_agent_hells_kitchen.json", 2, True) -reconfigure_tasks("mindcraft/tasks/cooking_tasks/train_tasks/train_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_train_2_items/2_agent_block_recipe.json", 2, False) -reconfigure_tasks("mindcraft/tasks/cooking_tasks/train_tasks/hells_kitchen_train_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_train_2_items/2_agent_hells_kitchen.json", 2, True) +test_items = ["bread", "golden_apple", "rabbit_stew", "cake", "baked_potato", "cooked_beef"] +make_all_possible_tasks(test_items, 2, 2, "mindcraft/tasks/cooking_tasks/require_collab_test_2_items/2_agent_all_possible.json") + +# reconfigure_tasks("mindcraft/tasks/cooking_tasks/test_tasks/test_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_test_2_items/2_agent_block_recipe.json", 2) +# reconfigure_tasks("mindcraft/tasks/cooking_tasks/test_tasks/hells_kitchen_test_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_test_2_items/2_agent_hells_kitchen.json", 2, True) +# reconfigure_tasks("mindcraft/tasks/cooking_tasks/train_tasks/train_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_train_2_items/2_agent_block_recipe.json", 2, False) +# reconfigure_tasks("mindcraft/tasks/cooking_tasks/train_tasks/hells_kitchen_train_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_train_2_items/2_agent_hells_kitchen.json", 2, True) # reconfigure_tasks("mindcraft/tasks/cooking_tasks/train_tasks/2_agent_cooking_train_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_train_2_items/3_agent.json", 3) # reconfigure_tasks("mindcraft/tasks/cooking_tasks/train_tasks/2_agent_cooking_train_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_train_2_items/4_agent.json", 4) diff --git a/tasks/cooking_tasks/require_collab_test_2_items/2_agent_all_possible.json b/tasks/cooking_tasks/require_collab_test_2_items/2_agent_all_possible.json new file mode 100644 index 0000000..80e5efa --- /dev/null +++ b/tasks/cooking_tasks/require_collab_test_2_items/2_agent_all_possible.json @@ -0,0 +1,1086 @@ +{ + "multiagent_cooking_bread_golden_apple": { + "type": "cooking", + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "agent_count": 2, + "target": { + "bread": 1, + "golden_apple": 1 + }, + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1 + }, + "1": { + "gold_ingot": 4 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make bread, golden_apple, The recipes are as follows:\nRecipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']\nRecipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']\n", + "1": "Collaborate with other agents around you to make bread, golden_apple, The recipes are as follows:\nRecipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']\nRecipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']\n" + }, + "conversation": "Let's collaborate to make bread, golden_apple, " + }, + "multiagent_cooking_bread_golden_apple_partial_plan": { + "type": "cooking", + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "agent_count": 2, + "target": { + "bread": 1, + "golden_apple": 1 + }, + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1 + }, + "1": { + "gold_ingot": 4 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make bread, golden_apple, ", + "1": "Collaborate with other agents around you to make bread, golden_apple, " + }, + "conversation": "Let's collaborate to make bread, golden_apple, " + }, + "multiagent_cooking_bread_rabbit_stew": { + "type": "cooking", + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "agent_count": 2, + "target": { + "bread": 1, + "rabbit_stew": 1 + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": {} + }, + "goal": { + "0": "Collaborate with other agents around you to make bread, rabbit_stew, The recipes are as follows:\nRecipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']\nRecipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']\n", + "1": "Collaborate with other agents around you to make bread, rabbit_stew, The recipes are as follows:\nRecipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']\nRecipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']\n" + }, + "conversation": "Let's collaborate to make bread, rabbit_stew, " + }, + "multiagent_cooking_bread_rabbit_stew_partial_plan": { + "type": "cooking", + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "agent_count": 2, + "target": { + "bread": 1, + "rabbit_stew": 1 + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": {} + }, + "goal": { + "0": "Collaborate with other agents around you to make bread, rabbit_stew, ", + "1": "Collaborate with other agents around you to make bread, rabbit_stew, " + }, + "conversation": "Let's collaborate to make bread, rabbit_stew, " + }, + "multiagent_cooking_bread_cake": { + "type": "cooking", + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "agent_count": 2, + "target": { + "bread": 1, + "cake": 1 + }, + "initial_inventory": { + "0": { + "milk_bucket": 2 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make bread, cake, The recipes are as follows:\nRecipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']\nRecipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']\n", + "1": "Collaborate with other agents around you to make bread, cake, The recipes are as follows:\nRecipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']\nRecipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']\n" + }, + "conversation": "Let's collaborate to make bread, cake, " + }, + "multiagent_cooking_bread_cake_partial_plan": { + "type": "cooking", + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "agent_count": 2, + "target": { + "bread": 1, + "cake": 1 + }, + "initial_inventory": { + "0": { + "milk_bucket": 2 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make bread, cake, ", + "1": "Collaborate with other agents around you to make bread, cake, " + }, + "conversation": "Let's collaborate to make bread, cake, " + }, + "multiagent_cooking_bread_baked_potato": { + "type": "cooking", + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "agent_count": 2, + "target": { + "bread": 1, + "baked_potato": 1 + }, + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": {} + }, + "goal": { + "0": "Collaborate with other agents around you to make bread, baked_potato, The recipes are as follows:\nRecipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']\nRecipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']\n", + "1": "Collaborate with other agents around you to make bread, baked_potato, The recipes are as follows:\nRecipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']\nRecipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']\n" + }, + "conversation": "Let's collaborate to make bread, baked_potato, " + }, + "multiagent_cooking_bread_baked_potato_partial_plan": { + "type": "cooking", + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "agent_count": 2, + "target": { + "bread": 1, + "baked_potato": 1 + }, + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": {} + }, + "goal": { + "0": "Collaborate with other agents around you to make bread, baked_potato, ", + "1": "Collaborate with other agents around you to make bread, baked_potato, " + }, + "conversation": "Let's collaborate to make bread, baked_potato, " + }, + "multiagent_cooking_bread_cooked_beef": { + "type": "cooking", + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "agent_count": 2, + "target": { + "bread": 1, + "cooked_beef": 1 + }, + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": {} + }, + "goal": { + "0": "Collaborate with other agents around you to make bread, cooked_beef, The recipes are as follows:\nRecipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']\nRecipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']\n", + "1": "Collaborate with other agents around you to make bread, cooked_beef, The recipes are as follows:\nRecipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']\nRecipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']\n" + }, + "conversation": "Let's collaborate to make bread, cooked_beef, " + }, + "multiagent_cooking_bread_cooked_beef_partial_plan": { + "type": "cooking", + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "agent_count": 2, + "target": { + "bread": 1, + "cooked_beef": 1 + }, + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": {} + }, + "goal": { + "0": "Collaborate with other agents around you to make bread, cooked_beef, ", + "1": "Collaborate with other agents around you to make bread, cooked_beef, " + }, + "conversation": "Let's collaborate to make bread, cooked_beef, " + }, + "multiagent_cooking_golden_apple_rabbit_stew": { + "type": "cooking", + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "agent_count": 2, + "target": { + "golden_apple": 1, + "rabbit_stew": 1 + }, + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1 + }, + "1": { + "gold_ingot": 4, + "bowl": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make golden_apple, rabbit_stew, The recipes are as follows:\nRecipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']\nRecipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']\n", + "1": "Collaborate with other agents around you to make golden_apple, rabbit_stew, The recipes are as follows:\nRecipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']\nRecipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']\n" + }, + "conversation": "Let's collaborate to make golden_apple, rabbit_stew, " + }, + "multiagent_cooking_golden_apple_rabbit_stew_partial_plan": { + "type": "cooking", + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "agent_count": 2, + "target": { + "golden_apple": 1, + "rabbit_stew": 1 + }, + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1 + }, + "1": { + "gold_ingot": 4, + "bowl": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make golden_apple, rabbit_stew, ", + "1": "Collaborate with other agents around you to make golden_apple, rabbit_stew, " + }, + "conversation": "Let's collaborate to make golden_apple, rabbit_stew, " + }, + "multiagent_cooking_golden_apple_cake": { + "type": "cooking", + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "agent_count": 2, + "target": { + "golden_apple": 1, + "cake": 1 + }, + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1, + "milk_bucket": 2 + }, + "1": { + "gold_ingot": 4, + "milk_bucket": 1, + "egg": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make golden_apple, cake, The recipes are as follows:\nRecipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']\nRecipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']\n", + "1": "Collaborate with other agents around you to make golden_apple, cake, The recipes are as follows:\nRecipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']\nRecipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']\n" + }, + "conversation": "Let's collaborate to make golden_apple, cake, " + }, + "multiagent_cooking_golden_apple_cake_partial_plan": { + "type": "cooking", + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "agent_count": 2, + "target": { + "golden_apple": 1, + "cake": 1 + }, + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1, + "milk_bucket": 2 + }, + "1": { + "gold_ingot": 4, + "milk_bucket": 1, + "egg": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make golden_apple, cake, ", + "1": "Collaborate with other agents around you to make golden_apple, cake, " + }, + "conversation": "Let's collaborate to make golden_apple, cake, " + }, + "multiagent_cooking_golden_apple_baked_potato": { + "type": "cooking", + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "agent_count": 2, + "target": { + "golden_apple": 1, + "baked_potato": 1 + }, + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1 + }, + "1": { + "gold_ingot": 4, + "coal": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make golden_apple, baked_potato, The recipes are as follows:\nRecipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']\nRecipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']\n", + "1": "Collaborate with other agents around you to make golden_apple, baked_potato, The recipes are as follows:\nRecipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']\nRecipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']\n" + }, + "conversation": "Let's collaborate to make golden_apple, baked_potato, " + }, + "multiagent_cooking_golden_apple_baked_potato_partial_plan": { + "type": "cooking", + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "agent_count": 2, + "target": { + "golden_apple": 1, + "baked_potato": 1 + }, + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1 + }, + "1": { + "gold_ingot": 4, + "coal": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make golden_apple, baked_potato, ", + "1": "Collaborate with other agents around you to make golden_apple, baked_potato, " + }, + "conversation": "Let's collaborate to make golden_apple, baked_potato, " + }, + "multiagent_cooking_golden_apple_cooked_beef": { + "type": "cooking", + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "agent_count": 2, + "target": { + "golden_apple": 1, + "cooked_beef": 1 + }, + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1 + }, + "1": { + "gold_ingot": 4, + "coal": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make golden_apple, cooked_beef, The recipes are as follows:\nRecipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']\nRecipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']\n", + "1": "Collaborate with other agents around you to make golden_apple, cooked_beef, The recipes are as follows:\nRecipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']\nRecipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']\n" + }, + "conversation": "Let's collaborate to make golden_apple, cooked_beef, " + }, + "multiagent_cooking_golden_apple_cooked_beef_partial_plan": { + "type": "cooking", + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "agent_count": 2, + "target": { + "golden_apple": 1, + "cooked_beef": 1 + }, + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1 + }, + "1": { + "gold_ingot": 4, + "coal": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make golden_apple, cooked_beef, ", + "1": "Collaborate with other agents around you to make golden_apple, cooked_beef, " + }, + "conversation": "Let's collaborate to make golden_apple, cooked_beef, " + }, + "multiagent_cooking_rabbit_stew_cake": { + "type": "cooking", + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "agent_count": 2, + "target": { + "rabbit_stew": 1, + "cake": 1 + }, + "initial_inventory": { + "0": { + "bowl": 1, + "milk_bucket": 2 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make rabbit_stew, cake, The recipes are as follows:\nRecipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']\nRecipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']\n", + "1": "Collaborate with other agents around you to make rabbit_stew, cake, The recipes are as follows:\nRecipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']\nRecipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']\n" + }, + "conversation": "Let's collaborate to make rabbit_stew, cake, " + }, + "multiagent_cooking_rabbit_stew_cake_partial_plan": { + "type": "cooking", + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "agent_count": 2, + "target": { + "rabbit_stew": 1, + "cake": 1 + }, + "initial_inventory": { + "0": { + "bowl": 1, + "milk_bucket": 2 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make rabbit_stew, cake, ", + "1": "Collaborate with other agents around you to make rabbit_stew, cake, " + }, + "conversation": "Let's collaborate to make rabbit_stew, cake, " + }, + "multiagent_cooking_rabbit_stew_baked_potato": { + "type": "cooking", + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "agent_count": 2, + "target": { + "rabbit_stew": 1, + "baked_potato": 1 + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make rabbit_stew, baked_potato, The recipes are as follows:\nRecipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']\nRecipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']\n", + "1": "Collaborate with other agents around you to make rabbit_stew, baked_potato, The recipes are as follows:\nRecipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']\nRecipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']\n" + }, + "conversation": "Let's collaborate to make rabbit_stew, baked_potato, " + }, + "multiagent_cooking_rabbit_stew_baked_potato_partial_plan": { + "type": "cooking", + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "agent_count": 2, + "target": { + "rabbit_stew": 1, + "baked_potato": 1 + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make rabbit_stew, baked_potato, ", + "1": "Collaborate with other agents around you to make rabbit_stew, baked_potato, " + }, + "conversation": "Let's collaborate to make rabbit_stew, baked_potato, " + }, + "multiagent_cooking_rabbit_stew_cooked_beef": { + "type": "cooking", + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "agent_count": 2, + "target": { + "rabbit_stew": 1, + "cooked_beef": 1 + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make rabbit_stew, cooked_beef, The recipes are as follows:\nRecipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']\nRecipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']\n", + "1": "Collaborate with other agents around you to make rabbit_stew, cooked_beef, The recipes are as follows:\nRecipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']\nRecipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']\n" + }, + "conversation": "Let's collaborate to make rabbit_stew, cooked_beef, " + }, + "multiagent_cooking_rabbit_stew_cooked_beef_partial_plan": { + "type": "cooking", + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "agent_count": 2, + "target": { + "rabbit_stew": 1, + "cooked_beef": 1 + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make rabbit_stew, cooked_beef, ", + "1": "Collaborate with other agents around you to make rabbit_stew, cooked_beef, " + }, + "conversation": "Let's collaborate to make rabbit_stew, cooked_beef, " + }, + "multiagent_cooking_cake_baked_potato": { + "type": "cooking", + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "agent_count": 2, + "target": { + "cake": 1, + "baked_potato": 1 + }, + "initial_inventory": { + "0": { + "milk_bucket": 2, + "coal": 1 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make cake, baked_potato, The recipes are as follows:\nRecipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']\nRecipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']\n", + "1": "Collaborate with other agents around you to make cake, baked_potato, The recipes are as follows:\nRecipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']\nRecipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']\n" + }, + "conversation": "Let's collaborate to make cake, baked_potato, " + }, + "multiagent_cooking_cake_baked_potato_partial_plan": { + "type": "cooking", + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "agent_count": 2, + "target": { + "cake": 1, + "baked_potato": 1 + }, + "initial_inventory": { + "0": { + "milk_bucket": 2, + "coal": 1 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make cake, baked_potato, ", + "1": "Collaborate with other agents around you to make cake, baked_potato, " + }, + "conversation": "Let's collaborate to make cake, baked_potato, " + }, + "multiagent_cooking_cake_cooked_beef": { + "type": "cooking", + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "agent_count": 2, + "target": { + "cake": 1, + "cooked_beef": 1 + }, + "initial_inventory": { + "0": { + "milk_bucket": 2, + "coal": 1 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make cake, cooked_beef, The recipes are as follows:\nRecipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']\nRecipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']\n", + "1": "Collaborate with other agents around you to make cake, cooked_beef, The recipes are as follows:\nRecipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']\nRecipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']\n" + }, + "conversation": "Let's collaborate to make cake, cooked_beef, " + }, + "multiagent_cooking_cake_cooked_beef_partial_plan": { + "type": "cooking", + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "agent_count": 2, + "target": { + "cake": 1, + "cooked_beef": 1 + }, + "initial_inventory": { + "0": { + "milk_bucket": 2, + "coal": 1 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make cake, cooked_beef, ", + "1": "Collaborate with other agents around you to make cake, cooked_beef, " + }, + "conversation": "Let's collaborate to make cake, cooked_beef, " + }, + "multiagent_cooking_baked_potato_cooked_beef": { + "type": "cooking", + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "agent_count": 2, + "target": { + "baked_potato": 1, + "cooked_beef": 1 + }, + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "coal": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make baked_potato, cooked_beef, The recipes are as follows:\nRecipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']\nRecipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']\n", + "1": "Collaborate with other agents around you to make baked_potato, cooked_beef, The recipes are as follows:\nRecipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']\nRecipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']\n" + }, + "conversation": "Let's collaborate to make baked_potato, cooked_beef, " + }, + "multiagent_cooking_baked_potato_cooked_beef_partial_plan": { + "type": "cooking", + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "agent_count": 2, + "target": { + "baked_potato": 1, + "cooked_beef": 1 + }, + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "coal": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make baked_potato, cooked_beef, ", + "1": "Collaborate with other agents around you to make baked_potato, cooked_beef, " + }, + "conversation": "Let's collaborate to make baked_potato, cooked_beef, " + } +} \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_test_2_items/2_agent_hells_kitchen.json b/tasks/cooking_tasks/require_collab_test_2_items/2_agent_hells_kitchen.json index 639ce9e..9f52082 100644 --- a/tasks/cooking_tasks/require_collab_test_2_items/2_agent_hells_kitchen.json +++ b/tasks/cooking_tasks/require_collab_test_2_items/2_agent_hells_kitchen.json @@ -1,1116 +1,224 @@ { - "multiagent_cooking_baked_potato_cake_hells_kitchen": { - "conversation": "We need to make baked_potato and cake together. You are supposed to make cake and I am supposed to make baked_potato, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "baked_potato", - "cake" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make baked_potato, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 7, - "max_steps_per_recipe": 5, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 1, - "milk_bucket": 2 - }, - "1": { - "milk_bucket": 1, - "egg": 1 - } - } + "multiagent_cooking_bread_golden_apple_hells_kitchen": { + "conversation": "We need to make bread and golden_apple together. You are supposed to make golden_apple and I am supposed to make bread, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "bread", + "golden_apple" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] }, - "multiagent_cooking_cooked_mutton_mushroom_stew_hells_kitchen": { - "conversation": "We need to make cooked_mutton and mushroom_stew together. You are supposed to make mushroom_stew and I am supposed to make cooked_mutton, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_mutton", - "mushroom_stew" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_mutton, but you don't have the recipe for it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make mushroom_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 1 - }, - "1": { - "bowl": 1 - } - } + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make bread, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Get 1 apple and 8 gold ingots from your inventory or other bots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make golden_apple, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make bread. You have their recipe:\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." }, - "multiagent_cooking_cooked_mutton_cake_hells_kitchen": { - "conversation": "We need to make cooked_mutton and cake together. You are supposed to make cake and I am supposed to make cooked_mutton, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_mutton", - "cake" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_mutton, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 7, - "max_steps_per_recipe": 5, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 1, - "milk_bucket": 2 - }, - "1": { - "milk_bucket": 1, - "egg": 1 - } - } + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 4, + "max_steps_per_recipe": 2, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" }, - "multiagent_cooking_mushroom_stew_baked_potato_hells_kitchen": { - "conversation": "We need to make mushroom_stew and baked_potato together. You are supposed to make baked_potato and I am supposed to make mushroom_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "mushroom_stew", - "baked_potato" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make mushroom_stew, but you don't have the recipe for it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make baked_potato, but you don't have the recipe for it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "coal": 1 - } - } + "difficulty": "medium" + }, + "multiagent_cooking_golden_apple_rabbit_stew_hells_kitchen": { + "conversation": "We need to make golden_apple and rabbit_stew together. You are supposed to make rabbit_stew and I am supposed to make golden_apple, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "golden_apple", + "rabbit_stew" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] }, - "multiagent_cooking_golden_carrot_cooked_mutton_hells_kitchen": { - "conversation": "We need to make golden_carrot and cooked_mutton together. You are supposed to make cooked_mutton and I am supposed to make golden_carrot, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "golden_carrot", - "cooked_mutton" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_mutton, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "gold_ingot": 4, - "coal": 1 - }, - "1": { - "gold_ingot": 4 - } - } + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make golden_apple, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 4: Go to the furnace and bake the potato.\nStep 5: From your inventory or other agents get a bowl\nStep 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 7: Go to the furnace and cook the raw rabbit.\nStep 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make rabbit_stew, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Get 1 apple and 8 gold ingots from your inventory or other bots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." }, - "multiagent_cooking_baked_potato_mushroom_stew_hells_kitchen": { - "conversation": "We need to make baked_potato and mushroom_stew together. You are supposed to make mushroom_stew and I am supposed to make baked_potato, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "baked_potato", - "mushroom_stew" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make baked_potato, but you don't have the recipe for it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make mushroom_stew, but you don't have the recipe for it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 1 - }, - "1": { - "bowl": 1 - } - } + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 10, + "max_steps_per_recipe": 8, + "unique_target_items": 2, + "overall_difficulty_score": 6, + "difficulty_category": "hard" }, - "multiagent_cooking_cake_bread_hells_kitchen": { - "conversation": "We need to make cake and bread together. You are supposed to make bread and I am supposed to make cake, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cake", - "bread" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make bread. You have their recipe:\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make bread, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 7, - "max_steps_per_recipe": 5, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "milk_bucket": 2 - }, - "1": { - "milk_bucket": 1, - "egg": 1 - } - } + "difficulty": "hard" + }, + "multiagent_cooking_bread_cake_hells_kitchen": { + "conversation": "We need to make bread and cake together. You are supposed to make cake and I am supposed to make bread, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "bread", + "cake" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] }, - "multiagent_cooking_bread_cake_hells_kitchen": { - "conversation": "We need to make bread and cake together. You are supposed to make cake and I am supposed to make bread, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "bread", - "cake" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make bread, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make bread. You have their recipe:\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 7, - "max_steps_per_recipe": 5, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "milk_bucket": 2 - }, - "1": { - "milk_bucket": 1, - "egg": 1 - } - } + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make bread, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: From your inventory or other agents get 3 milk buckets (already filled with milk).\nStep 3: Get an egg from your inventory or other agents.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cake, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make bread. You have their recipe:\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." }, - "multiagent_cooking_mushroom_stew_cooked_mutton_hells_kitchen": { - "conversation": "We need to make mushroom_stew and cooked_mutton together. You are supposed to make cooked_mutton and I am supposed to make mushroom_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "mushroom_stew", - "cooked_mutton" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make mushroom_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_mutton, but you don't have the recipe for it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "coal": 1 - } - } + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 5, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" }, - "multiagent_cooking_mushroom_stew_cake_hells_kitchen": { - "conversation": "We need to make mushroom_stew and cake together. You are supposed to make cake and I am supposed to make mushroom_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "mushroom_stew", - "cake" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make mushroom_stew, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 8, - "max_steps_per_recipe": 5, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "bowl": 1, - "milk_bucket": 2 - }, - "1": { - "milk_bucket": 1, - "egg": 1 - } - } + "difficulty": "medium" + }, + "multiagent_cooking_baked_potato_golden_apple_hells_kitchen": { + "conversation": "We need to make baked_potato and golden_apple together. You are supposed to make golden_apple and I am supposed to make baked_potato, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "baked_potato", + "golden_apple" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] }, - "multiagent_cooking_mushroom_stew_golden_carrot_hells_kitchen": { - "conversation": "We need to make mushroom_stew and golden_carrot together. You are supposed to make golden_carrot and I am supposed to make mushroom_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "mushroom_stew", - "golden_carrot" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make mushroom_stew, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 6, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "bowl": 1, - "gold_ingot": 4 - }, - "1": { - "gold_ingot": 4 - } - } + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make baked_potato, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Get 1 apple and 8 gold ingots from your inventory or other bots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make golden_apple, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." }, - "multiagent_cooking_golden_carrot_cake_hells_kitchen": { - "conversation": "We need to make golden_carrot and cake together. You are supposed to make cake and I am supposed to make golden_carrot, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "golden_carrot", - "cake" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 8, - "max_steps_per_recipe": 5, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "gold_ingot": 4, - "milk_bucket": 2 - }, - "1": { - "gold_ingot": 4, - "milk_bucket": 1, - "egg": 1 - } - } + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 6, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" }, - "multiagent_cooking_golden_carrot_bread_hells_kitchen": { - "conversation": "We need to make golden_carrot and bread together. You are supposed to make bread and I am supposed to make golden_carrot, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "golden_carrot", - "bread" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make bread. You have their recipe:\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make bread, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "gold_ingot": 4 - }, - "1": { - "gold_ingot": 4 - } - } + "difficulty": "medium" + }, + "multiagent_cooking_baked_potato_cake_hells_kitchen": { + "conversation": "We need to make baked_potato and cake together. You are supposed to make cake and I am supposed to make baked_potato, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "baked_potato", + "cake" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] }, - "multiagent_cooking_baked_potato_cooked_mutton_hells_kitchen": { - "conversation": "We need to make baked_potato and cooked_mutton together. You are supposed to make cooked_mutton and I am supposed to make baked_potato, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "baked_potato", - "cooked_mutton" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make baked_potato, but you don't have the recipe for it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_mutton, but you don't have the recipe for it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 4, - "max_steps_per_recipe": 2, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 1 - }, - "1": { - "coal": 1 - } - } + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make baked_potato, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: From your inventory or other agents get 3 milk buckets (already filled with milk).\nStep 3: Get an egg from your inventory or other agents.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cake, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." }, - "multiagent_cooking_cake_mushroom_stew_hells_kitchen": { - "conversation": "We need to make cake and mushroom_stew together. You are supposed to make mushroom_stew and I am supposed to make cake, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cake", - "mushroom_stew" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make mushroom_stew, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 8, - "max_steps_per_recipe": 5, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "milk_bucket": 2, - "bowl": 1 - }, - "1": { - "milk_bucket": 1, - "egg": 1 - } - } + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 9, + "max_steps_per_recipe": 5, + "unique_target_items": 2, + "overall_difficulty_score": 6, + "difficulty_category": "hard" }, - "multiagent_cooking_cake_cooked_mutton_hells_kitchen": { - "conversation": "We need to make cake and cooked_mutton together. You are supposed to make cooked_mutton and I am supposed to make cake, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cake", - "cooked_mutton" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_mutton, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 7, - "max_steps_per_recipe": 5, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "milk_bucket": 2, - "coal": 1 - }, - "1": { - "milk_bucket": 1, - "egg": 1 - } - } + "difficulty": "hard" + }, + "multiagent_cooking_cooked_beef_golden_apple_hells_kitchen": { + "conversation": "We need to make cooked_beef and golden_apple together. You are supposed to make golden_apple and I am supposed to make cooked_beef, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_beef", + "golden_apple" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] }, - "multiagent_cooking_golden_carrot_baked_potato_hells_kitchen": { - "conversation": "We need to make golden_carrot and baked_potato together. You are supposed to make baked_potato and I am supposed to make golden_carrot, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "golden_carrot", - "baked_potato" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make baked_potato, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "gold_ingot": 4, - "coal": 1 - }, - "1": { - "gold_ingot": 4 - } - } + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_beef, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Get 1 apple and 8 gold ingots from your inventory or other bots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make golden_apple, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 4: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." }, - "multiagent_cooking_cake_golden_carrot_hells_kitchen": { - "conversation": "We need to make cake and golden_carrot together. You are supposed to make golden_carrot and I am supposed to make cake, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cake", - "golden_carrot" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 8, - "max_steps_per_recipe": 5, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "milk_bucket": 2, - "gold_ingot": 4 - }, - "1": { - "milk_bucket": 1, - "egg": 1, - "gold_ingot": 4 - } - } + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 6, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" }, - "multiagent_cooking_bread_golden_carrot_hells_kitchen": { - "conversation": "We need to make bread and golden_carrot together. You are supposed to make golden_carrot and I am supposed to make bread, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "bread", - "golden_carrot" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make bread, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make bread. You have their recipe:\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "gold_ingot": 4 - }, - "1": { - "gold_ingot": 4 - } - } - }, - "multiagent_cooking_golden_carrot_mushroom_stew_hells_kitchen": { - "conversation": "We need to make golden_carrot and mushroom_stew together. You are supposed to make mushroom_stew and I am supposed to make golden_carrot, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "golden_carrot", - "mushroom_stew" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make mushroom_stew, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 6, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "gold_ingot": 4, - "bowl": 1 - }, - "1": { - "gold_ingot": 4 - } - } - }, - "multiagent_cooking_cooked_mutton_baked_potato_hells_kitchen": { - "conversation": "We need to make cooked_mutton and baked_potato together. You are supposed to make baked_potato and I am supposed to make cooked_mutton, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_mutton", - "baked_potato" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_mutton, but you don't have the recipe for it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make baked_potato, but you don't have the recipe for it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 4, - "max_steps_per_recipe": 2, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 1 - }, - "1": { - "coal": 1 - } - } - }, - "multiagent_cooking_cooked_mutton_golden_carrot_hells_kitchen": { - "conversation": "We need to make cooked_mutton and golden_carrot together. You are supposed to make golden_carrot and I am supposed to make cooked_mutton, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_mutton", - "golden_carrot" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_mutton, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 1, - "gold_ingot": 4 - }, - "1": { - "gold_ingot": 4 - } - } - }, - "multiagent_cooking_baked_potato_golden_carrot_hells_kitchen": { - "conversation": "We need to make baked_potato and golden_carrot together. You are supposed to make golden_carrot and I am supposed to make baked_potato, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "baked_potato", - "golden_carrot" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make baked_potato, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 1, - "gold_ingot": 4 - }, - "1": { - "gold_ingot": 4 - } - } - }, - "multiagent_cooking_cake_baked_potato_hells_kitchen": { - "conversation": "We need to make cake and baked_potato together. You are supposed to make baked_potato and I am supposed to make cake, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cake", - "baked_potato" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make baked_potato, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 7, - "max_steps_per_recipe": 5, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "milk_bucket": 2, - "coal": 1 - }, - "1": { - "milk_bucket": 1, - "egg": 1 - } - } - } + "difficulty": "medium" + } } \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_test_2_items/2_agent_hells_kitchen_long_timeout.json b/tasks/cooking_tasks/require_collab_test_2_items/2_agent_hells_kitchen_long_timeout.json deleted file mode 100644 index 0c9726c..0000000 --- a/tasks/cooking_tasks/require_collab_test_2_items/2_agent_hells_kitchen_long_timeout.json +++ /dev/null @@ -1,1116 +0,0 @@ -{ - "multiagent_cooking_baked_potato_cake_hells_kitchen": { - "conversation": "We need to make baked_potato and cake together. You are supposed to make cake and I am supposed to make baked_potato, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "baked_potato", - "cake" - ], - "type": "cooking", - "timeout": 1500, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make baked_potato, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 7, - "max_steps_per_recipe": 5, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 1, - "milk_bucket": 2 - }, - "1": { - "milk_bucket": 1, - "egg": 1 - } - } - }, - "multiagent_cooking_cooked_mutton_mushroom_stew_hells_kitchen": { - "conversation": "We need to make cooked_mutton and mushroom_stew together. You are supposed to make mushroom_stew and I am supposed to make cooked_mutton, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_mutton", - "mushroom_stew" - ], - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_mutton, but you don't have the recipe for it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make mushroom_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 1 - }, - "1": { - "bowl": 1 - } - } - }, - "multiagent_cooking_cooked_mutton_cake_hells_kitchen": { - "conversation": "We need to make cooked_mutton and cake together. You are supposed to make cake and I am supposed to make cooked_mutton, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_mutton", - "cake" - ], - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_mutton, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 7, - "max_steps_per_recipe": 5, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 1, - "milk_bucket": 2 - }, - "1": { - "milk_bucket": 1, - "egg": 1 - } - } - }, - "multiagent_cooking_mushroom_stew_baked_potato_hells_kitchen": { - "conversation": "We need to make mushroom_stew and baked_potato together. You are supposed to make baked_potato and I am supposed to make mushroom_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "mushroom_stew", - "baked_potato" - ], - "type": "cooking", - "timeout": 1500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make mushroom_stew, but you don't have the recipe for it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make baked_potato, but you don't have the recipe for it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "coal": 1 - } - } - }, - "multiagent_cooking_golden_carrot_cooked_mutton_hells_kitchen": { - "conversation": "We need to make golden_carrot and cooked_mutton together. You are supposed to make cooked_mutton and I am supposed to make golden_carrot, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "golden_carrot", - "cooked_mutton" - ], - "type": "cooking", - "timeout": 1500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_mutton, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "gold_ingot": 4, - "coal": 1 - }, - "1": { - "gold_ingot": 4 - } - } - }, - "multiagent_cooking_baked_potato_mushroom_stew_hells_kitchen": { - "conversation": "We need to make baked_potato and mushroom_stew together. You are supposed to make mushroom_stew and I am supposed to make baked_potato, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "baked_potato", - "mushroom_stew" - ], - "type": "cooking", - "timeout": 1500, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make baked_potato, but you don't have the recipe for it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make mushroom_stew, but you don't have the recipe for it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 1 - }, - "1": { - "bowl": 1 - } - } - }, - "multiagent_cooking_cake_bread_hells_kitchen": { - "conversation": "We need to make cake and bread together. You are supposed to make bread and I am supposed to make cake, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cake", - "bread" - ], - "type": "cooking", - "timeout": 1500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make bread. You have their recipe:\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make bread, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 7, - "max_steps_per_recipe": 5, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "milk_bucket": 2 - }, - "1": { - "milk_bucket": 1, - "egg": 1 - } - } - }, - "multiagent_cooking_bread_cake_hells_kitchen": { - "conversation": "We need to make bread and cake together. You are supposed to make cake and I am supposed to make bread, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "bread", - "cake" - ], - "type": "cooking", - "timeout": 1500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make bread, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make bread. You have their recipe:\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 7, - "max_steps_per_recipe": 5, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "milk_bucket": 2 - }, - "1": { - "milk_bucket": 1, - "egg": 1 - } - } - }, - "multiagent_cooking_mushroom_stew_cooked_mutton_hells_kitchen": { - "conversation": "We need to make mushroom_stew and cooked_mutton together. You are supposed to make cooked_mutton and I am supposed to make mushroom_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "mushroom_stew", - "cooked_mutton" - ], - "type": "cooking", - "timeout": 1500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make mushroom_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_mutton, but you don't have the recipe for it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "coal": 1 - } - } - }, - "multiagent_cooking_mushroom_stew_cake_hells_kitchen": { - "conversation": "We need to make mushroom_stew and cake together. You are supposed to make cake and I am supposed to make mushroom_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "mushroom_stew", - "cake" - ], - "type": "cooking", - "timeout": 1500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make mushroom_stew, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 8, - "max_steps_per_recipe": 5, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "bowl": 1, - "milk_bucket": 2 - }, - "1": { - "milk_bucket": 1, - "egg": 1 - } - } - }, - "multiagent_cooking_mushroom_stew_golden_carrot_hells_kitchen": { - "conversation": "We need to make mushroom_stew and golden_carrot together. You are supposed to make golden_carrot and I am supposed to make mushroom_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "mushroom_stew", - "golden_carrot" - ], - "type": "cooking", - "timeout": 1500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make mushroom_stew, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 6, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "bowl": 1, - "gold_ingot": 4 - }, - "1": { - "gold_ingot": 4 - } - } - }, - "multiagent_cooking_golden_carrot_cake_hells_kitchen": { - "conversation": "We need to make golden_carrot and cake together. You are supposed to make cake and I am supposed to make golden_carrot, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "golden_carrot", - "cake" - ], - "type": "cooking", - "timeout": 1500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 8, - "max_steps_per_recipe": 5, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "gold_ingot": 4, - "milk_bucket": 2 - }, - "1": { - "gold_ingot": 4, - "milk_bucket": 1, - "egg": 1 - } - } - }, - "multiagent_cooking_golden_carrot_bread_hells_kitchen": { - "conversation": "We need to make golden_carrot and bread together. You are supposed to make bread and I am supposed to make golden_carrot, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "golden_carrot", - "bread" - ], - "type": "cooking", - "timeout": 1500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make bread. You have their recipe:\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make bread, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "gold_ingot": 4 - }, - "1": { - "gold_ingot": 4 - } - } - }, - "multiagent_cooking_baked_potato_cooked_mutton_hells_kitchen": { - "conversation": "We need to make baked_potato and cooked_mutton together. You are supposed to make cooked_mutton and I am supposed to make baked_potato, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "baked_potato", - "cooked_mutton" - ], - "type": "cooking", - "timeout": 1500, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make baked_potato, but you don't have the recipe for it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_mutton, but you don't have the recipe for it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 4, - "max_steps_per_recipe": 2, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 1 - }, - "1": { - "coal": 1 - } - } - }, - "multiagent_cooking_cake_mushroom_stew_hells_kitchen": { - "conversation": "We need to make cake and mushroom_stew together. You are supposed to make mushroom_stew and I am supposed to make cake, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cake", - "mushroom_stew" - ], - "type": "cooking", - "timeout": 1500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make mushroom_stew, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 8, - "max_steps_per_recipe": 5, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "milk_bucket": 2, - "bowl": 1 - }, - "1": { - "milk_bucket": 1, - "egg": 1 - } - } - }, - "multiagent_cooking_cake_cooked_mutton_hells_kitchen": { - "conversation": "We need to make cake and cooked_mutton together. You are supposed to make cooked_mutton and I am supposed to make cake, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cake", - "cooked_mutton" - ], - "type": "cooking", - "timeout": 1500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_mutton, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 7, - "max_steps_per_recipe": 5, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "milk_bucket": 2, - "coal": 1 - }, - "1": { - "milk_bucket": 1, - "egg": 1 - } - } - }, - "multiagent_cooking_golden_carrot_baked_potato_hells_kitchen": { - "conversation": "We need to make golden_carrot and baked_potato together. You are supposed to make baked_potato and I am supposed to make golden_carrot, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "golden_carrot", - "baked_potato" - ], - "type": "cooking", - "timeout": 1500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make baked_potato, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "gold_ingot": 4, - "coal": 1 - }, - "1": { - "gold_ingot": 4 - } - } - }, - "multiagent_cooking_cake_golden_carrot_hells_kitchen": { - "conversation": "We need to make cake and golden_carrot together. You are supposed to make golden_carrot and I am supposed to make cake, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cake", - "golden_carrot" - ], - "type": "cooking", - "timeout": 1500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 8, - "max_steps_per_recipe": 5, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "milk_bucket": 2, - "gold_ingot": 4 - }, - "1": { - "milk_bucket": 1, - "egg": 1, - "gold_ingot": 4 - } - } - }, - "multiagent_cooking_bread_golden_carrot_hells_kitchen": { - "conversation": "We need to make bread and golden_carrot together. You are supposed to make golden_carrot and I am supposed to make bread, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "bread", - "golden_carrot" - ], - "type": "cooking", - "timeout": 1500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make bread, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make bread. You have their recipe:\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "gold_ingot": 4 - }, - "1": { - "gold_ingot": 4 - } - } - }, - "multiagent_cooking_golden_carrot_mushroom_stew_hells_kitchen": { - "conversation": "We need to make golden_carrot and mushroom_stew together. You are supposed to make mushroom_stew and I am supposed to make golden_carrot, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "golden_carrot", - "mushroom_stew" - ], - "type": "cooking", - "timeout": 1500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make mushroom_stew, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 6, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "gold_ingot": 4, - "bowl": 1 - }, - "1": { - "gold_ingot": 4 - } - } - }, - "multiagent_cooking_cooked_mutton_baked_potato_hells_kitchen": { - "conversation": "We need to make cooked_mutton and baked_potato together. You are supposed to make baked_potato and I am supposed to make cooked_mutton, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_mutton", - "baked_potato" - ], - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_mutton, but you don't have the recipe for it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make baked_potato, but you don't have the recipe for it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 4, - "max_steps_per_recipe": 2, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 1 - }, - "1": { - "coal": 1 - } - } - }, - "multiagent_cooking_cooked_mutton_golden_carrot_hells_kitchen": { - "conversation": "We need to make cooked_mutton and golden_carrot together. You are supposed to make golden_carrot and I am supposed to make cooked_mutton, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_mutton", - "golden_carrot" - ], - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_mutton, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 1, - "gold_ingot": 4 - }, - "1": { - "gold_ingot": 4 - } - } - }, - "multiagent_cooking_baked_potato_golden_carrot_hells_kitchen": { - "conversation": "We need to make baked_potato and golden_carrot together. You are supposed to make golden_carrot and I am supposed to make baked_potato, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "baked_potato", - "golden_carrot" - ], - "type": "cooking", - "timeout": 1500, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make baked_potato, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 1, - "gold_ingot": 4 - }, - "1": { - "gold_ingot": 4 - } - } - }, - "multiagent_cooking_cake_baked_potato_hells_kitchen": { - "conversation": "We need to make cake and baked_potato together. You are supposed to make baked_potato and I am supposed to make cake, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cake", - "baked_potato" - ], - "type": "cooking", - "timeout": 1500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make baked_potato, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 7, - "max_steps_per_recipe": 5, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "milk_bucket": 2, - "coal": 1 - }, - "1": { - "milk_bucket": 1, - "egg": 1 - } - } - } -} \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_test_2_items/5_agent_remaining.json b/tasks/cooking_tasks/require_collab_test_2_items/5_agent_remaining.json new file mode 100644 index 0000000..1144f11 --- /dev/null +++ b/tasks/cooking_tasks/require_collab_test_2_items/5_agent_remaining.json @@ -0,0 +1,153 @@ +{ + "multiagent_cooking_2_1_baked_potato_1_golden_apple": { + "conversation": "Let's work together to make baked_potato, golden_apple.", + "agent_count": 5, + "target": { + "baked_potato": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" + }, + "initial_inventory": { + "0": { + "coal": 2, + "gold_ingot": 2 + }, + "1": { + "coal": 2, + "gold_ingot": 2 + }, + "2": { + "coal": 2, + "gold_ingot": 2 + }, + "3": { + "coal": 2, + "gold_ingot": 2 + }, + "4": { + "coal": 2, + "apple": 1 + } + } + }, + "multiagent_cooking_2_1_baked_potato_1_cake": { + "conversation": "Let's work together to make baked_potato, cake.", + "agent_count": 5, + "target": { + "baked_potato": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" + }, + "initial_inventory": { + "0": { + "coal": 2, + "milk_bucket": 1 + }, + "1": { + "coal": 2, + "milk_bucket": 1 + }, + "2": { + "coal": 2, + "milk_bucket": 1 + + }, + "3": { + "coal": 2, + "egg": 1 + }, + "4": { + "coal": 2, + "egg": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_beef_1_golden_apple": { + "conversation": "Let's work together to make golden_apple, cooked_beef.", + "agent_count": 5, + "target": { + "golden_apple": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 2, + "coal": 2 + }, + "1": { + "gold_ingot": 2, + "coal": 2 + }, + "2": { + "gold_ingot": 2, + "coal": 2 + }, + "3": { + "gold_ingot": 2, + "coal": 2 + }, + "4": { + "apple": 1, + "coal": 2 + } + } + } +} \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_train_2_items/2_agent_hells_kitchen.json b/tasks/cooking_tasks/require_collab_train_2_items/2_agent_hells_kitchen.json index 25e108b..311e554 100644 --- a/tasks/cooking_tasks/require_collab_train_2_items/2_agent_hells_kitchen.json +++ b/tasks/cooking_tasks/require_collab_train_2_items/2_agent_hells_kitchen.json @@ -1,4178 +1,1667 @@ { - "multiagent_cooking_suspicious_stew_cooked_chicken_hells_kitchen": { - "conversation": "We need to make suspicious_stew and cooked_chicken together. You are supposed to make cooked_chicken and I am supposed to make suspicious_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "suspicious_stew", - "cooked_chicken" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make suspicious_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_chicken, but you don't have the recipe for it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "bowl": 1, - "coal": 1 - }, - "1": { - "dandelion": 1 - } - } - }, - "multiagent_cooking_rabbit_stew_cooked_porkchop_hells_kitchen": { - "conversation": "We need to make rabbit_stew and cooked_porkchop together. You are supposed to make cooked_porkchop and I am supposed to make rabbit_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "rabbit_stew", - "cooked_porkchop" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make rabbit_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_porkchop, but you don't have the recipe for it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 8, - "max_steps_per_recipe": 6, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "coal": 1 - } - } - }, - "multiagent_cooking_pumpkin_pie_cooked_chicken_hells_kitchen": { - "conversation": "We need to make pumpkin_pie and cooked_chicken together. You are supposed to make cooked_chicken and I am supposed to make pumpkin_pie, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "pumpkin_pie", - "cooked_chicken" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make pumpkin_pie, but you don't have the recipe for it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_chicken, but you don't have the recipe for it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 6, - "max_steps_per_recipe": 4, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "egg": 1 - }, - "1": { - "coal": 1 - } - } - }, - "multiagent_cooking_suspicious_stew_cookie_hells_kitchen": { - "conversation": "We need to make suspicious_stew and cookie together. You are supposed to make cookie and I am supposed to make suspicious_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "suspicious_stew", - "cookie" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make suspicious_stew, but you don't have the recipe for it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cookie, but you don't have the recipe for it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 6, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "bowl": 1, - "cocoa_beans": 1 - }, - "1": { - "dandelion": 1 - } - } - }, - "multiagent_cooking_pumpkin_pie_beetroot_soup_hells_kitchen": { - "conversation": "We need to make pumpkin_pie and beetroot_soup together. You are supposed to make beetroot_soup and I am supposed to make pumpkin_pie, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "pumpkin_pie", - "beetroot_soup" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make pumpkin_pie, but you don't have the recipe for it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make beetroot_soup, but you don't have the recipe for it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 7, - "max_steps_per_recipe": 4, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "egg": 1 - }, - "1": { - "bowl": 1 - } - } - }, - "multiagent_cooking_suspicious_stew_cooked_porkchop_hells_kitchen": { - "conversation": "We need to make suspicious_stew and cooked_porkchop together. You are supposed to make cooked_porkchop and I am supposed to make suspicious_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "suspicious_stew", - "cooked_porkchop" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make suspicious_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_porkchop, but you don't have the recipe for it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "bowl": 1, - "coal": 1 - }, - "1": { - "dandelion": 1 - } - } - }, - "multiagent_cooking_cooked_chicken_beetroot_soup_hells_kitchen": { - "conversation": "We need to make cooked_chicken and beetroot_soup together. You are supposed to make beetroot_soup and I am supposed to make cooked_chicken, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_chicken", - "beetroot_soup" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_chicken, but you don't have the recipe for it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make beetroot_soup, but you don't have the recipe for it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 1 - }, - "1": { - "bowl": 1 - } - } - }, - "multiagent_cooking_golden_apple_suspicious_stew_hells_kitchen": { - "conversation": "We need to make golden_apple and suspicious_stew together. You are supposed to make suspicious_stew and I am supposed to make golden_apple, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "golden_apple", - "suspicious_stew" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make golden_apple, but you don't have the recipe for it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make suspicious_stew, but you don't have the recipe for it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "gold_ingot": 4, - "apple": 1, - "dandelion": 1 - }, - "1": { - "gold_ingot": 4, - "bowl": 1 - } - } - }, - "multiagent_cooking_cooked_chicken_golden_apple_hells_kitchen": { - "conversation": "We need to make cooked_chicken and golden_apple together. You are supposed to make golden_apple and I am supposed to make cooked_chicken, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_chicken", - "golden_apple" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_chicken, but you don't have the recipe for it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make golden_apple, but you don't have the recipe for it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 4, - "max_steps_per_recipe": 2, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 1, - "gold_ingot": 4 - }, - "1": { - "gold_ingot": 4, - "apple": 1 - } - } - }, - "multiagent_cooking_cookie_cooked_beef_hells_kitchen": { - "conversation": "We need to make cookie and cooked_beef together. You are supposed to make cooked_beef and I am supposed to make cookie, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cookie", - "cooked_beef" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cookie, but you don't have the recipe for it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_beef, but you don't have the recipe for it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "cocoa_beans": 1 - }, - "1": { - "coal": 1 - } - } - }, - "multiagent_cooking_rabbit_stew_cookie_hells_kitchen": { - "conversation": "We need to make rabbit_stew and cookie together. You are supposed to make cookie and I am supposed to make rabbit_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "rabbit_stew", - "cookie" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make rabbit_stew, but you don't have the recipe for it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cookie, but you don't have the recipe for it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 9, - "max_steps_per_recipe": 6, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "cocoa_beans": 1 - } - } - }, - "multiagent_cooking_rabbit_stew_pumpkin_pie_hells_kitchen": { - "conversation": "We need to make rabbit_stew and pumpkin_pie together. You are supposed to make pumpkin_pie and I am supposed to make rabbit_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "rabbit_stew", - "pumpkin_pie" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make rabbit_stew, but you don't have the recipe for it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make pumpkin_pie, but you don't have the recipe for it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 10, - "max_steps_per_recipe": 6, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "egg": 1 - } - } - }, - "multiagent_cooking_suspicious_stew_rabbit_stew_hells_kitchen": { - "conversation": "We need to make suspicious_stew and rabbit_stew together. You are supposed to make rabbit_stew and I am supposed to make suspicious_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "suspicious_stew", - "rabbit_stew" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make suspicious_stew, but you don't have the recipe for it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make rabbit_stew, but you don't have the recipe for it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 9, - "max_steps_per_recipe": 6, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "bowl": 1, - "dandelion": 1 - }, - "1": { - "bowl": 1 - } - } - }, - "multiagent_cooking_beetroot_soup_suspicious_stew_hells_kitchen": { - "conversation": "We need to make beetroot_soup and suspicious_stew together. You are supposed to make suspicious_stew and I am supposed to make beetroot_soup, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "beetroot_soup", - "suspicious_stew" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make beetroot_soup, but you don't have the recipe for it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make suspicious_stew, but you don't have the recipe for it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 6, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "bowl": 1, - "dandelion": 1 - }, - "1": { - "bowl": 1 - } - } - }, - "multiagent_cooking_suspicious_stew_golden_apple_hells_kitchen": { - "conversation": "We need to make suspicious_stew and golden_apple together. You are supposed to make golden_apple and I am supposed to make suspicious_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "suspicious_stew", - "golden_apple" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make suspicious_stew, but you don't have the recipe for it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make golden_apple, but you don't have the recipe for it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "bowl": 1, - "gold_ingot": 4, - "apple": 1 - }, - "1": { - "dandelion": 1, - "gold_ingot": 4 - } - } - }, - "multiagent_cooking_cooked_beef_cooked_chicken_hells_kitchen": { - "conversation": "We need to make cooked_beef and cooked_chicken together. You are supposed to make cooked_chicken and I am supposed to make cooked_beef, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_beef", - "cooked_chicken" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_beef, but you don't have the recipe for it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_chicken, but you don't have the recipe for it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 4, - "max_steps_per_recipe": 2, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 1 - }, - "1": { - "coal": 1 - } - } - }, - "multiagent_cooking_cooked_beef_cookie_hells_kitchen": { - "conversation": "We need to make cooked_beef and cookie together. You are supposed to make cookie and I am supposed to make cooked_beef, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_beef", - "cookie" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_beef, but you don't have the recipe for it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cookie, but you don't have the recipe for it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 1 - }, - "1": { - "cocoa_beans": 1 - } - } - }, - "multiagent_cooking_suspicious_stew_cooked_beef_hells_kitchen": { - "conversation": "We need to make suspicious_stew and cooked_beef together. You are supposed to make cooked_beef and I am supposed to make suspicious_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "suspicious_stew", - "cooked_beef" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make suspicious_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_beef, but you don't have the recipe for it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "bowl": 1, - "coal": 1 - }, - "1": { - "dandelion": 1 - } - } - }, - "multiagent_cooking_golden_apple_cooked_porkchop_hells_kitchen": { - "conversation": "We need to make golden_apple and cooked_porkchop together. You are supposed to make cooked_porkchop and I am supposed to make golden_apple, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "golden_apple", - "cooked_porkchop" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make golden_apple, but you don't have the recipe for it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_porkchop, but you don't have the recipe for it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 4, - "max_steps_per_recipe": 2, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "gold_ingot": 4, - "apple": 1 - }, - "1": { - "gold_ingot": 4, - "coal": 1 - } - } - }, - "multiagent_cooking_pumpkin_pie_golden_apple_hells_kitchen": { - "conversation": "We need to make pumpkin_pie and golden_apple together. You are supposed to make golden_apple and I am supposed to make pumpkin_pie, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "pumpkin_pie", - "golden_apple" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make pumpkin_pie, but you don't have the recipe for it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make golden_apple, but you don't have the recipe for it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 6, - "max_steps_per_recipe": 4, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "egg": 1, - "gold_ingot": 4 - }, - "1": { - "gold_ingot": 4, - "apple": 1 - } - } - }, - "multiagent_cooking_cookie_beetroot_soup_hells_kitchen": { - "conversation": "We need to make cookie and beetroot_soup together. You are supposed to make beetroot_soup and I am supposed to make cookie, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cookie", - "beetroot_soup" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cookie, but you don't have the recipe for it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make beetroot_soup, but you don't have the recipe for it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 6, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "cocoa_beans": 1 - }, - "1": { - "bowl": 1 - } - } - }, - "multiagent_cooking_cooked_beef_pumpkin_pie_hells_kitchen": { - "conversation": "We need to make cooked_beef and pumpkin_pie together. You are supposed to make pumpkin_pie and I am supposed to make cooked_beef, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_beef", - "pumpkin_pie" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_beef, but you don't have the recipe for it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make pumpkin_pie, but you don't have the recipe for it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 6, - "max_steps_per_recipe": 4, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 1 - }, - "1": { - "egg": 1 - } - } - }, - "multiagent_cooking_cooked_chicken_cooked_porkchop_hells_kitchen": { - "conversation": "We need to make cooked_chicken and cooked_porkchop together. You are supposed to make cooked_porkchop and I am supposed to make cooked_chicken, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_chicken", - "cooked_porkchop" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_chicken, but you don't have the recipe for it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_porkchop, but you don't have the recipe for it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 4, - "max_steps_per_recipe": 2, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 1 - }, - "1": { - "coal": 1 - } - } - }, - "multiagent_cooking_beetroot_soup_cookie_hells_kitchen": { - "conversation": "We need to make beetroot_soup and cookie together. You are supposed to make cookie and I am supposed to make beetroot_soup, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "beetroot_soup", - "cookie" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make beetroot_soup, but you don't have the recipe for it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cookie, but you don't have the recipe for it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 6, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "cocoa_beans": 1 - } - } - }, - "multiagent_cooking_beetroot_soup_rabbit_stew_hells_kitchen": { - "conversation": "We need to make beetroot_soup and rabbit_stew together. You are supposed to make rabbit_stew and I am supposed to make beetroot_soup, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "beetroot_soup", - "rabbit_stew" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make beetroot_soup, but you don't have the recipe for it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make rabbit_stew, but you don't have the recipe for it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 9, - "max_steps_per_recipe": 6, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "bowl": 1 - } - } - }, - "multiagent_cooking_cooked_chicken_pumpkin_pie_hells_kitchen": { - "conversation": "We need to make cooked_chicken and pumpkin_pie together. You are supposed to make pumpkin_pie and I am supposed to make cooked_chicken, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_chicken", - "pumpkin_pie" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_chicken, but you don't have the recipe for it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make pumpkin_pie, but you don't have the recipe for it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 6, - "max_steps_per_recipe": 4, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 1 - }, - "1": { - "egg": 1 - } - } - }, - "multiagent_cooking_cooked_porkchop_cooked_beef_hells_kitchen": { - "conversation": "We need to make cooked_porkchop and cooked_beef together. You are supposed to make cooked_beef and I am supposed to make cooked_porkchop, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_porkchop", - "cooked_beef" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_porkchop, but you don't have the recipe for it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_beef, but you don't have the recipe for it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 4, - "max_steps_per_recipe": 2, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 1 - }, - "1": { - "coal": 1 - } - } - }, - "multiagent_cooking_cooked_porkchop_cookie_hells_kitchen": { - "conversation": "We need to make cooked_porkchop and cookie together. You are supposed to make cookie and I am supposed to make cooked_porkchop, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_porkchop", - "cookie" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_porkchop, but you don't have the recipe for it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cookie, but you don't have the recipe for it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 1 - }, - "1": { - "cocoa_beans": 1 - } - } - }, - "multiagent_cooking_cooked_rabbit_cooked_porkchop_hells_kitchen": { - "conversation": "We need to make cooked_rabbit and cooked_porkchop together. You are supposed to make cooked_porkchop and I am supposed to make cooked_rabbit, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_rabbit", - "cooked_porkchop" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_rabbit, but you don't have the recipe for it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_porkchop, but you don't have the recipe for it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 4, - "max_steps_per_recipe": 2, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 1 - }, - "1": { - "coal": 1 - } - } - }, - "multiagent_cooking_beetroot_soup_cooked_rabbit_hells_kitchen": { - "conversation": "We need to make beetroot_soup and cooked_rabbit together. You are supposed to make cooked_rabbit and I am supposed to make beetroot_soup, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "beetroot_soup", - "cooked_rabbit" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make beetroot_soup, but you don't have the recipe for it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_rabbit, but you don't have the recipe for it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "coal": 1 - } - } - }, - "multiagent_cooking_golden_apple_cooked_beef_hells_kitchen": { - "conversation": "We need to make golden_apple and cooked_beef together. You are supposed to make cooked_beef and I am supposed to make golden_apple, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "golden_apple", - "cooked_beef" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make golden_apple, but you don't have the recipe for it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_beef, but you don't have the recipe for it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 4, - "max_steps_per_recipe": 2, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "gold_ingot": 4, - "apple": 1 - }, - "1": { - "gold_ingot": 4, - "coal": 1 - } - } - }, - "multiagent_cooking_rabbit_stew_cooked_chicken_hells_kitchen": { - "conversation": "We need to make rabbit_stew and cooked_chicken together. You are supposed to make cooked_chicken and I am supposed to make rabbit_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "rabbit_stew", - "cooked_chicken" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make rabbit_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_chicken, but you don't have the recipe for it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 8, - "max_steps_per_recipe": 6, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "coal": 1 - } - } - }, - "multiagent_cooking_cooked_porkchop_beetroot_soup_hells_kitchen": { - "conversation": "We need to make cooked_porkchop and beetroot_soup together. You are supposed to make beetroot_soup and I am supposed to make cooked_porkchop, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_porkchop", - "beetroot_soup" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_porkchop, but you don't have the recipe for it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make beetroot_soup, but you don't have the recipe for it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 1 - }, - "1": { - "bowl": 1 - } - } - }, - "multiagent_cooking_cooked_porkchop_golden_apple_hells_kitchen": { - "conversation": "We need to make cooked_porkchop and golden_apple together. You are supposed to make golden_apple and I am supposed to make cooked_porkchop, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_porkchop", - "golden_apple" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_porkchop, but you don't have the recipe for it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make golden_apple, but you don't have the recipe for it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 4, - "max_steps_per_recipe": 2, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 1, - "gold_ingot": 4 - }, - "1": { - "gold_ingot": 4, - "apple": 1 - } - } - }, - "multiagent_cooking_rabbit_stew_cooked_rabbit_hells_kitchen": { - "conversation": "We need to make rabbit_stew and cooked_rabbit together. You are supposed to make cooked_rabbit and I am supposed to make rabbit_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "rabbit_stew", - "cooked_rabbit" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make rabbit_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_rabbit, but you don't have the recipe for it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 8, - "max_steps_per_recipe": 6, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "coal": 1 - } - } - }, - "multiagent_cooking_cooked_chicken_cooked_beef_hells_kitchen": { - "conversation": "We need to make cooked_chicken and cooked_beef together. You are supposed to make cooked_beef and I am supposed to make cooked_chicken, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_chicken", - "cooked_beef" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_chicken, but you don't have the recipe for it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_beef, but you don't have the recipe for it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 4, - "max_steps_per_recipe": 2, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 1 - }, - "1": { - "coal": 1 - } - } - }, - "multiagent_cooking_golden_apple_pumpkin_pie_hells_kitchen": { - "conversation": "We need to make golden_apple and pumpkin_pie together. You are supposed to make pumpkin_pie and I am supposed to make golden_apple, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "golden_apple", - "pumpkin_pie" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make golden_apple, but you don't have the recipe for it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make pumpkin_pie, but you don't have the recipe for it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 6, - "max_steps_per_recipe": 4, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "gold_ingot": 4, - "apple": 1 - }, - "1": { - "gold_ingot": 4, - "egg": 1 - } - } - }, - "multiagent_cooking_pumpkin_pie_cooked_porkchop_hells_kitchen": { - "conversation": "We need to make pumpkin_pie and cooked_porkchop together. You are supposed to make cooked_porkchop and I am supposed to make pumpkin_pie, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "pumpkin_pie", - "cooked_porkchop" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make pumpkin_pie, but you don't have the recipe for it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_porkchop, but you don't have the recipe for it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 6, - "max_steps_per_recipe": 4, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "egg": 1 - }, - "1": { - "coal": 1 - } - } - }, - "multiagent_cooking_cooked_porkchop_rabbit_stew_hells_kitchen": { - "conversation": "We need to make cooked_porkchop and rabbit_stew together. You are supposed to make rabbit_stew and I am supposed to make cooked_porkchop, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_porkchop", - "rabbit_stew" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_porkchop, but you don't have the recipe for it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make rabbit_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 8, - "max_steps_per_recipe": 6, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 1 - }, - "1": { - "bowl": 1 - } - } - }, - "multiagent_cooking_pumpkin_pie_rabbit_stew_hells_kitchen": { - "conversation": "We need to make pumpkin_pie and rabbit_stew together. You are supposed to make rabbit_stew and I am supposed to make pumpkin_pie, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "pumpkin_pie", - "rabbit_stew" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make pumpkin_pie, but you don't have the recipe for it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make rabbit_stew, but you don't have the recipe for it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 10, - "max_steps_per_recipe": 6, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "egg": 1 - }, - "1": { - "bowl": 1 - } - } - }, - "multiagent_cooking_cookie_golden_apple_hells_kitchen": { - "conversation": "We need to make cookie and golden_apple together. You are supposed to make golden_apple and I am supposed to make cookie, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cookie", - "golden_apple" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cookie, but you don't have the recipe for it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make golden_apple, but you don't have the recipe for it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "cocoa_beans": 1, - "gold_ingot": 4 - }, - "1": { - "gold_ingot": 4, - "apple": 1 - } - } - }, - "multiagent_cooking_cooked_beef_cooked_porkchop_hells_kitchen": { - "conversation": "We need to make cooked_beef and cooked_porkchop together. You are supposed to make cooked_porkchop and I am supposed to make cooked_beef, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_beef", - "cooked_porkchop" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_beef, but you don't have the recipe for it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_porkchop, but you don't have the recipe for it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 4, - "max_steps_per_recipe": 2, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 1 - }, - "1": { - "coal": 1 - } - } - }, - "multiagent_cooking_cookie_cooked_rabbit_hells_kitchen": { - "conversation": "We need to make cookie and cooked_rabbit together. You are supposed to make cooked_rabbit and I am supposed to make cookie, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cookie", - "cooked_rabbit" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cookie, but you don't have the recipe for it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_rabbit, but you don't have the recipe for it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "cocoa_beans": 1 - }, - "1": { - "coal": 1 - } - } - }, - "multiagent_cooking_golden_apple_cooked_rabbit_hells_kitchen": { - "conversation": "We need to make golden_apple and cooked_rabbit together. You are supposed to make cooked_rabbit and I am supposed to make golden_apple, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "golden_apple", - "cooked_rabbit" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make golden_apple, but you don't have the recipe for it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_rabbit, but you don't have the recipe for it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 4, - "max_steps_per_recipe": 2, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "gold_ingot": 4, - "apple": 1 - }, - "1": { - "gold_ingot": 4, - "coal": 1 - } - } - }, - "multiagent_cooking_cooked_porkchop_pumpkin_pie_hells_kitchen": { - "conversation": "We need to make cooked_porkchop and pumpkin_pie together. You are supposed to make pumpkin_pie and I am supposed to make cooked_porkchop, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_porkchop", - "pumpkin_pie" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_porkchop, but you don't have the recipe for it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make pumpkin_pie, but you don't have the recipe for it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 6, - "max_steps_per_recipe": 4, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 1 - }, - "1": { - "egg": 1 - } - } - }, - "multiagent_cooking_beetroot_soup_cooked_beef_hells_kitchen": { - "conversation": "We need to make beetroot_soup and cooked_beef together. You are supposed to make cooked_beef and I am supposed to make beetroot_soup, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "beetroot_soup", - "cooked_beef" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make beetroot_soup, but you don't have the recipe for it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_beef, but you don't have the recipe for it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "coal": 1 - } - } - }, - "multiagent_cooking_rabbit_stew_beetroot_soup_hells_kitchen": { - "conversation": "We need to make rabbit_stew and beetroot_soup together. You are supposed to make beetroot_soup and I am supposed to make rabbit_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "rabbit_stew", - "beetroot_soup" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make rabbit_stew, but you don't have the recipe for it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make beetroot_soup, but you don't have the recipe for it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 9, - "max_steps_per_recipe": 6, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "bowl": 1 - } - } - }, - "multiagent_cooking_pumpkin_pie_suspicious_stew_hells_kitchen": { - "conversation": "We need to make pumpkin_pie and suspicious_stew together. You are supposed to make suspicious_stew and I am supposed to make pumpkin_pie, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "pumpkin_pie", - "suspicious_stew" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make pumpkin_pie, but you don't have the recipe for it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make suspicious_stew, but you don't have the recipe for it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 7, - "max_steps_per_recipe": 4, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "egg": 1, - "dandelion": 1 - }, - "1": { - "bowl": 1 - } - } - }, - "multiagent_cooking_cooked_rabbit_suspicious_stew_hells_kitchen": { - "conversation": "We need to make cooked_rabbit and suspicious_stew together. You are supposed to make suspicious_stew and I am supposed to make cooked_rabbit, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_rabbit", - "suspicious_stew" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_rabbit, but you don't have the recipe for it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make suspicious_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 1, - "dandelion": 1 - }, - "1": { - "bowl": 1 - } - } - }, - "multiagent_cooking_cooked_beef_golden_apple_hells_kitchen": { - "conversation": "We need to make cooked_beef and golden_apple together. You are supposed to make golden_apple and I am supposed to make cooked_beef, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_beef", - "golden_apple" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_beef, but you don't have the recipe for it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make golden_apple, but you don't have the recipe for it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 4, - "max_steps_per_recipe": 2, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 1, - "gold_ingot": 4 - }, - "1": { - "gold_ingot": 4, - "apple": 1 - } - } - }, - "multiagent_cooking_cooked_rabbit_golden_apple_hells_kitchen": { - "conversation": "We need to make cooked_rabbit and golden_apple together. You are supposed to make golden_apple and I am supposed to make cooked_rabbit, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_rabbit", - "golden_apple" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_rabbit, but you don't have the recipe for it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make golden_apple, but you don't have the recipe for it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 4, - "max_steps_per_recipe": 2, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 1, - "gold_ingot": 4 - }, - "1": { - "gold_ingot": 4, - "apple": 1 - } - } - }, - "multiagent_cooking_beetroot_soup_golden_apple_hells_kitchen": { - "conversation": "We need to make beetroot_soup and golden_apple together. You are supposed to make golden_apple and I am supposed to make beetroot_soup, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "beetroot_soup", - "golden_apple" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make beetroot_soup, but you don't have the recipe for it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make golden_apple, but you don't have the recipe for it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "bowl": 1, - "gold_ingot": 4 - }, - "1": { - "gold_ingot": 4, - "apple": 1 - } - } - }, - "multiagent_cooking_pumpkin_pie_cookie_hells_kitchen": { - "conversation": "We need to make pumpkin_pie and cookie together. You are supposed to make cookie and I am supposed to make pumpkin_pie, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "pumpkin_pie", - "cookie" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make pumpkin_pie, but you don't have the recipe for it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cookie, but you don't have the recipe for it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 7, - "max_steps_per_recipe": 4, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "egg": 1 - }, - "1": { - "cocoa_beans": 1 - } - } - }, - "multiagent_cooking_golden_apple_beetroot_soup_hells_kitchen": { - "conversation": "We need to make golden_apple and beetroot_soup together. You are supposed to make beetroot_soup and I am supposed to make golden_apple, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "golden_apple", - "beetroot_soup" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make golden_apple, but you don't have the recipe for it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make beetroot_soup, but you don't have the recipe for it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "gold_ingot": 4, - "apple": 1 - }, - "1": { - "gold_ingot": 4, - "bowl": 1 - } - } - }, - "multiagent_cooking_suspicious_stew_beetroot_soup_hells_kitchen": { - "conversation": "We need to make suspicious_stew and beetroot_soup together. You are supposed to make beetroot_soup and I am supposed to make suspicious_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "suspicious_stew", - "beetroot_soup" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make suspicious_stew, but you don't have the recipe for it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make beetroot_soup, but you don't have the recipe for it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 6, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "bowl": 1, - "dandelion": 1 - }, - "1": { - "bowl": 1 - } - } - }, - "multiagent_cooking_pumpkin_pie_cooked_beef_hells_kitchen": { - "conversation": "We need to make pumpkin_pie and cooked_beef together. You are supposed to make cooked_beef and I am supposed to make pumpkin_pie, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "pumpkin_pie", - "cooked_beef" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make pumpkin_pie, but you don't have the recipe for it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_beef, but you don't have the recipe for it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 6, - "max_steps_per_recipe": 4, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "egg": 1 - }, - "1": { - "coal": 1 - } - } - }, - "multiagent_cooking_cooked_rabbit_cooked_chicken_hells_kitchen": { - "conversation": "We need to make cooked_rabbit and cooked_chicken together. You are supposed to make cooked_chicken and I am supposed to make cooked_rabbit, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_rabbit", - "cooked_chicken" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_rabbit, but you don't have the recipe for it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_chicken, but you don't have the recipe for it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 4, - "max_steps_per_recipe": 2, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 1 - }, - "1": { - "coal": 1 - } - } - }, - "multiagent_cooking_golden_apple_rabbit_stew_hells_kitchen": { - "conversation": "We need to make golden_apple and rabbit_stew together. You are supposed to make rabbit_stew and I am supposed to make golden_apple, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "golden_apple", - "rabbit_stew" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make golden_apple, but you don't have the recipe for it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make rabbit_stew, but you don't have the recipe for it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 8, - "max_steps_per_recipe": 6, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "gold_ingot": 4, - "apple": 1 - }, - "1": { - "gold_ingot": 4, - "bowl": 1 - } - } - }, - "multiagent_cooking_cooked_porkchop_cooked_rabbit_hells_kitchen": { - "conversation": "We need to make cooked_porkchop and cooked_rabbit together. You are supposed to make cooked_rabbit and I am supposed to make cooked_porkchop, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_porkchop", - "cooked_rabbit" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_porkchop, but you don't have the recipe for it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_rabbit, but you don't have the recipe for it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 4, - "max_steps_per_recipe": 2, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 1 - }, - "1": { - "coal": 1 - } - } - }, - "multiagent_cooking_cookie_rabbit_stew_hells_kitchen": { - "conversation": "We need to make cookie and rabbit_stew together. You are supposed to make rabbit_stew and I am supposed to make cookie, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cookie", - "rabbit_stew" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cookie, but you don't have the recipe for it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make rabbit_stew, but you don't have the recipe for it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 9, - "max_steps_per_recipe": 6, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "cocoa_beans": 1 - }, - "1": { - "bowl": 1 - } - } - }, - "multiagent_cooking_cookie_cooked_chicken_hells_kitchen": { - "conversation": "We need to make cookie and cooked_chicken together. You are supposed to make cooked_chicken and I am supposed to make cookie, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cookie", - "cooked_chicken" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cookie, but you don't have the recipe for it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_chicken, but you don't have the recipe for it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "cocoa_beans": 1 - }, - "1": { - "coal": 1 - } - } - }, - "multiagent_cooking_cooked_chicken_cookie_hells_kitchen": { - "conversation": "We need to make cooked_chicken and cookie together. You are supposed to make cookie and I am supposed to make cooked_chicken, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_chicken", - "cookie" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_chicken, but you don't have the recipe for it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cookie, but you don't have the recipe for it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 1 - }, - "1": { - "cocoa_beans": 1 - } - } - }, - "multiagent_cooking_rabbit_stew_golden_apple_hells_kitchen": { - "conversation": "We need to make rabbit_stew and golden_apple together. You are supposed to make golden_apple and I am supposed to make rabbit_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "rabbit_stew", - "golden_apple" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make rabbit_stew, but you don't have the recipe for it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make golden_apple, but you don't have the recipe for it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 8, - "max_steps_per_recipe": 6, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "bowl": 1, - "gold_ingot": 4 - }, - "1": { - "gold_ingot": 4, - "apple": 1 - } - } - }, - "multiagent_cooking_cooked_chicken_rabbit_stew_hells_kitchen": { - "conversation": "We need to make cooked_chicken and rabbit_stew together. You are supposed to make rabbit_stew and I am supposed to make cooked_chicken, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_chicken", - "rabbit_stew" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_chicken, but you don't have the recipe for it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make rabbit_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 8, - "max_steps_per_recipe": 6, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 1 - }, - "1": { - "bowl": 1 - } - } - }, - "multiagent_cooking_cooked_rabbit_cookie_hells_kitchen": { - "conversation": "We need to make cooked_rabbit and cookie together. You are supposed to make cookie and I am supposed to make cooked_rabbit, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_rabbit", - "cookie" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_rabbit, but you don't have the recipe for it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cookie, but you don't have the recipe for it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 1 - }, - "1": { - "cocoa_beans": 1 - } - } - }, - "multiagent_cooking_cookie_pumpkin_pie_hells_kitchen": { - "conversation": "We need to make cookie and pumpkin_pie together. You are supposed to make pumpkin_pie and I am supposed to make cookie, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cookie", - "pumpkin_pie" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cookie, but you don't have the recipe for it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make pumpkin_pie, but you don't have the recipe for it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 7, - "max_steps_per_recipe": 4, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "cocoa_beans": 1 - }, - "1": { - "egg": 1 - } - } - }, - "multiagent_cooking_beetroot_soup_pumpkin_pie_hells_kitchen": { - "conversation": "We need to make beetroot_soup and pumpkin_pie together. You are supposed to make pumpkin_pie and I am supposed to make beetroot_soup, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "beetroot_soup", - "pumpkin_pie" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make beetroot_soup, but you don't have the recipe for it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make pumpkin_pie, but you don't have the recipe for it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 7, - "max_steps_per_recipe": 4, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "egg": 1 - } - } - }, - "multiagent_cooking_cooked_beef_cooked_rabbit_hells_kitchen": { - "conversation": "We need to make cooked_beef and cooked_rabbit together. You are supposed to make cooked_rabbit and I am supposed to make cooked_beef, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_beef", - "cooked_rabbit" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_beef, but you don't have the recipe for it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_rabbit, but you don't have the recipe for it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 4, - "max_steps_per_recipe": 2, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 1 - }, - "1": { - "coal": 1 - } - } - }, - "multiagent_cooking_pumpkin_pie_cooked_rabbit_hells_kitchen": { - "conversation": "We need to make pumpkin_pie and cooked_rabbit together. You are supposed to make cooked_rabbit and I am supposed to make pumpkin_pie, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "pumpkin_pie", - "cooked_rabbit" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make pumpkin_pie, but you don't have the recipe for it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_rabbit, but you don't have the recipe for it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 6, - "max_steps_per_recipe": 4, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "egg": 1 - }, - "1": { - "coal": 1 - } - } - }, - "multiagent_cooking_cooked_beef_beetroot_soup_hells_kitchen": { - "conversation": "We need to make cooked_beef and beetroot_soup together. You are supposed to make beetroot_soup and I am supposed to make cooked_beef, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_beef", - "beetroot_soup" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_beef, but you don't have the recipe for it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make beetroot_soup, but you don't have the recipe for it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 1 - }, - "1": { - "bowl": 1 - } - } - }, - "multiagent_cooking_cooked_rabbit_rabbit_stew_hells_kitchen": { - "conversation": "We need to make cooked_rabbit and rabbit_stew together. You are supposed to make rabbit_stew and I am supposed to make cooked_rabbit, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_rabbit", - "rabbit_stew" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_rabbit, but you don't have the recipe for it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make rabbit_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 8, - "max_steps_per_recipe": 6, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 1 - }, - "1": { - "bowl": 1 - } - } - }, - "multiagent_cooking_rabbit_stew_cooked_beef_hells_kitchen": { - "conversation": "We need to make rabbit_stew and cooked_beef together. You are supposed to make cooked_beef and I am supposed to make rabbit_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "rabbit_stew", - "cooked_beef" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make rabbit_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_beef, but you don't have the recipe for it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 8, - "max_steps_per_recipe": 6, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "coal": 1 - } - } - }, - "multiagent_cooking_golden_apple_cooked_chicken_hells_kitchen": { - "conversation": "We need to make golden_apple and cooked_chicken together. You are supposed to make cooked_chicken and I am supposed to make golden_apple, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "golden_apple", - "cooked_chicken" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make golden_apple, but you don't have the recipe for it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_chicken, but you don't have the recipe for it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 4, - "max_steps_per_recipe": 2, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "gold_ingot": 4, - "apple": 1 - }, - "1": { - "gold_ingot": 4, - "coal": 1 - } - } - }, - "multiagent_cooking_beetroot_soup_cooked_chicken_hells_kitchen": { - "conversation": "We need to make beetroot_soup and cooked_chicken together. You are supposed to make cooked_chicken and I am supposed to make beetroot_soup, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "beetroot_soup", - "cooked_chicken" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make beetroot_soup, but you don't have the recipe for it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_chicken, but you don't have the recipe for it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "coal": 1 - } - } - }, - "multiagent_cooking_cooked_chicken_suspicious_stew_hells_kitchen": { - "conversation": "We need to make cooked_chicken and suspicious_stew together. You are supposed to make suspicious_stew and I am supposed to make cooked_chicken, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_chicken", - "suspicious_stew" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_chicken, but you don't have the recipe for it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make suspicious_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 1, - "dandelion": 1 - }, - "1": { - "bowl": 1 - } - } - }, - "multiagent_cooking_suspicious_stew_pumpkin_pie_hells_kitchen": { - "conversation": "We need to make suspicious_stew and pumpkin_pie together. You are supposed to make pumpkin_pie and I am supposed to make suspicious_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "suspicious_stew", - "pumpkin_pie" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make suspicious_stew, but you don't have the recipe for it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make pumpkin_pie, but you don't have the recipe for it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 7, - "max_steps_per_recipe": 4, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "bowl": 1, - "egg": 1 - }, - "1": { - "dandelion": 1 - } - } - }, - "multiagent_cooking_cooked_rabbit_cooked_beef_hells_kitchen": { - "conversation": "We need to make cooked_rabbit and cooked_beef together. You are supposed to make cooked_beef and I am supposed to make cooked_rabbit, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_rabbit", - "cooked_beef" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_rabbit, but you don't have the recipe for it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_beef, but you don't have the recipe for it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 4, - "max_steps_per_recipe": 2, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 1 - }, - "1": { - "coal": 1 - } - } - }, - "multiagent_cooking_cooked_porkchop_cooked_chicken_hells_kitchen": { - "conversation": "We need to make cooked_porkchop and cooked_chicken together. You are supposed to make cooked_chicken and I am supposed to make cooked_porkchop, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_porkchop", - "cooked_chicken" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_porkchop, but you don't have the recipe for it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_chicken, but you don't have the recipe for it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 4, - "max_steps_per_recipe": 2, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 1 - }, - "1": { - "coal": 1 - } - } - }, - "multiagent_cooking_cooked_beef_rabbit_stew_hells_kitchen": { - "conversation": "We need to make cooked_beef and rabbit_stew together. You are supposed to make rabbit_stew and I am supposed to make cooked_beef, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_beef", - "rabbit_stew" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_beef, but you don't have the recipe for it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make rabbit_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 8, - "max_steps_per_recipe": 6, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 1 - }, - "1": { - "bowl": 1 - } - } - }, - "multiagent_cooking_golden_apple_cookie_hells_kitchen": { - "conversation": "We need to make golden_apple and cookie together. You are supposed to make cookie and I am supposed to make golden_apple, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "golden_apple", - "cookie" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make golden_apple, but you don't have the recipe for it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cookie, but you don't have the recipe for it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "gold_ingot": 4, - "apple": 1 - }, - "1": { - "gold_ingot": 4, - "cocoa_beans": 1 - } - } - }, - "multiagent_cooking_cooked_rabbit_pumpkin_pie_hells_kitchen": { - "conversation": "We need to make cooked_rabbit and pumpkin_pie together. You are supposed to make pumpkin_pie and I am supposed to make cooked_rabbit, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_rabbit", - "pumpkin_pie" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_rabbit, but you don't have the recipe for it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make pumpkin_pie, but you don't have the recipe for it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 6, - "max_steps_per_recipe": 4, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 1 - }, - "1": { - "egg": 1 - } - } - }, - "multiagent_cooking_rabbit_stew_suspicious_stew_hells_kitchen": { - "conversation": "We need to make rabbit_stew and suspicious_stew together. You are supposed to make suspicious_stew and I am supposed to make rabbit_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "rabbit_stew", - "suspicious_stew" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make rabbit_stew, but you don't have the recipe for it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make suspicious_stew, but you don't have the recipe for it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 9, - "max_steps_per_recipe": 6, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "bowl": 1, - "dandelion": 1 - }, - "1": { - "bowl": 1 - } - } - }, - "multiagent_cooking_beetroot_soup_cooked_porkchop_hells_kitchen": { - "conversation": "We need to make beetroot_soup and cooked_porkchop together. You are supposed to make cooked_porkchop and I am supposed to make beetroot_soup, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "beetroot_soup", - "cooked_porkchop" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make beetroot_soup, but you don't have the recipe for it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_porkchop, but you don't have the recipe for it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "coal": 1 - } - } - }, - "multiagent_cooking_suspicious_stew_cooked_rabbit_hells_kitchen": { - "conversation": "We need to make suspicious_stew and cooked_rabbit together. You are supposed to make cooked_rabbit and I am supposed to make suspicious_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "suspicious_stew", - "cooked_rabbit" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make suspicious_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_rabbit, but you don't have the recipe for it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "bowl": 1, - "coal": 1 - }, - "1": { - "dandelion": 1 - } - } - }, - "multiagent_cooking_cookie_suspicious_stew_hells_kitchen": { - "conversation": "We need to make cookie and suspicious_stew together. You are supposed to make suspicious_stew and I am supposed to make cookie, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cookie", - "suspicious_stew" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cookie, but you don't have the recipe for it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make suspicious_stew, but you don't have the recipe for it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 6, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "cocoa_beans": 1, - "dandelion": 1 - }, - "1": { - "bowl": 1 - } - } - }, - "multiagent_cooking_cooked_porkchop_suspicious_stew_hells_kitchen": { - "conversation": "We need to make cooked_porkchop and suspicious_stew together. You are supposed to make suspicious_stew and I am supposed to make cooked_porkchop, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_porkchop", - "suspicious_stew" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_porkchop, but you don't have the recipe for it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make suspicious_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 1, - "dandelion": 1 - }, - "1": { - "bowl": 1 - } - } - }, - "multiagent_cooking_cooked_rabbit_beetroot_soup_hells_kitchen": { - "conversation": "We need to make cooked_rabbit and beetroot_soup together. You are supposed to make beetroot_soup and I am supposed to make cooked_rabbit, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_rabbit", - "beetroot_soup" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_rabbit, but you don't have the recipe for it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make beetroot_soup, but you don't have the recipe for it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 1 - }, - "1": { - "bowl": 1 - } - } - }, - "multiagent_cooking_cookie_cooked_porkchop_hells_kitchen": { - "conversation": "We need to make cookie and cooked_porkchop together. You are supposed to make cooked_porkchop and I am supposed to make cookie, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cookie", - "cooked_porkchop" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cookie, but you don't have the recipe for it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_porkchop, but you don't have the recipe for it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "cocoa_beans": 1 - }, - "1": { - "coal": 1 - } - } - }, - "multiagent_cooking_cooked_chicken_cooked_rabbit_hells_kitchen": { - "conversation": "We need to make cooked_chicken and cooked_rabbit together. You are supposed to make cooked_rabbit and I am supposed to make cooked_chicken, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_chicken", - "cooked_rabbit" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_chicken, but you don't have the recipe for it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_rabbit, but you don't have the recipe for it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 4, - "max_steps_per_recipe": 2, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 1 - }, - "1": { - "coal": 1 - } - } - }, - "multiagent_cooking_cooked_beef_suspicious_stew_hells_kitchen": { - "conversation": "We need to make cooked_beef and suspicious_stew together. You are supposed to make suspicious_stew and I am supposed to make cooked_beef, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_beef", - "suspicious_stew" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_beef, but you don't have the recipe for it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make suspicious_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 1, - "dandelion": 1 - }, - "1": { - "bowl": 1 - } - } - } + "multiagent_cooking_mushroom_stew_golden_carrot_hells_kitchen": { + "conversation": "We need to make mushroom_stew and golden_carrot together. You are supposed to make golden_carrot and I am supposed to make mushroom_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "mushroom_stew", + "golden_carrot" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make mushroom_stew, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make golden_carrot, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: From your inventory or other agents get a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 6, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_mushroom_stew_suspicious_stew_hells_kitchen": { + "conversation": "We need to make mushroom_stew and suspicious_stew together. You are supposed to make suspicious_stew and I am supposed to make mushroom_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "mushroom_stew", + "suspicious_stew" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make mushroom_stew, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: From your inventory or other agents get a bowl and 1 dandelion\nStep 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make suspicious_stew, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: From your inventory or other agents get a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 6, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_mushroom_stew_cooked_rabbit_hells_kitchen": { + "conversation": "We need to make mushroom_stew and cooked_rabbit together. You are supposed to make cooked_rabbit and I am supposed to make mushroom_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "mushroom_stew", + "cooked_rabbit" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make mushroom_stew, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_rabbit, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: From your inventory or other agents get a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_mushroom_stew_cooked_mutton_hells_kitchen": { + "conversation": "We need to make mushroom_stew and cooked_mutton together. You are supposed to make cooked_mutton and I am supposed to make mushroom_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "mushroom_stew", + "cooked_mutton" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make mushroom_stew, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 4: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_mutton, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: From your inventory or other agents get a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_mushroom_stew_cooked_chicken_hells_kitchen": { + "conversation": "We need to make mushroom_stew and cooked_chicken together. You are supposed to make cooked_chicken and I am supposed to make mushroom_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "mushroom_stew", + "cooked_chicken" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make mushroom_stew, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 4: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_chicken, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: From your inventory or other agents get a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_mushroom_stew_cooked_porkchop_hells_kitchen": { + "conversation": "We need to make mushroom_stew and cooked_porkchop together. You are supposed to make cooked_porkchop and I am supposed to make mushroom_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "mushroom_stew", + "cooked_porkchop" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make mushroom_stew, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 4: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_porkchop, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: From your inventory or other agents get a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_mushroom_stew_beetroot_soup_hells_kitchen": { + "conversation": "We need to make mushroom_stew and beetroot_soup together. You are supposed to make beetroot_soup and I am supposed to make mushroom_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "mushroom_stew", + "beetroot_soup" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make mushroom_stew, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: From your inventory or other agents get a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make beetroot_soup, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: From your inventory or other agents get a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 6, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_mushroom_stew_pumpkin_pie_hells_kitchen": { + "conversation": "We need to make mushroom_stew and pumpkin_pie together. You are supposed to make pumpkin_pie and I am supposed to make mushroom_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "mushroom_stew", + "pumpkin_pie" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make mushroom_stew, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Get 1 egg from your inventory or other bots\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make pumpkin_pie, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: From your inventory or other agents get a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_mushroom_stew_cookie_hells_kitchen": { + "conversation": "We need to make mushroom_stew and cookie together. You are supposed to make cookie and I am supposed to make mushroom_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "mushroom_stew", + "cookie" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make mushroom_stew, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Get 1 cocoa bean from your inventory or other agents.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cookie, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: From your inventory or other agents get a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 6, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_golden_carrot_suspicious_stew_hells_kitchen": { + "conversation": "We need to make golden_carrot and suspicious_stew together. You are supposed to make suspicious_stew and I am supposed to make golden_carrot, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "golden_carrot", + "suspicious_stew" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make golden_carrot, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: From your inventory or other agents get a bowl and 1 dandelion\nStep 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make suspicious_stew, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 6, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_golden_carrot_cooked_rabbit_hells_kitchen": { + "conversation": "We need to make golden_carrot and cooked_rabbit together. You are supposed to make cooked_rabbit and I am supposed to make golden_carrot, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "golden_carrot", + "cooked_rabbit" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make golden_carrot, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_rabbit, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_golden_carrot_cooked_mutton_hells_kitchen": { + "conversation": "We need to make golden_carrot and cooked_mutton together. You are supposed to make cooked_mutton and I am supposed to make golden_carrot, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "golden_carrot", + "cooked_mutton" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make golden_carrot, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 4: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_mutton, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_golden_carrot_cooked_chicken_hells_kitchen": { + "conversation": "We need to make golden_carrot and cooked_chicken together. You are supposed to make cooked_chicken and I am supposed to make golden_carrot, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "golden_carrot", + "cooked_chicken" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make golden_carrot, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 4: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_chicken, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_golden_carrot_cooked_porkchop_hells_kitchen": { + "conversation": "We need to make golden_carrot and cooked_porkchop together. You are supposed to make cooked_porkchop and I am supposed to make golden_carrot, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "golden_carrot", + "cooked_porkchop" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make golden_carrot, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 4: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_porkchop, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_golden_carrot_beetroot_soup_hells_kitchen": { + "conversation": "We need to make golden_carrot and beetroot_soup together. You are supposed to make beetroot_soup and I am supposed to make golden_carrot, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "golden_carrot", + "beetroot_soup" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make golden_carrot, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: From your inventory or other agents get a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make beetroot_soup, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 6, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_golden_carrot_pumpkin_pie_hells_kitchen": { + "conversation": "We need to make golden_carrot and pumpkin_pie together. You are supposed to make pumpkin_pie and I am supposed to make golden_carrot, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "golden_carrot", + "pumpkin_pie" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make golden_carrot, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Get 1 egg from your inventory or other bots\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make pumpkin_pie, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_golden_carrot_cookie_hells_kitchen": { + "conversation": "We need to make golden_carrot and cookie together. You are supposed to make cookie and I am supposed to make golden_carrot, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "golden_carrot", + "cookie" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make golden_carrot, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Get 1 cocoa bean from your inventory or other agents.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cookie, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 6, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_suspicious_stew_cooked_rabbit_hells_kitchen": { + "conversation": "We need to make suspicious_stew and cooked_rabbit together. You are supposed to make cooked_rabbit and I am supposed to make suspicious_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "suspicious_stew", + "cooked_rabbit" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make suspicious_stew, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_rabbit, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: From your inventory or other agents get a bowl and 1 dandelion\nStep 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_suspicious_stew_cooked_mutton_hells_kitchen": { + "conversation": "We need to make suspicious_stew and cooked_mutton together. You are supposed to make cooked_mutton and I am supposed to make suspicious_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "suspicious_stew", + "cooked_mutton" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make suspicious_stew, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 4: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_mutton, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: From your inventory or other agents get a bowl and 1 dandelion\nStep 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_suspicious_stew_cooked_chicken_hells_kitchen": { + "conversation": "We need to make suspicious_stew and cooked_chicken together. You are supposed to make cooked_chicken and I am supposed to make suspicious_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "suspicious_stew", + "cooked_chicken" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make suspicious_stew, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 4: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_chicken, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: From your inventory or other agents get a bowl and 1 dandelion\nStep 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_suspicious_stew_cooked_porkchop_hells_kitchen": { + "conversation": "We need to make suspicious_stew and cooked_porkchop together. You are supposed to make cooked_porkchop and I am supposed to make suspicious_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "suspicious_stew", + "cooked_porkchop" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make suspicious_stew, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 4: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_porkchop, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: From your inventory or other agents get a bowl and 1 dandelion\nStep 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_suspicious_stew_beetroot_soup_hells_kitchen": { + "conversation": "We need to make suspicious_stew and beetroot_soup together. You are supposed to make beetroot_soup and I am supposed to make suspicious_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "suspicious_stew", + "beetroot_soup" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make suspicious_stew, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: From your inventory or other agents get a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make beetroot_soup, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: From your inventory or other agents get a bowl and 1 dandelion\nStep 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 6, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_suspicious_stew_pumpkin_pie_hells_kitchen": { + "conversation": "We need to make suspicious_stew and pumpkin_pie together. You are supposed to make pumpkin_pie and I am supposed to make suspicious_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "suspicious_stew", + "pumpkin_pie" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make suspicious_stew, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Get 1 egg from your inventory or other bots\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make pumpkin_pie, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: From your inventory or other agents get a bowl and 1 dandelion\nStep 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_suspicious_stew_cookie_hells_kitchen": { + "conversation": "We need to make suspicious_stew and cookie together. You are supposed to make cookie and I am supposed to make suspicious_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "suspicious_stew", + "cookie" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make suspicious_stew, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Get 1 cocoa bean from your inventory or other agents.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cookie, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: From your inventory or other agents get a bowl and 1 dandelion\nStep 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 6, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_cooked_rabbit_cooked_mutton_hells_kitchen": { + "conversation": "We need to make cooked_rabbit and cooked_mutton together. You are supposed to make cooked_mutton and I am supposed to make cooked_rabbit, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_rabbit", + "cooked_mutton" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_rabbit, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 4: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_mutton, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 8, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_cooked_rabbit_cooked_chicken_hells_kitchen": { + "conversation": "We need to make cooked_rabbit and cooked_chicken together. You are supposed to make cooked_chicken and I am supposed to make cooked_rabbit, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_rabbit", + "cooked_chicken" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_rabbit, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 4: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_chicken, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 8, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_cooked_rabbit_cooked_porkchop_hells_kitchen": { + "conversation": "We need to make cooked_rabbit and cooked_porkchop together. You are supposed to make cooked_porkchop and I am supposed to make cooked_rabbit, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_rabbit", + "cooked_porkchop" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_rabbit, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 4: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_porkchop, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 8, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_cooked_rabbit_beetroot_soup_hells_kitchen": { + "conversation": "We need to make cooked_rabbit and beetroot_soup together. You are supposed to make beetroot_soup and I am supposed to make cooked_rabbit, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_rabbit", + "beetroot_soup" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_rabbit, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: From your inventory or other agents get a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make beetroot_soup, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_cooked_rabbit_pumpkin_pie_hells_kitchen": { + "conversation": "We need to make cooked_rabbit and pumpkin_pie together. You are supposed to make pumpkin_pie and I am supposed to make cooked_rabbit, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_rabbit", + "pumpkin_pie" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_rabbit, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Get 1 egg from your inventory or other bots\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make pumpkin_pie, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 8, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_cooked_rabbit_cookie_hells_kitchen": { + "conversation": "We need to make cooked_rabbit and cookie together. You are supposed to make cookie and I am supposed to make cooked_rabbit, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_rabbit", + "cookie" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_rabbit, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Get 1 cocoa bean from your inventory or other agents.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cookie, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_cooked_mutton_cooked_chicken_hells_kitchen": { + "conversation": "We need to make cooked_mutton and cooked_chicken together. You are supposed to make cooked_chicken and I am supposed to make cooked_mutton, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_mutton", + "cooked_chicken" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_mutton, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 4: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_chicken, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 4: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 8, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_cooked_mutton_cooked_porkchop_hells_kitchen": { + "conversation": "We need to make cooked_mutton and cooked_porkchop together. You are supposed to make cooked_porkchop and I am supposed to make cooked_mutton, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_mutton", + "cooked_porkchop" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_mutton, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 4: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_porkchop, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 4: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 8, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_cooked_mutton_beetroot_soup_hells_kitchen": { + "conversation": "We need to make cooked_mutton and beetroot_soup together. You are supposed to make beetroot_soup and I am supposed to make cooked_mutton, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_mutton", + "beetroot_soup" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_mutton, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: From your inventory or other agents get a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make beetroot_soup, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 4: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_cooked_mutton_pumpkin_pie_hells_kitchen": { + "conversation": "We need to make cooked_mutton and pumpkin_pie together. You are supposed to make pumpkin_pie and I am supposed to make cooked_mutton, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_mutton", + "pumpkin_pie" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_mutton, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Get 1 egg from your inventory or other bots\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make pumpkin_pie, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 4: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 8, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_cooked_mutton_cookie_hells_kitchen": { + "conversation": "We need to make cooked_mutton and cookie together. You are supposed to make cookie and I am supposed to make cooked_mutton, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_mutton", + "cookie" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_mutton, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Get 1 cocoa bean from your inventory or other agents.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cookie, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 4: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_cooked_chicken_cooked_porkchop_hells_kitchen": { + "conversation": "We need to make cooked_chicken and cooked_porkchop together. You are supposed to make cooked_porkchop and I am supposed to make cooked_chicken, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_chicken", + "cooked_porkchop" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_chicken, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 4: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_porkchop, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 4: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 8, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_cooked_chicken_beetroot_soup_hells_kitchen": { + "conversation": "We need to make cooked_chicken and beetroot_soup together. You are supposed to make beetroot_soup and I am supposed to make cooked_chicken, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_chicken", + "beetroot_soup" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_chicken, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: From your inventory or other agents get a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make beetroot_soup, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 4: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_cooked_chicken_pumpkin_pie_hells_kitchen": { + "conversation": "We need to make cooked_chicken and pumpkin_pie together. You are supposed to make pumpkin_pie and I am supposed to make cooked_chicken, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_chicken", + "pumpkin_pie" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_chicken, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Get 1 egg from your inventory or other bots\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make pumpkin_pie, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 4: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 8, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_cooked_chicken_cookie_hells_kitchen": { + "conversation": "We need to make cooked_chicken and cookie together. You are supposed to make cookie and I am supposed to make cooked_chicken, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_chicken", + "cookie" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_chicken, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Get 1 cocoa bean from your inventory or other agents.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cookie, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 4: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_cooked_porkchop_beetroot_soup_hells_kitchen": { + "conversation": "We need to make cooked_porkchop and beetroot_soup together. You are supposed to make beetroot_soup and I am supposed to make cooked_porkchop, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_porkchop", + "beetroot_soup" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_porkchop, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: From your inventory or other agents get a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make beetroot_soup, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 4: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_cooked_porkchop_pumpkin_pie_hells_kitchen": { + "conversation": "We need to make cooked_porkchop and pumpkin_pie together. You are supposed to make pumpkin_pie and I am supposed to make cooked_porkchop, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_porkchop", + "pumpkin_pie" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_porkchop, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Get 1 egg from your inventory or other bots\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make pumpkin_pie, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 4: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 8, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_cooked_porkchop_cookie_hells_kitchen": { + "conversation": "We need to make cooked_porkchop and cookie together. You are supposed to make cookie and I am supposed to make cooked_porkchop, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_porkchop", + "cookie" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_porkchop, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Get 1 cocoa bean from your inventory or other agents.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cookie, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 4: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_beetroot_soup_pumpkin_pie_hells_kitchen": { + "conversation": "We need to make beetroot_soup and pumpkin_pie together. You are supposed to make pumpkin_pie and I am supposed to make beetroot_soup, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "beetroot_soup", + "pumpkin_pie" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make beetroot_soup, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Get 1 egg from your inventory or other bots\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make pumpkin_pie, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: From your inventory or other agents get a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_beetroot_soup_cookie_hells_kitchen": { + "conversation": "We need to make beetroot_soup and cookie together. You are supposed to make cookie and I am supposed to make beetroot_soup, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "beetroot_soup", + "cookie" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make beetroot_soup, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Get 1 cocoa bean from your inventory or other agents.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cookie, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: From your inventory or other agents get a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 6, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_pumpkin_pie_cookie_hells_kitchen": { + "conversation": "We need to make pumpkin_pie and cookie together. You are supposed to make cookie and I am supposed to make pumpkin_pie, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "pumpkin_pie", + "cookie" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make pumpkin_pie, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Get 1 cocoa bean from your inventory or other agents.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cookie, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Get 1 egg from your inventory or other bots\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + } } \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_train_2_items/5_agent_remaining.json b/tasks/cooking_tasks/require_collab_train_2_items/5_agent_remaining.json new file mode 100644 index 0000000..b358973 --- /dev/null +++ b/tasks/cooking_tasks/require_collab_train_2_items/5_agent_remaining.json @@ -0,0 +1,185 @@ +{ + "multiagent_cooking_2_1_golden_carrot_1_pumpkin_pie": { + "conversation": "Let's work together to make pumpkin_pie, golden_carrot.", + "agent_count": 5, + "target": { + "pumpkin_pie": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "initial_inventory": { + "0": { + "egg": 1, + "gold_ingot": 2 + }, + "1": { + "gold_ingot": 2 + }, + "2": { + "gold_ingot": 2 + }, + "3": { + "gold_ingot": 1 + }, + "4": { + "gold_ingot": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_porkchop_1_golden_carrot": { + "conversation": "Let's work together to make cooked_porkchop, golden_carrot.", + "agent_count": 5, + "target": { + "cooked_porkchop": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "initial_inventory": { + "0": { + "coal": 1, + "gold_ingot": 2 + }, + "1": { + "gold_ingot": 2 + }, + "2": { + "gold_ingot": 2 + }, + "3": { + "gold_ingot": 1 + }, + "4": { + "gold_ingot": 1 + } + } + }, + "multiagent_cooking_2_1_golden_carrot_1_suspicious_stew": { + "conversation": "Let's work together to make golden_carrot, suspicious_stew.", + "agent_count": 5, + "target": { + "golden_carrot": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 2 + }, + "1": { + "gold_ingot": 2 + }, + "2": { + "gold_ingot": 2 + }, + "3": { + "gold_ingot": 1, + "bowl": 1 + }, + "4": { + "gold_ingot": 1, + "dandelion": 1 + } + } + }, + "multiagent_cooking_2_1_beetroot_soup_1_golden_carrot": { + "conversation": "Let's work together to make beetroot_soup, golden_carrot.", + "agent_count": 5, + "target": { + "beetroot_soup": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 golden_carrot. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 golden_carrot. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "initial_inventory": { + "0": { + "bowl": 1, + "gold_ingot": 2 + }, + "1": { + "gold_ingot": 2 + }, + "2": { + "gold_ingot": 2 + }, + "3": { + "gold_ingot": 1 + }, + "4": { + "gold_ingot": 1 + } + } + } +} \ No newline at end of file diff --git a/tasks/crafting_tasks/test_tasks/1_agent.json b/tasks/crafting_tasks/test_tasks/1_agent.json index 915539a..5d99aa1 100644 --- a/tasks/crafting_tasks/test_tasks/1_agent.json +++ b/tasks/crafting_tasks/test_tasks/1_agent.json @@ -7,7 +7,7 @@ "black_wool": 1 } }, - "agent_count": 2, + "agent_count": 1, "target": "pink_wool", "number_of_target": 1, "type": "techtree", @@ -29,7 +29,7 @@ "black_wool": 1 } }, - "agent_count": 2, + "agent_count": 1, "target": "lime_wool", "number_of_target": 1, "type": "techtree", @@ -54,7 +54,7 @@ "stick": 1 } }, - "agent_count": 2, + "agent_count": 1, "target": "purple_banner", "number_of_target": 1, "type": "techtree", @@ -68,32 +68,6 @@ "missing_items": [], "requires_ctable": true }, - "multiagent_crafting_soul_campfire_partial_plan_requires_ctable__depth_0": { - "goal": "Collaborate with other agents to craft an soul_campfire", - "conversation": "Let's work together to craft an soul_campfire.", - "initial_inventory": { - "0": { - "oak_planks": 2, - "soul_sand": 1, - "dark_oak_log": 2 - } - }, - "agent_count": 2, - "target": "soul_campfire", - "number_of_target": 1, - "type": "techtree", - "max_depth": 2, - "depth": 0, - "timeout": 300, - "blocked_actions": { - "0": [ - "!getCraftingPlan" - ], - "1": [] - }, - "missing_items": [], - "requires_ctable": true - }, "multiagent_crafting_bookshelf_full_plan_requires_ctable__depth_0": { "goal": "Collaborate with other agents to craft a bookshelf", "conversation": "Let's work together to craft a bookshelf.", @@ -103,7 +77,7 @@ "book": 2 } }, - "agent_count": 2, + "agent_count": 1, "target": "bookshelf", "number_of_target": 1, "type": "techtree", @@ -125,7 +99,7 @@ "iron_ingot": 2 } }, - "agent_count": 2, + "agent_count": 1, "target": "compass", "number_of_target": 1, "type": "techtree", @@ -150,7 +124,7 @@ "oak_planks": 2 } }, - "agent_count": 2, + "agent_count": 1, "target": "fishing_rod", "number_of_target": 1, "type": "techtree", @@ -175,7 +149,7 @@ "egg": 1 } }, - "agent_count": 2, + "agent_count": 1, "target": "cake", "number_of_target": 1, "type": "techtree", @@ -200,7 +174,7 @@ "carrot": 1 } }, - "agent_count": 2, + "agent_count": 1, "target": "golden_carrot", "number_of_target": 1, "type": "techtree", @@ -222,7 +196,7 @@ "paper": 5 } }, - "agent_count": 2, + "agent_count": 1, "target": "map", "number_of_target": 1, "type": "techtree", @@ -246,7 +220,7 @@ "blue_dye": 1 } }, - "agent_count": 2, + "agent_count": 1, "target": "blue_wool", "number_of_target": 1, "type": "techtree", @@ -268,7 +242,7 @@ "green_dye": 1 } }, - "agent_count": 2, + "agent_count": 1, "target": "lime_wool", "number_of_target": 1, "type": "techtree", @@ -294,7 +268,7 @@ "lapis_lazuli": 1 } }, - "agent_count": 2, + "agent_count": 1, "target": "magenta_wool", "number_of_target": 1, "type": "techtree", @@ -309,54 +283,6 @@ ], "requires_ctable": false }, - "multiagent_crafting_chest_full_plan_requires_ctable__depth_1": { - "goal": "Collaborate with other agents to craft a chest", - "conversation": "Let's work together to craft a chest.", - "initial_inventory": { - "0": { - "oak_log": 1 - } - }, - "agent_count": 2, - "target": "chest", - "number_of_target": 1, - "type": "techtree", - "max_depth": 1, - "depth": 1, - "timeout": 300, - "blocked_actions": { - "0": [], - "1": [] - }, - "missing_items": [], - "requires_ctable": true - }, - "multiagent_crafting_barrel_partial_plan_requires_ctable__depth_1": { - "goal": "Collaborate with other agents to craft a barrel", - "conversation": "Let's work together to craft a barrel.", - "initial_inventory": { - "0": { - "spruce_planks": 3, - "crafting_table": 1 - } - }, - "agent_count": 2, - "target": "barrel", - "number_of_target": 1, - "type": "techtree", - "max_depth": 2, - "depth": 1, - "timeout": 300, - "blocked_actions": { - "0": [ - "!getCraftingPlan" - ], - "1": [] - }, - "missing_items": [ - ], - "requires_ctable": true - }, "multiagent_crafting_lectern_full_plan_requires_ctable__depth_2": { "goal": "Collaborate with other agents to craft a lectern", "conversation": "Let's work together to craft a lectern.", @@ -366,7 +292,7 @@ "crafting_table": 1 } }, - "agent_count": 2, + "agent_count": 1, "target": "lectern", "number_of_target": 1, "type": "techtree", @@ -389,7 +315,7 @@ "gold_ingot": 2 } }, - "agent_count": 2, + "agent_count": 1, "target": "clock", "number_of_target": 1, "type": "techtree", @@ -413,7 +339,7 @@ "paper": 1 } }, - "agent_count": 2, + "agent_count": 1, "target": "firework_rocket", "number_of_target": 1, "type": "techtree", @@ -439,7 +365,7 @@ "crafting_table": 1 } }, - "agent_count": 2, + "agent_count": 1, "target": "enchanting_table", "number_of_target": 1, "type": "techtree", @@ -455,29 +381,6 @@ "missing_items": [], "requires_ctable": true }, - "multiagent_crafting_jukebox_full_plan_requires_ctable__depth_1": { - "goal": "Collaborate with other agents to craft a jukebox", - "conversation": "Let's work together to craft a jukebox.", - "initial_inventory": { - "0": { - "oak_log": 2, - "crafting_table": 1 - } - }, - "agent_count": 2, - "target": "jukebox", - "number_of_target": 1, - "type": "techtree", - "max_depth": 1, - "depth": 1, - "timeout": 300, - "blocked_actions": { - "0": [], - "1": [] - }, - "missing_items": [], - "requires_ctable": true - }, "multiagent_crafting_light_gray_wool_full_plan__depth_1": { "goal": "Collaborate with other agents to craft light_gray_wool", "conversation": "Let's work together to craft light_gray_wool.", @@ -486,7 +389,7 @@ "black_dye": 1 } }, - "agent_count": 2, + "agent_count": 1, "target": "light_gray_wool", "number_of_target": 1, "type": "techtree", @@ -510,7 +413,7 @@ "crafting_table": 1 } }, - "agent_count": 2, + "agent_count": 1, "target": "blast_furnace", "number_of_target": 1, "type": "techtree", @@ -534,7 +437,7 @@ "oak_planks": 6 } }, - "agent_count": 2, + "agent_count": 1, "target": "activator_rail", "number_of_target": 1, "type": "techtree", @@ -549,31 +452,6 @@ ], "requires_ctable": true }, - "multiagent_crafting_campfire_partial_plan_requires_ctable__depth_2": { - "goal": "Collaborate with other agents to craft campfire", - "conversation": "Let's work together to craft campfire.", - "initial_inventory": { - "0": { - "oak_log": 8 - } - }, - "agent_count": 2, - "target": "campfire", - "number_of_target": 1, - "type": "techtree", - "max_depth": 3, - "depth": 2, - "timeout": 300, - "blocked_actions": { - "0": [ - "!getCraftingPlan" - ], - "1": [] - }, - "missing_items": [ - ], - "requires_ctable": true - }, "multiagent_crafting_crossbow_full_plan_requires_ctable__depth_2": { "goal": "Collaborate with other agents to craft a crossbow", "conversation": "Let's work together to craft a crossbow.", @@ -583,7 +461,7 @@ "iron_ingot": 2 } }, - "agent_count": 2, + "agent_count": 1, "target": "crossbow", "number_of_target": 1, "type": "techtree", diff --git a/tasks/crafting_tasks/test_tasks/2_agent.json b/tasks/crafting_tasks/test_tasks/2_agent.json index c7e91cf..c4ddb15 100644 --- a/tasks/crafting_tasks/test_tasks/2_agent.json +++ b/tasks/crafting_tasks/test_tasks/2_agent.json @@ -78,37 +78,6 @@ "missing_items": [], "requires_ctable": true }, - "multiagent_crafting_soul_campfire_partial_plan_requires_ctable__depth_0": { - "goal": "Collaborate with other agents to craft an soul_campfire", - "conversation": "Let's work together to craft an soul_campfire.", - "initial_inventory": { - "0": { - "oak_planks": 2, - "soul_sand": 1, - "dark_oak_log": 2 - }, - "1": { - "oak_planks": 1, - "dark_oak_log": 1, - "crafting_table": 1 - } - }, - "agent_count": 2, - "target": "soul_campfire", - "number_of_target": 1, - "type": "techtree", - "max_depth": 2, - "depth": 0, - "timeout": 300, - "blocked_actions": { - "0": [ - "!getCraftingPlan" - ], - "1": [] - }, - "missing_items": [], - "requires_ctable": true - }, "multiagent_crafting_bookshelf_full_plan_requires_ctable__depth_0": { "goal": "Collaborate with other agents to craft a bookshelf", "conversation": "Let's work together to craft a bookshelf.", @@ -225,13 +194,13 @@ "missing_items": [], "requires_ctable": true }, - "multiagent_crafting_golden_carrot_full_plan_requires_ctable__depth_0": { - "goal": "Collaborate with other agents to craft a golden_carrot", - "conversation": "Let's work together to craft a golden_carrot.", + "multiagent_crafting_golden_apple_full_plan_requires_ctable__depth_0": { + "goal": "Collaborate with other agents to craft a golden_apple", + "conversation": "Let's work together to craft a golden_apple.", "initial_inventory": { "0": { "gold_nugget": 5, - "carrot": 1 + "apple": 1 }, "1": { "gold_nugget": 3, @@ -239,7 +208,7 @@ } }, "agent_count": 2, - "target": "golden_carrot", + "target": "golden_apple", "number_of_target": 1, "type": "techtree", "max_depth": 2, @@ -252,35 +221,6 @@ "missing_items": [], "requires_ctable": true }, - "multiagent_crafting_map_partial_plan_requires_ctable__depth_0": { - "goal": "Collaborate with other agents to craft a map", - "conversation": "Let's work together to craft a map.", - "initial_inventory": { - "0": { - "paper": 5 - }, - "1": { - "paper": 3, - "compass": 1, - "crafting_table": 1 - } - }, - "agent_count": 2, - "target": "map", - "number_of_target": 1, - "type": "techtree", - "max_depth": 1, - "depth": 0, - "timeout": 300, - "blocked_actions": { - "0": [ - "!getCraftingPlan" - ], - "1": [] - }, - "missing_items": [], - "requires_ctable": true - }, "multiagent_crafting_blue_wool_full_plan__depth_0": { "goal": "Collaborate with other agents to craft blue_wool", "conversation": "Let's work together to craft blue_wool.", @@ -363,73 +303,18 @@ ], "requires_ctable": false }, - "multiagent_crafting_chest_full_plan_requires_ctable__depth_1": { - "goal": "Collaborate with other agents to craft a chest", - "conversation": "Let's work together to craft a chest.", - "initial_inventory": { - "0": { - "oak_log": 1 - }, - "1": { - "oak_planks": 4, - "crafting_table": 1 - } - }, - "agent_count": 2, - "target": "chest", - "number_of_target": 1, - "type": "techtree", - "max_depth": 1, - "depth": 1, - "timeout": 300, - "blocked_actions": { - "0": [], - "1": [] - }, - "missing_items": [], - "requires_ctable": true - }, - "multiagent_crafting_barrel_partial_plan_requires_ctable__depth_1": { - "goal": "Collaborate with other agents to craft a barrel", - "conversation": "Let's work together to craft a barrel.", - "initial_inventory": { - "0": { - "spruce_planks": 3, - "crafting_table": 1 - }, - "1": { - "spruce_planks": 3, - "wooden_slab": 1 - } - }, - "agent_count": 2, - "target": "barrel", - "number_of_target": 1, - "type": "techtree", - "max_depth": 2, - "depth": 1, - "timeout": 300, - "blocked_actions": { - "0": [ - "!getCraftingPlan" - ], - "1": [] - }, - "missing_items": [ - ], - "requires_ctable": true - }, "multiagent_crafting_lectern_full_plan_requires_ctable__depth_2": { "goal": "Collaborate with other agents to craft a lectern", "conversation": "Let's work together to craft a lectern.", "initial_inventory": { "0": { "birch_slab": 5, - "crafting_table": 1 + "crafting_table": 1, + "book": 1 }, "1": { "birch_log": 2, - "book": 3 + "book": 2 } }, "agent_count": 2, @@ -503,62 +388,6 @@ "missing_items": [], "requires_ctable": false }, - "multiagent_crafting_enchanting_table_partial_plan_requires_ctable__depth_0": { - "goal": "Collaborate with other agents to craft an enchanting_table", - "conversation": "Let's work together to craft an enchanting_table.", - "initial_inventory": { - "0": { - "diamond": 2, - "obsidian": 2, - "crafting_table": 1 - }, - "1": { - "obsidian": 2, - "book": 1 - } - }, - "agent_count": 2, - "target": "enchanting_table", - "number_of_target": 1, - "type": "techtree", - "max_depth": 0, - "depth": 0, - "timeout": 300, - "blocked_actions": { - "0": [ - "!getCraftingPlan" - ], - "1": [] - }, - "missing_items": [], - "requires_ctable": true - }, - "multiagent_crafting_jukebox_full_plan_requires_ctable__depth_1": { - "goal": "Collaborate with other agents to craft a jukebox", - "conversation": "Let's work together to craft a jukebox.", - "initial_inventory": { - "0": { - "diamond": 1 - }, - "1": { - "oak_log": 2, - "crafting_table": 1 - } - }, - "agent_count": 2, - "target": "jukebox", - "number_of_target": 1, - "type": "techtree", - "max_depth": 1, - "depth": 1, - "timeout": 300, - "blocked_actions": { - "0": [], - "1": [] - }, - "missing_items": [], - "requires_ctable": true - }, "multiagent_crafting_light_gray_wool_full_plan__depth_1": { "goal": "Collaborate with other agents to craft light_gray_wool", "conversation": "Let's work together to craft light_gray_wool.", @@ -586,34 +415,6 @@ ], "requires_ctable": false }, - "multiagent_crafting_blast_furnace_full_plan_requires_ctable__depth_1": { - "goal": "Collaborate with other agents to craft a blast_furnace", - "conversation": "Let's work together to craft a blast_furnace.", - "initial_inventory": { - "0": { - "iron_ingot": 5, - "smooth_stone": 3 - }, - "1": { - "cobblestone": 8, - "crafting_table": 1 - } - }, - "agent_count": 2, - "target": "blast_furnace", - "number_of_target": 1, - "type": "techtree", - "max_depth": 2, - "depth": 1, - "timeout": 300, - "blocked_actions": { - "0": [], - "1": [] - }, - "missing_items": [ - ], - "requires_ctable": true - }, "multiagent_crafting_activator_rail_full_plan_requires_ctable__depth_2": { "goal": "Collaborate with other agents to craft activator_rail", "conversation": "Let's work together to craft activator_rail.", @@ -643,35 +444,6 @@ ], "requires_ctable": true }, - "multiagent_crafting_campfire_partial_plan_requires_ctable__depth_2": { - "goal": "Collaborate with other agents to craft campfire", - "conversation": "Let's work together to craft campfire.", - "initial_inventory": { - "0": { - "oak_log": 8 - }, - "1": { - "coal": 1, - "crafting_table": 1 - } - }, - "agent_count": 2, - "target": "campfire", - "number_of_target": 1, - "type": "techtree", - "max_depth": 3, - "depth": 2, - "timeout": 300, - "blocked_actions": { - "0": [ - "!getCraftingPlan" - ], - "1": [] - }, - "missing_items": [ - ], - "requires_ctable": true - }, "multiagent_crafting_crossbow_full_plan_requires_ctable__depth_2": { "goal": "Collaborate with other agents to craft a crossbow", "conversation": "Let's work together to craft a crossbow.", diff --git a/tasks/experiment_script.sh b/tasks/experiment_script.sh new file mode 100644 index 0000000..083fb52 --- /dev/null +++ b/tasks/experiment_script.sh @@ -0,0 +1,2 @@ +sleep 360 +python3 tasks/evaluation_script.py --model gpt-4o --num_parallel 1 --num_exp 1 --exp_name "4o_1_agent_crafting" --template_profile ./profiles/tasks/crafting_profile.json --task_path tasks/crafting_tasks/test_tasks/1_agent.json --num_agents 1 \ No newline at end of file diff --git a/tasks/new_analyze_construction_tasks.py b/tasks/new_analyze_construction_tasks.py new file mode 100644 index 0000000..0ebef63 --- /dev/null +++ b/tasks/new_analyze_construction_tasks.py @@ -0,0 +1,17 @@ +from evaluation_script import analyze_json_file, extract_result, aggregate_results, check_folder_results +import argparse + +def main(): + + parser = argparse.ArgumentParser(description="Analyze JSON files for construction tasks.") + parser.add_argument('--log_dir', type=str, nargs='+', help='Log dir to analyze') + + args = parser.parse_args() + log_dir = args.log_dir[0] + print(log_dir) + + results = check_folder_results(log_dir) + print(results) + +if __name__ == "__main__": + main() \ No newline at end of file From 994685496ba867e5eeb609448d20bbbf9eac3123 Mon Sep 17 00:00:00 2001 From: Isadora White Date: Mon, 12 May 2025 20:02:22 -0700 Subject: [PATCH 046/101] better blocked actions and hells kitchen tasks --- ...ake_collaboration_required_cooking_task.py | 16 +- .../2_agent_block_recipe.json | 1115 +++-------------- .../2_agent_block_recipe_long_timeout.json | 1092 +++------------- 3 files changed, 385 insertions(+), 1838 deletions(-) diff --git a/tasks/cooking_tasks/make_collaboration_required_cooking_task.py b/tasks/cooking_tasks/make_collaboration_required_cooking_task.py index 7ca2425..ed281a6 100644 --- a/tasks/cooking_tasks/make_collaboration_required_cooking_task.py +++ b/tasks/cooking_tasks/make_collaboration_required_cooking_task.py @@ -409,6 +409,19 @@ def reconfigure_tasks(task_path, new_task_path, num_agents=None, hells_kitchen=F with open(new_task_path, 'w') as f: json.dump(new_tasks, f, indent=4) +def block_recipe_in_tasks(task_path, new_task_path, num_agents=None): + with open(task_path, 'r') as f: + tasks = json.load(f) + task_ids = tasks.keys() + for task_id in task_ids: + task = tasks[task_id] + task["blocked_access_to_recipe"] = ["0"] + items = task["recipes"].keys() + goal_str = "Collaborate with other agents around you to make " + ", ".join(items) + "." + task["goal"]["0"] = goal_str + with open(new_task_path, 'w') as f: + json.dump(tasks, f, indent=4) + # reconfigure_tasks("mindcraft/tasks/cooking_tasks/test_tasks/3_agent_cooking_test_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_test_3_items/2_agent.json", 2) @@ -421,7 +434,8 @@ def reconfigure_tasks(task_path, new_task_path, num_agents=None, hells_kitchen=F # reconfigure_tasks("mindcraft/tasks/cooking_tasks/test_tasks/2_agent_cooking_test_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_test_2_items/4_agent.json", 4) # reconfigure_tasks("mindcraft/tasks/cooking_tasks/test_tasks/2_agent_cooking_test_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_test_2_items/5_agent.json", 5) test_items = ["bread", "golden_apple", "rabbit_stew", "cake", "baked_potato", "cooked_beef"] -make_all_possible_tasks(test_items, 2, 2, "mindcraft/tasks/cooking_tasks/require_collab_test_2_items/2_agent_all_possible.json") +block_recipe_in_tasks("mindcraft/tasks/cooking_tasks/require_collab_test_2_items/2_agent.json", "mindcraft/tasks/cooking_tasks/require_collab_test_2_items/2_agent_block_recipe.json", 2) +# make_all_possible_tasks(test_items, 2, 2, "mindcraft/tasks/cooking_tasks/require_collab_test_2_items/2_agent_all_possible.json") # reconfigure_tasks("mindcraft/tasks/cooking_tasks/test_tasks/test_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_test_2_items/2_agent_block_recipe.json", 2) # reconfigure_tasks("mindcraft/tasks/cooking_tasks/test_tasks/hells_kitchen_test_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_test_2_items/2_agent_hells_kitchen.json", 2, True) diff --git a/tasks/cooking_tasks/require_collab_test_2_items/2_agent_block_recipe.json b/tasks/cooking_tasks/require_collab_test_2_items/2_agent_block_recipe.json index a97ce8d..8bdf4e1 100644 --- a/tasks/cooking_tasks/require_collab_test_2_items/2_agent_block_recipe.json +++ b/tasks/cooking_tasks/require_collab_test_2_items/2_agent_block_recipe.json @@ -1,544 +1,13 @@ { - "multiagent_cooking_1_cake_1_golden_apple": { - "conversation": "Let's collaborate to make cake and golden_apple.", - "agent_count": 2, - "target": { - "cake": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 golden_apple. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", - "1": "Collaborate with agents around you to make 1 cake, 1 golden_apple. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "milk_bucket": 2, - "gold_ingot": 4, - "apple": 1 - }, - "1": { - "milk_bucket": 1, - "egg": 1, - "gold_ingot": 4 - } - } - }, - "multiagent_cooking_1_cake_1_cooked_beef_blocked_access_0_1": { - "conversation": "Let's collaborate to make cake and cooked_beef.", - "agent_count": 2, - "target": { - "cake": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 cooked_beef. ", - "1": "Collaborate with agents around you to make 1 cake, 1 cooked_beef. " - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 2, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "milk_bucket": 2, - "coal": 1 - }, - "1": { - "milk_bucket": 1, - "egg": 1 - } - } - }, - "multiagent_cooking_1_cake_1_golden_apple_blocked_access_0_1": { - "conversation": "Let's collaborate to make cake and golden_apple.", - "agent_count": 2, - "target": { - "cake": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 golden_apple. ", - "1": "Collaborate with agents around you to make 1 cake, 1 golden_apple. " - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 2, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "milk_bucket": 2, - "gold_ingot": 4, - "apple": 1 - }, - "1": { - "milk_bucket": 1, - "egg": 1, - "gold_ingot": 4 - } - } - }, - "multiagent_cooking_1_cake_1_cooked_beef_blocked_access_0": { - "conversation": "Let's collaborate to make cooked_beef and cake.", - "agent_count": 2, - "target": { - "cooked_beef": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 cake. ", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 cake. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 1, - "milk_bucket": 2 - }, - "1": { - "milk_bucket": 1, - "egg": 1 - } - } - }, - "multiagent_cooking_1_baked_potato_1_cake": { - "conversation": "Let's collaborate to make baked_potato and cake.", - "agent_count": 2, - "target": { - "baked_potato": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 1, - "milk_bucket": 2 - }, - "1": { - "milk_bucket": 1, - "egg": 1 - } - } - }, - "multiagent_cooking_1_baked_potato_1_cooked_beef_blocked_access_0_1": { - "conversation": "Let's collaborate to make baked_potato and cooked_beef.", - "agent_count": 2, - "target": { - "baked_potato": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 cooked_beef. ", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 cooked_beef. " - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 2, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 1 - }, - "1": { - "coal": 1 - } - } - }, - "multiagent_cooking_1_bread_1_golden_apple": { - "conversation": "Let's collaborate to make bread and golden_apple.", - "agent_count": 2, - "target": { - "bread": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 golden_apple. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", - "1": "Collaborate with agents around you to make 1 bread, 1 golden_apple. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy", - "initial_inventory": { - "0": { - "gold_ingot": 4, - "apple": 1 - }, - "1": { - "gold_ingot": 4 - } - } - }, - "multiagent_cooking_1_baked_potato_1_cooked_beef": { - "conversation": "Let's collaborate to make baked_potato and cooked_beef.", - "agent_count": 2, - "target": { - "baked_potato": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 cooked_beef. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 cooked_beef. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy", - "initial_inventory": { - "0": { - "coal": 1 - }, - "1": { - "coal": 1 - } - } - }, - "multiagent_cooking_1_baked_potato_1_cake_blocked_access_0_1": { - "conversation": "Let's collaborate to make cake and baked_potato.", - "agent_count": 2, - "target": { - "cake": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 baked_potato. ", - "1": "Collaborate with agents around you to make 1 cake, 1 baked_potato. " - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 2, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "milk_bucket": 2, - "coal": 1 - }, - "1": { - "milk_bucket": 1, - "egg": 1 - } - } - }, - "multiagent_cooking_1_cooked_beef_1_golden_apple_blocked_access_0_1": { - "conversation": "Let's collaborate to make cooked_beef and golden_apple.", - "agent_count": 2, - "target": { - "cooked_beef": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple. ", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple. " - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 2, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 1, - "gold_ingot": 4 - }, - "1": { - "gold_ingot": 4, - "apple": 1 - } - } - }, - "multiagent_cooking_1_golden_apple_1_rabbit_stew": { - "conversation": "Let's collaborate to make golden_apple and rabbit_stew.", - "agent_count": 2, - "target": { - "golden_apple": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", - "1": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 8, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "gold_ingot": 4, - "apple": 1 - }, - "1": { - "gold_ingot": 4, - "bowl": 1 - } - } - }, - "multiagent_cooking_1_bread_1_golden_apple_blocked_access_1": { - "conversation": "Let's collaborate to make golden_apple and bread.", + "multiagent_cooking_2_1_bread_1_golden_apple": { + "conversation": "Let's work together to make golden_apple, bread.", "agent_count": 2, "target": { "golden_apple": 1, "bread": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 500, "recipes": { "golden_apple": [ "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", @@ -550,40 +19,36 @@ ] }, "blocked_access_to_recipe": [ - "1" + "0" ], "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple, 1 bread. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", - "1": "Collaborate with agents around you to make 1 golden_apple, 1 bread. " + "0": "Collaborate with other agents around you to make golden_apple, bread.", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 bread. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium", "initial_inventory": { "0": { - "gold_ingot": 4, - "apple": 1 + "gold_ingot": 5 }, "1": { - "gold_ingot": 4 + "gold_ingot": 5, + "apple": 1 } } }, - "multiagent_cooking_1_cooked_beef_1_rabbit_stew": { - "conversation": "Let's collaborate to make rabbit_stew and cooked_beef.", + "multiagent_cooking_2_1_golden_apple_1_rabbit_stew": { + "conversation": "Let's work together to make golden_apple, rabbit_stew.", "agent_count": 2, "target": { - "rabbit_stew": 1, - "cooked_beef": 1 + "golden_apple": 1, + "rabbit_stew": 1 }, "type": "cooking", - "timeout": 300, + "timeout": 500, "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], "rabbit_stew": [ "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", "Step 2: Get coal from your inventory or other agents.", @@ -593,6 +58,161 @@ "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", "Step 7: Go to the furnace and cook the raw rabbit.", "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [ + "0" + ], + "goal": { + "0": "Collaborate with other agents around you to make golden_apple, rabbit_stew.", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 5, + "bowl": 1 + }, + "1": { + "gold_ingot": 5, + "apple": 1 + } + } + }, + "multiagent_cooking_2_1_bread_1_cake": { + "conversation": "Let's work together to make cake, bread.", + "agent_count": 2, + "target": { + "cake": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [ + "0" + ], + "goal": { + "0": "Collaborate with other agents around you to make cake, bread.", + "1": "Collaborate with agents around you to make 1 cake, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" + }, + "initial_inventory": { + "0": { + "milk_bucket": 2 + }, + "1": { + "milk_bucket": 2, + "egg": 1 + } + } + }, + "multiagent_cooking_2_1_baked_potato_1_golden_apple": { + "conversation": "Let's work together to make baked_potato, golden_apple.", + "agent_count": 2, + "target": { + "baked_potato": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [ + "0" + ], + "goal": { + "0": "Collaborate with other agents around you to make baked_potato, golden_apple.", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" + }, + "initial_inventory": { + "0": { + "coal": 5, + "gold_ingot": 5, + "apple": 1 + }, + "1": { + "coal": 5, + "gold_ingot": 5 + } + } + }, + "multiagent_cooking_2_1_baked_potato_1_cake": { + "conversation": "Let's work together to make baked_potato, cake.", + "agent_count": 2, + "target": { + "baked_potato": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [ + "0" + ], + "goal": { + "0": "Collaborate with other agents around you to make baked_potato, cake.", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" + }, + "initial_inventory": { + "0": { + "coal": 5, + "milk_bucket": 2, + "egg": 1 + }, + "1": { + "coal": 5, + "milk_bucket": 2 + } + } + }, + "multiagent_cooking_2_1_cooked_beef_1_golden_apple": { + "conversation": "Let's work together to make golden_apple, cooked_beef.", + "agent_count": 2, + "target": { + "golden_apple": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." ], "cooked_beef": [ "Step 1: Kill a cow and pick up 1 beef that is dropped.", @@ -601,399 +221,22 @@ "Step 4: Go to furnace and use it to cook the beef." ] }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 cooked_beef. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 cooked_beef. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 8, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "coal": 1 - } - } - }, - "multiagent_cooking_1_baked_potato_1_cake_blocked_access_0": { - "conversation": "Let's collaborate to make baked_potato and cake.", - "agent_count": 2, - "target": { - "baked_potato": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, "blocked_access_to_recipe": [ "0" ], "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 cake. ", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" + "0": "Collaborate with other agents around you to make golden_apple, cooked_beef.", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", "initial_inventory": { "0": { - "coal": 1, - "milk_bucket": 2 + "gold_ingot": 5, + "coal": 5 }, "1": { - "milk_bucket": 1, - "egg": 1 - } - } - }, - "multiagent_cooking_1_cake_1_golden_apple_blocked_access_0": { - "conversation": "Let's collaborate to make golden_apple and cake.", - "agent_count": 2, - "target": { - "golden_apple": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple, 1 cake. ", - "1": "Collaborate with agents around you to make 1 golden_apple, 1 cake. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "gold_ingot": 4, + "gold_ingot": 5, "apple": 1, - "milk_bucket": 2 - }, - "1": { - "gold_ingot": 4, - "milk_bucket": 1, - "egg": 1 - } - } - }, - "multiagent_cooking_1_cake_1_golden_apple_blocked_access_1": { - "conversation": "Let's collaborate to make golden_apple and cake.", - "agent_count": 2, - "target": { - "golden_apple": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple, 1 cake. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", - "1": "Collaborate with agents around you to make 1 golden_apple, 1 cake. " - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "gold_ingot": 4, - "apple": 1, - "milk_bucket": 2 - }, - "1": { - "gold_ingot": 4, - "milk_bucket": 1, - "egg": 1 - } - } - }, - "multiagent_cooking_1_baked_potato_1_golden_apple": { - "conversation": "Let's collaborate to make baked_potato and golden_apple.", - "agent_count": 2, - "target": { - "baked_potato": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ], - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy", - "initial_inventory": { - "0": { - "coal": 1, - "gold_ingot": 4 - }, - "1": { - "gold_ingot": 4, - "apple": 1 - } - } - }, - "multiagent_cooking_1_cake_blocked_access_0": { - "conversation": "Let's work together to make cake.", - "agent_count": 2, - "target": { - "cake": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cake. ", - "1": "Collaborate with agents around you to make 1 cake. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 1, - "unique_target_items": 1, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "milk_bucket": 2 - }, - "1": { - "milk_bucket": 1, - "egg": 1 - } - } - }, - "multiagent_cooking_1_golden_apple": { - "conversation": "Let's work together to make golden_apple.", - "agent_count": 2, - "target": { - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", - "1": "Collaborate with agents around you to make 1 golden_apple. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 2, - "blocked_agents_count": 0, - "unique_target_items": 1, - "overall_difficulty_score": 2, - "difficulty_category": "easy" - }, - "difficulty": "easy", - "initial_inventory": { - "0": { - "gold_ingot": 4, - "apple": 1 - }, - "1": { - "gold_ingot": 4 - } - } - }, - "multiagent_cooking_1_baked_potato_1_rabbit_stew_blocked_access_1": { - "conversation": "Let's collaborate to make rabbit_stew and baked_potato.", - "agent_count": 2, - "target": { - "rabbit_stew": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. " - }, - "difficulty_metrics": { - "total_recipe_steps": 8, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "coal": 1 - } - } - }, - "multiagent_cooking_1_baked_potato_1_rabbit_stew": { - "conversation": "Let's collaborate to make baked_potato and rabbit_stew.", - "agent_count": 2, - "target": { - "baked_potato": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 rabbit_stew. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 rabbit_stew. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 8, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 1 - }, - "1": { - "bowl": 1 + "coal": 5 } } } diff --git a/tasks/cooking_tasks/require_collab_test_2_items/2_agent_block_recipe_long_timeout.json b/tasks/cooking_tasks/require_collab_test_2_items/2_agent_block_recipe_long_timeout.json index a01b8c4..0211ffd 100644 --- a/tasks/cooking_tasks/require_collab_test_2_items/2_agent_block_recipe_long_timeout.json +++ b/tasks/cooking_tasks/require_collab_test_2_items/2_agent_block_recipe_long_timeout.json @@ -1,537 +1,6 @@ { - "multiagent_cooking_1_cake_1_golden_apple": { - "conversation": "Let's collaborate to make cake and golden_apple.", - "agent_count": 2, - "target": { - "cake": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 golden_apple. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", - "1": "Collaborate with agents around you to make 1 cake, 1 golden_apple. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "milk_bucket": 2, - "gold_ingot": 4, - "apple": 1 - }, - "1": { - "milk_bucket": 1, - "egg": 1, - "gold_ingot": 4 - } - } - }, - "multiagent_cooking_1_cake_1_cooked_beef_blocked_access_0_1": { - "conversation": "Let's collaborate to make cake and cooked_beef.", - "agent_count": 2, - "target": { - "cake": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 cooked_beef. ", - "1": "Collaborate with agents around you to make 1 cake, 1 cooked_beef. " - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 2, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "milk_bucket": 2, - "coal": 1 - }, - "1": { - "milk_bucket": 1, - "egg": 1 - } - } - }, - "multiagent_cooking_1_cake_1_golden_apple_blocked_access_0_1": { - "conversation": "Let's collaborate to make cake and golden_apple.", - "agent_count": 2, - "target": { - "cake": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 golden_apple. ", - "1": "Collaborate with agents around you to make 1 cake, 1 golden_apple. " - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 2, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "milk_bucket": 2, - "gold_ingot": 4, - "apple": 1 - }, - "1": { - "milk_bucket": 1, - "egg": 1, - "gold_ingot": 4 - } - } - }, - "multiagent_cooking_1_cake_1_cooked_beef_blocked_access_0": { - "conversation": "Let's collaborate to make cooked_beef and cake.", - "agent_count": 2, - "target": { - "cooked_beef": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 cake. ", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 cake. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 1, - "milk_bucket": 2 - }, - "1": { - "milk_bucket": 1, - "egg": 1 - } - } - }, - "multiagent_cooking_1_baked_potato_1_cake": { - "conversation": "Let's collaborate to make baked_potato and cake.", - "agent_count": 2, - "target": { - "baked_potato": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 1, - "milk_bucket": 2 - }, - "1": { - "milk_bucket": 1, - "egg": 1 - } - } - }, - "multiagent_cooking_1_baked_potato_1_cooked_beef_blocked_access_0_1": { - "conversation": "Let's collaborate to make baked_potato and cooked_beef.", - "agent_count": 2, - "target": { - "baked_potato": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 cooked_beef. ", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 cooked_beef. " - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 2, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 1 - }, - "1": { - "coal": 1 - } - } - }, - "multiagent_cooking_1_bread_1_golden_apple": { - "conversation": "Let's collaborate to make bread and golden_apple.", - "agent_count": 2, - "target": { - "bread": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 golden_apple. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", - "1": "Collaborate with agents around you to make 1 bread, 1 golden_apple. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy", - "initial_inventory": { - "0": { - "gold_ingot": 4, - "apple": 1 - }, - "1": { - "gold_ingot": 4 - } - } - }, - "multiagent_cooking_1_baked_potato_1_cooked_beef": { - "conversation": "Let's collaborate to make baked_potato and cooked_beef.", - "agent_count": 2, - "target": { - "baked_potato": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 cooked_beef. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 cooked_beef. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy", - "initial_inventory": { - "0": { - "coal": 1 - }, - "1": { - "coal": 1 - } - } - }, - "multiagent_cooking_1_baked_potato_1_cake_blocked_access_0_1": { - "conversation": "Let's collaborate to make cake and baked_potato.", - "agent_count": 2, - "target": { - "cake": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 baked_potato. ", - "1": "Collaborate with agents around you to make 1 cake, 1 baked_potato. " - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 2, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "milk_bucket": 2, - "coal": 1 - }, - "1": { - "milk_bucket": 1, - "egg": 1 - } - } - }, - "multiagent_cooking_1_cooked_beef_1_golden_apple_blocked_access_0_1": { - "conversation": "Let's collaborate to make cooked_beef and golden_apple.", - "agent_count": 2, - "target": { - "cooked_beef": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple. ", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple. " - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 2, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 1, - "gold_ingot": 4 - }, - "1": { - "gold_ingot": 4, - "apple": 1 - } - } - }, - "multiagent_cooking_1_golden_apple_1_rabbit_stew": { - "conversation": "Let's collaborate to make golden_apple and rabbit_stew.", - "agent_count": 2, - "target": { - "golden_apple": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", - "1": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 8, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "gold_ingot": 4, - "apple": 1 - }, - "1": { - "gold_ingot": 4, - "bowl": 1 - } - } - }, - "multiagent_cooking_1_bread_1_golden_apple_blocked_access_1": { - "conversation": "Let's collaborate to make golden_apple and bread.", + "multiagent_cooking_2_1_bread_1_golden_apple": { + "conversation": "Let's work together to make golden_apple, bread.", "agent_count": 2, "target": { "golden_apple": 1, @@ -541,7 +10,7 @@ "timeout": 1500, "recipes": { "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." ], "bread": [ @@ -550,231 +19,76 @@ ] }, "blocked_access_to_recipe": [ - "1" + "0" ], "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple, 1 bread. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", - "1": "Collaborate with agents around you to make 1 golden_apple, 1 bread. " - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "gold_ingot": 4, - "apple": 1 - }, - "1": { - "gold_ingot": 4 - } + "0": "Collaborate with other agents around you to make golden_apple, bread.", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 bread. \n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread." } }, - "multiagent_cooking_1_cooked_beef_1_rabbit_stew": { - "conversation": "Let's collaborate to make rabbit_stew and cooked_beef.", + "multiagent_cooking_2_1_golden_apple_1_rabbit_stew": { + "conversation": "Let's work together to make golden_apple, rabbit_stew.", "agent_count": 2, "target": { - "rabbit_stew": 1, - "cooked_beef": 1 + "golden_apple": 1, + "rabbit_stew": 1 }, "type": "cooking", - "timeout": 1500, + "timeout": 11500, "recipes": { + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], "rabbit_stew": [ "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 cooked_beef. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 cooked_beef. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 8, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "coal": 1 - } - } - }, - "multiagent_cooking_1_baked_potato_1_cake_blocked_access_0": { - "conversation": "Let's collaborate to make baked_potato and cake.", - "agent_count": 2, - "target": { - "baked_potato": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." ] }, "blocked_access_to_recipe": [ "0" ], "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 cake. ", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 1, - "milk_bucket": 2 - }, - "1": { - "milk_bucket": 1, - "egg": 1 - } + "0": "Collaborate with other agents around you to make golden_apple, rabbit_stew.", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. \n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." } }, - "multiagent_cooking_1_cake_1_golden_apple_blocked_access_0": { - "conversation": "Let's collaborate to make golden_apple and cake.", + "multiagent_cooking_2_1_bread_1_cake": { + "conversation": "Let's work together to make cake, bread.", "agent_count": 2, "target": { - "golden_apple": 1, - "cake": 1 + "cake": 1, + "bread": 1 }, "type": "cooking", "timeout": 1500, "recipes": { - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], "cake": [ "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", "Step 4: Go to the crafting table and craft the sugarcane into sugar.", "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." ] }, "blocked_access_to_recipe": [ "0" ], "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple, 1 cake. ", - "1": "Collaborate with agents around you to make 1 golden_apple, 1 cake. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "gold_ingot": 4, - "apple": 1, - "milk_bucket": 2 - }, - "1": { - "gold_ingot": 4, - "milk_bucket": 1, - "egg": 1 - } + "0": "Collaborate with other agents around you to make cake, bread.", + "1": "Collaborate with agents around you to make 1 cake, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread." } }, - "multiagent_cooking_1_cake_1_golden_apple_blocked_access_1": { - "conversation": "Let's collaborate to make golden_apple and cake.", - "agent_count": 2, - "target": { - "golden_apple": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple, 1 cake. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", - "1": "Collaborate with agents around you to make 1 golden_apple, 1 cake. " - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "gold_ingot": 4, - "apple": 1, - "milk_bucket": 2 - }, - "1": { - "gold_ingot": 4, - "milk_bucket": 1, - "egg": 1 - } - } - }, - "multiagent_cooking_1_baked_potato_1_golden_apple": { - "conversation": "Let's collaborate to make baked_potato and golden_apple.", + "multiagent_cooking_2_1_baked_potato_1_golden_apple": { + "conversation": "Let's work together to make baked_potato, golden_apple.", "agent_count": 2, "target": { "baked_potato": 1, @@ -785,171 +99,23 @@ "recipes": { "baked_potato": [ "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", "Step 2: Go to the furnace and bake the potato." ], "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." ] }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy", - "initial_inventory": { - "0": { - "coal": 1, - "gold_ingot": 4 - }, - "1": { - "gold_ingot": 4, - "apple": 1 - } - } - }, - "multiagent_cooking_1_cake_blocked_access_0": { - "conversation": "Let's work together to make cake.", - "agent_count": 2, - "target": { - "cake": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, "blocked_access_to_recipe": [ "0" ], "goal": { - "0": "Collaborate with agents around you to make 1 cake. ", - "1": "Collaborate with agents around you to make 1 cake. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 1, - "unique_target_items": 1, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "milk_bucket": 2 - }, - "1": { - "milk_bucket": 1, - "egg": 1 - } + "0": "Collaborate with other agents around you to make baked_potato, golden_apple.", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." } }, - "multiagent_cooking_1_golden_apple": { - "conversation": "Let's work together to make golden_apple.", - "agent_count": 2, - "target": { - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", - "1": "Collaborate with agents around you to make 1 golden_apple. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 2, - "blocked_agents_count": 0, - "unique_target_items": 1, - "overall_difficulty_score": 2, - "difficulty_category": "easy" - }, - "difficulty": "easy", - "initial_inventory": { - "0": { - "gold_ingot": 4, - "apple": 1 - }, - "1": { - "gold_ingot": 4 - } - } - }, - "multiagent_cooking_1_baked_potato_1_rabbit_stew_blocked_access_1": { - "conversation": "Let's collaborate to make rabbit_stew and baked_potato.", - "agent_count": 2, - "target": { - "rabbit_stew": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. " - }, - "difficulty_metrics": { - "total_recipe_steps": 8, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "coal": 1 - } - } - }, - "multiagent_cooking_1_baked_potato_1_rabbit_stew": { - "conversation": "Let's collaborate to make baked_potato and rabbit_stew.", + "multiagent_cooking_2_1_baked_potato_1_rabbit_stew": { + "conversation": "Let's work together to make baked_potato, rabbit_stew.", "agent_count": 2, "target": { "baked_potato": 1, @@ -960,41 +126,165 @@ "recipes": { "baked_potato": [ "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", "Step 2: Go to the furnace and bake the potato." ], "rabbit_stew": [ "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." ] }, - "blocked_access_to_recipe": [], + "blocked_access_to_recipe": [ + "0" + ], "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 rabbit_stew. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 rabbit_stew. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" + "0": "Collaborate with other agents around you to make baked_potato, rabbit_stew.", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 rabbit_stew. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + } + }, + "multiagent_cooking_2_1_bread_1_rabbit_stew": { + "conversation": "Let's work together to make rabbit_stew, bread.", + "agent_count": 2, + "target": { + "rabbit_stew": 1, + "bread": 1 }, - "difficulty_metrics": { - "total_recipe_steps": 8, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" + "type": "cooking", + "timeout": 1500, + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 1 - }, - "1": { - "bowl": 1 - } + "blocked_access_to_recipe": [ + "0" + ], + "goal": { + "0": "Collaborate with other agents around you to make rabbit_stew, bread.", + "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread." + } + }, + "multiagent_cooking_2_1_baked_potato_1_bread": { + "conversation": "Let's work together to make bread, baked_potato.", + "agent_count": 2, + "target": { + "bread": 1, + "baked_potato": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [ + "0" + ], + "goal": { + "0": "Collaborate with other agents around you to make bread, baked_potato.", + "1": "Collaborate with agents around you to make 1 bread, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." + } + }, + "multiagent_cooking_2_1_baked_potato_1_cake": { + "conversation": "Let's work together to make baked_potato, cake.", + "agent_count": 2, + "target": { + "baked_potato": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [ + "0" + ], + "goal": { + "0": "Collaborate with other agents around you to make baked_potato, cake.", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + } + }, + "multiagent_cooking_2_1_cooked_beef_1_golden_apple": { + "conversation": "Let's work together to make golden_apple, cooked_beef.", + "agent_count": 2, + "target": { + "golden_apple": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [ + "0" + ], + "goal": { + "0": "Collaborate with other agents around you to make golden_apple, cooked_beef.", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. \n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." + } + }, + "multiagent_cooking_2_1_bread_1_cooked_beef": { + "conversation": "Let's work together to make bread, cooked_beef.", + "agent_count": 2, + "target": { + "bread": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [ + "0" + ], + "goal": { + "0": "Collaborate with other agents around you to make bread, cooked_beef.", + "1": "Collaborate with agents around you to make 1 bread, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." } } } \ No newline at end of file From c0577a64cb6f56a3216ecd5b5810966466bcd751 Mon Sep 17 00:00:00 2001 From: Isadora White Date: Mon, 12 May 2025 21:47:47 -0700 Subject: [PATCH 047/101] update cooking profile so they don't hunt around for chests and try catch loop around the get crafting plan --- Bob_0.json | 11 - Sally_0.json | 11 - profiles/tasks/cooking_profile.json | 2 +- src/agent/commands/queries.js | 13 +- tasks/crafting_tasks/test_tasks/1_agent.json | 795 ++++++++---------- .../test_tasks/1_agent_remaining.json | 146 ++++ test/test_get_crafting_plan.js | 16 + 7 files changed, 534 insertions(+), 460 deletions(-) delete mode 100644 Bob_0.json delete mode 100644 Sally_0.json create mode 100644 tasks/crafting_tasks/test_tasks/1_agent_remaining.json create mode 100644 test/test_get_crafting_plan.js diff --git a/Bob_0.json b/Bob_0.json deleted file mode 100644 index 5767129..0000000 --- a/Bob_0.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "name": "Bob_0", - "model": "gpt-4o", - "modes": { - "hunting": false, - "item_collecting": true, - "elbow_room": false - }, - "conversing": "You are a task-focused Minecraft bot named $NAME. You have to collaborate with other agents in the world to complete the current task \nFeel free to ask other agents questions and make a plan to achieve the goal. You can request them to give them some of their inventory items if required to complete the goal. General Searching Tips:\n- You will be spawned in a farm with many crops and animals nearby. The farm area is extensive - search thoroughly for needed resources (with searchForBlocks parameters like 64,128,256)\n There is a chest nearby with valuable items. Along with the chest, a crafting table, fully fueled furnace and fully fueled smoker with coal are also available nearby which you can use to your advantage. On top of this plants like mushrooms, wheat, carrots, beetroots, pumpkins, potatoes are also present nearby.\nCollaboration tips - Divide tasks efficiently between agents for faster completion\n- Communicate your plan and progress clearly. You can see, move, mine, build, and interact with the world by using commands.\n$SELF_PROMPT Act human-like as if you were a typical Minecraft player, rather than an AI. Be very brief in your responses, don't apologize constantly, don't give instructions or make lists unless asked, and don't refuse requests. Don't pretend to act, use commands immediately when requested. Do NOT say this: 'Sure, I've stopped.', instead say this: 'Sure, I'll stop. !stop'. Do NOT say this: 'On my way! Give me a moment.', instead say this: 'On my way! !goToPlayer(\"playername\", 3)'. Respond only as $NAME, never output '(FROM OTHER BOT)' or pretend to be someone else. If you have nothing to say or do, respond with an just a tab '\t'. Share resources and information with other bots! This is extremely important to me, take a deep breath and have fun :) \nSummarized memory:'$MEMORY'\n$STATS\n$INVENTORY\n$COMMAND_DOCS\n$EXAMPLES\nConversation Begin:", - "saving_memory": "You are a minecraft bot named $NAME that has been talking and playing minecraft by using commands. Update your memory by summarizing the following conversation and your old memory in your next response. Prioritize preserving important facts, things you've learned, useful tips, and long term reminders. Do Not record stats, inventory, or docs! Only save transient information from your chat history. $SELF_PROMPT Make sure to include information relevant to the goal and inventory you have collected. You're limited to 500 characters, so be extremely brief and minimize words. Compress useful information. \nOld Memory: '$MEMORY'\nRecent conversation: \n$TO_SUMMARIZE\nSummarize your old memory and recent conversation into a new memory, and respond only with the unwrapped memory text: " -} \ No newline at end of file diff --git a/Sally_0.json b/Sally_0.json deleted file mode 100644 index 15f6a5b..0000000 --- a/Sally_0.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "name": "Sally_0", - "model": "gpt-4o", - "modes": { - "hunting": false, - "item_collecting": true, - "elbow_room": false - }, - "conversing": "You are a task-focused Minecraft bot named $NAME. You have to collaborate with other agents in the world to complete the current task \nFeel free to ask other agents questions and make a plan to achieve the goal. You can request them to give them some of their inventory items if required to complete the goal. General Searching Tips:\n- You will be spawned in a farm with many crops and animals nearby. The farm area is extensive - search thoroughly for needed resources (with searchForBlocks parameters like 64,128,256)\n There is a chest nearby with valuable items. Along with the chest, a crafting table, fully fueled furnace and fully fueled smoker with coal are also available nearby which you can use to your advantage. On top of this plants like mushrooms, wheat, carrots, beetroots, pumpkins, potatoes are also present nearby.\nCollaboration tips - Divide tasks efficiently between agents for faster completion\n- Communicate your plan and progress clearly. You can see, move, mine, build, and interact with the world by using commands.\n$SELF_PROMPT Act human-like as if you were a typical Minecraft player, rather than an AI. Be very brief in your responses, don't apologize constantly, don't give instructions or make lists unless asked, and don't refuse requests. Don't pretend to act, use commands immediately when requested. Do NOT say this: 'Sure, I've stopped.', instead say this: 'Sure, I'll stop. !stop'. Do NOT say this: 'On my way! Give me a moment.', instead say this: 'On my way! !goToPlayer(\"playername\", 3)'. Respond only as $NAME, never output '(FROM OTHER BOT)' or pretend to be someone else. If you have nothing to say or do, respond with an just a tab '\t'. Share resources and information with other bots! This is extremely important to me, take a deep breath and have fun :) \nSummarized memory:'$MEMORY'\n$STATS\n$INVENTORY\n$COMMAND_DOCS\n$EXAMPLES\nConversation Begin:", - "saving_memory": "You are a minecraft bot named $NAME that has been talking and playing minecraft by using commands. Update your memory by summarizing the following conversation and your old memory in your next response. Prioritize preserving important facts, things you've learned, useful tips, and long term reminders. Do Not record stats, inventory, or docs! Only save transient information from your chat history. $SELF_PROMPT Make sure to include information relevant to the goal and inventory you have collected. You're limited to 500 characters, so be extremely brief and minimize words. Compress useful information. \nOld Memory: '$MEMORY'\nRecent conversation: \n$TO_SUMMARIZE\nSummarize your old memory and recent conversation into a new memory, and respond only with the unwrapped memory text: " -} \ No newline at end of file diff --git a/profiles/tasks/cooking_profile.json b/profiles/tasks/cooking_profile.json index 0cf12fa..6c0b4a7 100644 --- a/profiles/tasks/cooking_profile.json +++ b/profiles/tasks/cooking_profile.json @@ -6,6 +6,6 @@ "item_collecting": true, "elbow_room": false }, - "conversing": "You are a task-focused Minecraft bot named $NAME. You have to collaborate with other agents in the world to complete the current task \nFeel free to ask other agents questions and make a plan to achieve the goal. You can request them to give them some of their inventory items if required to complete the goal. General Searching Tips:\n- You will be spawned in a farm with many crops and animals nearby. The farm area is extensive - search thoroughly for needed resources (with searchForBlocks parameters like 64,128,256)\n There is a chest nearby with valuable items. Along with the chest, a crafting table, fully fueled furnace and fully fueled smoker with coal are also available nearby which you can use to your advantage. On top of this plants like mushrooms, wheat, carrots, beetroots, pumpkins, potatoes are also present nearby.\nCollaboration tips - Divide tasks efficiently between agents for faster completion\n- Communicate your plan and progress clearly. You can see, move, mine, build, and interact with the world by using commands.\n$SELF_PROMPT Act human-like as if you were a typical Minecraft player, rather than an AI. Be very brief in your responses, don't apologize constantly, don't give instructions or make lists unless asked, and don't refuse requests. Don't pretend to act, use commands immediately when requested. Do NOT say this: 'Sure, I've stopped.', instead say this: 'Sure, I'll stop. !stop'. Do NOT say this: 'On my way! Give me a moment.', instead say this: 'On my way! !goToPlayer(\"playername\", 3)'. Respond only as $NAME, never output '(FROM OTHER BOT)' or pretend to be someone else. If you have nothing to say or do, respond with an just a tab '\t'. Share resources and information with other bots! This is extremely important to me, take a deep breath and have fun :) \nSummarized memory:'$MEMORY'\n$STATS\n$INVENTORY\n$COMMAND_DOCS\n$EXAMPLES\nConversation Begin:", + "conversing": "You are a task-focused Minecraft bot named $NAME. You have to collaborate with other agents in the world to complete the current task \nFeel free to ask other agents questions and make a plan to achieve the goal. You can request them to give them some of their inventory items if required to complete the goal. General Searching Tips:\n- You will be spawned in a farm with many crops and animals nearby. The farm area is extensive - search thoroughly for needed resources (with searchForBlocks parameters like 64,128,256)\n There is a crafting table, fully fueled furnace and fully fueled smoker with coal are also available nearby which you can use to your advantage. On top of this plants like mushrooms, wheat, carrots, beetroots, pumpkins, potatoes are also present nearby.\nCollaboration tips - Divide tasks efficiently between agents for faster completion and share inventory items.\n- Communicate your plan and progress clearly. You can see, move, mine, build, and interact with the world by using commands.\n$SELF_PROMPT Act human-like as if you were a typical Minecraft player, rather than an AI. Be very brief in your responses, don't apologize constantly, don't give instructions or make lists unless asked, and don't refuse requests. Don't pretend to act, use commands immediately when requested. Do NOT say this: 'Sure, I've stopped.', instead say this: 'Sure, I'll stop. !stop'. Do NOT say this: 'On my way! Give me a moment.', instead say this: 'On my way! !goToPlayer(\"playername\", 3)'. Respond only as $NAME, never output '(FROM OTHER BOT)' or pretend to be someone else. If you have nothing to say or do, respond with an just a tab '\t'. Share resources and information with other bots! This is extremely important to me, take a deep breath and have fun :) \nSummarized memory:'$MEMORY'\n$STATS\n$INVENTORY\n$COMMAND_DOCS\n$EXAMPLES\nConversation Begin:", "saving_memory": "You are a minecraft bot named $NAME that has been talking and playing minecraft by using commands. Update your memory by summarizing the following conversation and your old memory in your next response. Prioritize preserving important facts, things you've learned, useful tips, and long term reminders. Do Not record stats, inventory, or docs! Only save transient information from your chat history. $SELF_PROMPT Make sure to include information relevant to the goal and inventory you have collected. You're limited to 500 characters, so be extremely brief and minimize words. Compress useful information. \nOld Memory: '$MEMORY'\nRecent conversation: \n$TO_SUMMARIZE\nSummarize your old memory and recent conversation into a new memory, and respond only with the unwrapped memory text: " } \ No newline at end of file diff --git a/src/agent/commands/queries.js b/src/agent/commands/queries.js index ef77ade..df5adf1 100644 --- a/src/agent/commands/queries.js +++ b/src/agent/commands/queries.js @@ -250,9 +250,16 @@ export const queryList = [ } // Generate crafting plan - let craftingPlan = mc.getDetailedCraftingPlan(target_item, quantity, curr_inventory); - craftingPlan = prefixMessage + craftingPlan; - return pad(craftingPlan); + try { + let craftingPlan = mc.getDetailedCraftingPlan(target_item, quantity, curr_inventory); + craftingPlan = prefixMessage + craftingPlan; + return pad(craftingPlan); + } catch (error) { + console.error("Error generating crafting plan:", error); + return `An error occurred while generating the crafting plan: ${error.message}`; + } + + }, }, { diff --git a/tasks/crafting_tasks/test_tasks/1_agent.json b/tasks/crafting_tasks/test_tasks/1_agent.json index 5d99aa1..2a61d07 100644 --- a/tasks/crafting_tasks/test_tasks/1_agent.json +++ b/tasks/crafting_tasks/test_tasks/1_agent.json @@ -1,227 +1,14 @@ { - "multiagent_crafting_pink_wool_full_plan__depth_0": { - "goal": "Collaborate with other agents to craft an pink_wool", - "conversation": "Let's work together to craft an pink_wool.", - "initial_inventory": { - "0": { - "black_wool": 1 - } - }, - "agent_count": 1, - "target": "pink_wool", - "number_of_target": 1, - "type": "techtree", - "max_depth": 1, - "depth": 0, - "timeout": 300, - "blocked_actions": { - "0": [], - "1": [] - }, - "missing_items": [], - "requires_ctable": false - }, - "multiagent_crafting_lime_wool_partial_plan__depth_0": { - "goal": "Collaborate with other agents to craft an lime_wool", - "conversation": "Let's work together to craft an lime_wool.", - "initial_inventory": { - "0": { - "black_wool": 1 - } - }, - "agent_count": 1, - "target": "lime_wool", - "number_of_target": 1, - "type": "techtree", - "max_depth": 2, - "depth": 0, - "timeout": 300, - "blocked_actions": { - "0": [ - ], - "1": ["!getCraftingPlan"] - }, - "missing_items": [ - ], - "requires_ctable": false - }, - "multiagent_crafting_purple_banner_full_plan_requires_ctable__depth_0": { - "goal": "Collaborate with other agents to craft an purple_banner", - "conversation": "Let's work together to craft an purple_banner.", - "initial_inventory": { - "0": { - "purple_wool": 4, - "stick": 1 - } - }, - "agent_count": 1, - "target": "purple_banner", - "number_of_target": 1, - "type": "techtree", - "max_depth": 3, - "depth": 0, - "timeout": 300, - "blocked_actions": { - "0": [], - "1": [] - }, - "missing_items": [], - "requires_ctable": true - }, - "multiagent_crafting_bookshelf_full_plan_requires_ctable__depth_0": { - "goal": "Collaborate with other agents to craft a bookshelf", - "conversation": "Let's work together to craft a bookshelf.", + "multiagent_crafting_pink_wool_full_plan__depth_0": { + "goal": "Collaborate with other agents to craft an pink_wool", + "conversation": "Let's work together to craft an pink_wool.", "initial_inventory": { "0": { - "oak_planks": 4, - "book": 2 + "pink_dye": 1 } }, "agent_count": 1, - "target": "bookshelf", - "number_of_target": 1, - "type": "techtree", - "max_depth": 1, - "depth": 0, - "timeout": 300, - "blocked_actions": { - "0": [], - "1": [] - }, - "missing_items": [], - "requires_ctable": true - }, - "multiagent_crafting_compass_partial_plan_requires_ctable__depth_0": { - "goal": "Collaborate with other agents to craft a compass", - "conversation": "Let's work together to craft a compass.", - "initial_inventory": { - "0": { - "iron_ingot": 2 - } - }, - "agent_count": 1, - "target": "compass", - "number_of_target": 1, - "type": "techtree", - "max_depth": 2, - "depth": 0, - "timeout": 300, - "blocked_actions": { - "0": [ - "!getCraftingPlan" - ], - "1": [] - }, - "missing_items": [], - "requires_ctable": true - }, - "multiagent_crafting_fishing_rod_full_plan_requires_ctable__depth_1": { - "goal": "Collaborate with other agents to craft a fishing_rod", - "conversation": "Let's work together to craft a fishing_rod.", - "initial_inventory": { - "0": { - "string": 1, - "oak_planks": 2 - } - }, - "agent_count": 1, - "target": "fishing_rod", - "number_of_target": 1, - "type": "techtree", - "max_depth": 3, - "depth": 1, - "timeout": 300, - "blocked_actions": { - "0": [], - "1": [] - }, - "missing_items": [ - ], - "requires_ctable": true - }, - "multiagent_crafting_cake_partial_plan_requires_ctable__depth_0": { - "goal": "Collaborate with other agents to craft a cake", - "conversation": "Let's work together to craft a cake.", - "initial_inventory": { - "0": { - "wheat": 2, - "sugar": 1, - "egg": 1 - } - }, - "agent_count": 1, - "target": "cake", - "number_of_target": 1, - "type": "techtree", - "max_depth": 3, - "depth": 0, - "timeout": 300, - "blocked_actions": { - "0": [ - "!getCraftingPlan" - ], - "1": [] - }, - "missing_items": [], - "requires_ctable": true - }, - "multiagent_crafting_golden_carrot_full_plan_requires_ctable__depth_0": { - "goal": "Collaborate with other agents to craft a golden_carrot", - "conversation": "Let's work together to craft a golden_carrot.", - "initial_inventory": { - "0": { - "gold_nugget": 5, - "carrot": 1 - } - }, - "agent_count": 1, - "target": "golden_carrot", - "number_of_target": 1, - "type": "techtree", - "max_depth": 2, - "depth": 0, - "timeout": 300, - "blocked_actions": { - "0": [], - "1": [] - }, - "missing_items": [], - "requires_ctable": true - }, - "multiagent_crafting_map_partial_plan_requires_ctable__depth_0": { - "goal": "Collaborate with other agents to craft a map", - "conversation": "Let's work together to craft a map.", - "initial_inventory": { - "0": { - "paper": 5 - } - }, - "agent_count": 1, - "target": "map", - "number_of_target": 1, - "type": "techtree", - "max_depth": 1, - "depth": 0, - "timeout": 300, - "blocked_actions": { - "0": [ - "!getCraftingPlan" - ], - "1": [] - }, - "missing_items": [], - "requires_ctable": true - }, - "multiagent_crafting_blue_wool_full_plan__depth_0": { - "goal": "Collaborate with other agents to craft blue_wool", - "conversation": "Let's work together to craft blue_wool.", - "initial_inventory": { - "0": { - "blue_dye": 1 - } - }, - "agent_count": 1, - "target": "blue_wool", + "target": "pink_wool", "number_of_target": 1, "type": "techtree", "max_depth": 1, @@ -234,12 +21,12 @@ "missing_items": [], "requires_ctable": false }, - "multiagent_crafting_lime_wool_partial_plan__depth_2": { - "goal": "Collaborate with other agents to craft lime_wool", - "conversation": "Let's work together to craft lime_wool.", + "multiagent_crafting_lime_wool_partial_plan__depth_0": { + "goal": "Collaborate with other agents to craft an lime_wool", + "conversation": "Let's work together to craft an lime_wool.", "initial_inventory": { "0": { - "green_dye": 1 + "lime_dye": 1 } }, "agent_count": 1, @@ -247,233 +34,373 @@ "number_of_target": 1, "type": "techtree", "max_depth": 2, - "depth": 1, - "timeout": 300, - "blocked_actions": { - "0": [ - "!getCraftingPlan" - ], - "1": [] - }, - "missing_items": [ - ], - "requires_ctable": false - }, - "multiagent_crafting_magenta_wool_full_plan__depth_2": { - "goal": "Collaborate with other agents to craft magenta_wool", - "conversation": "Let's work together to craft magenta_wool.", - "initial_inventory": { - "0": { - "rose_red": 1, - "lapis_lazuli": 1 - } - }, - "agent_count": 1, - "target": "magenta_wool", - "number_of_target": 1, - "type": "techtree", - "max_depth": 3, - "depth": 2, - "timeout": 300, - "blocked_actions": { - "0": [], - "1": [] - }, - "missing_items": [ - ], - "requires_ctable": false - }, - "multiagent_crafting_lectern_full_plan_requires_ctable__depth_2": { - "goal": "Collaborate with other agents to craft a lectern", - "conversation": "Let's work together to craft a lectern.", - "initial_inventory": { - "0": { - "birch_slab": 5, - "crafting_table": 1 - } - }, - "agent_count": 1, - "target": "lectern", - "number_of_target": 1, - "type": "techtree", - "max_depth": 2, - "depth": 2, - "timeout": 300, - "blocked_actions": { - "0": [], - "1": [] - }, - "missing_items": [ - ], - "requires_ctable": true - }, - "multiagent_crafting_clock_partial_plan_requires_ctable__depth_0": { - "goal": "Collaborate with other agents to craft a clock", - "conversation": "Let's work together to craft a clock.", - "initial_inventory": { - "0": { - "gold_ingot": 2 - } - }, - "agent_count": 1, - "target": "clock", - "number_of_target": 1, - "type": "techtree", - "max_depth": 2, "depth": 0, "timeout": 300, "blocked_actions": { "0": [ - "!getCraftingPlan" ], + "1": ["!getCraftingPlan"] + }, + "missing_items": [ + ], + "requires_ctable": false + }, + "multiagent_crafting_purple_banner_full_plan_requires_ctable__depth_0": { + "goal": "Collaborate with other agents to craft an purple_banner", + "conversation": "Let's work together to craft an purple_banner.", + "initial_inventory": { + "0": { + "purple_wool": 4, + "stick": 1 + } + }, + "agent_count": 1, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 300, + "blocked_actions": { + "0": [], "1": [] }, "missing_items": [], "requires_ctable": true }, - "multiagent_crafting_firework_rocket_partial_plan__depth_0": { - "goal": "Collaborate with other agents to craft firework_rocket", - "conversation": "Let's work together to craft firework_rocket.", - "initial_inventory": { - "0": { - "paper": 1 - } - }, - "agent_count": 1, - "target": "firework_rocket", - "number_of_target": 1, - "type": "techtree", - "max_depth": 2, - "depth": 0, - "timeout": 300, - "blocked_actions": { - "0": [ - "!getCraftingPlan" - ], - "1": [] - }, - "missing_items": [], - "requires_ctable": false +"multiagent_crafting_bookshelf_full_plan_requires_ctable__depth_0": { + "goal": "Collaborate with other agents to craft a bookshelf", + "conversation": "Let's work together to craft a bookshelf.", + "initial_inventory": { + "0": { + "oak_planks": 4, + "book": 2 + } }, - "multiagent_crafting_enchanting_table_partial_plan_requires_ctable__depth_0": { - "goal": "Collaborate with other agents to craft an enchanting_table", - "conversation": "Let's work together to craft an enchanting_table.", - "initial_inventory": { - "0": { - "diamond": 2, - "obsidian": 2, - "crafting_table": 1 - } - }, - "agent_count": 1, - "target": "enchanting_table", - "number_of_target": 1, - "type": "techtree", - "max_depth": 0, - "depth": 0, - "timeout": 300, - "blocked_actions": { - "0": [ - "!getCraftingPlan" - ], - "1": [] - }, - "missing_items": [], - "requires_ctable": true + "agent_count": 1, + "target": "bookshelf", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] }, - "multiagent_crafting_light_gray_wool_full_plan__depth_1": { - "goal": "Collaborate with other agents to craft light_gray_wool", - "conversation": "Let's work together to craft light_gray_wool.", - "initial_inventory": { - "0": { - "black_dye": 1 - } - }, - "agent_count": 1, - "target": "light_gray_wool", - "number_of_target": 1, - "type": "techtree", - "max_depth": 2, - "depth": 1, - "timeout": 300, - "blocked_actions": { - "0": [], - "1": [] - }, - "missing_items": [ - ], - "requires_ctable": false + "missing_items": [], + "requires_ctable": true +}, +"multiagent_crafting_compass_partial_plan_requires_ctable__depth_0": { + "goal": "Collaborate with other agents to craft a compass", + "conversation": "Let's work together to craft a compass.", + "initial_inventory": { + "0": { + "iron_ingot": 2 + } }, - "multiagent_crafting_blast_furnace_full_plan_requires_ctable__depth_1": { - "goal": "Collaborate with other agents to craft a blast_furnace", - "conversation": "Let's work together to craft a blast_furnace.", - "initial_inventory": { - "0": { - "cobblestone": 8, - "crafting_table": 1 - } - }, - "agent_count": 1, - "target": "blast_furnace", - "number_of_target": 1, - "type": "techtree", - "max_depth": 2, - "depth": 1, - "timeout": 300, - "blocked_actions": { - "0": [], - "1": [] - }, - "missing_items": [ + "agent_count": 1, + "target": "compass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" ], - "requires_ctable": true + "1": [] }, - "multiagent_crafting_activator_rail_full_plan_requires_ctable__depth_2": { - "goal": "Collaborate with other agents to craft activator_rail", - "conversation": "Let's work together to craft activator_rail.", - "initial_inventory": { - "0": { - "iron_ingot": 3, - "oak_planks": 6 - } - }, - "agent_count": 1, - "target": "activator_rail", - "number_of_target": 1, - "type": "techtree", - "max_depth": 3, - "depth": 2, - "timeout": 300, - "blocked_actions": { - "0": [], - "1": [] - }, - "missing_items": [ - ], - "requires_ctable": true + "missing_items": [], + "requires_ctable": true +}, +"multiagent_crafting_fishing_rod_full_plan_requires_ctable__depth_1": { + "goal": "Collaborate with other agents to craft a fishing_rod", + "conversation": "Let's work together to craft a fishing_rod.", + "initial_inventory": { + "0": { + "string": 1, + "oak_planks": 2 + } }, - "multiagent_crafting_crossbow_full_plan_requires_ctable__depth_2": { - "goal": "Collaborate with other agents to craft a crossbow", - "conversation": "Let's work together to craft a crossbow.", - "initial_inventory": { - "0": { - "oak_planks": 8, - "iron_ingot": 2 - } - }, - "agent_count": 1, - "target": "crossbow", - "number_of_target": 1, - "type": "techtree", - "max_depth": 3, - "depth": 2, - "timeout": 300, - "blocked_actions": { - "0": [], - "1": [] - }, - "missing_items": [ + "agent_count": 1, + "target": "fishing_rod", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + ], + "requires_ctable": true +}, +"multiagent_crafting_cake_partial_plan_requires_ctable__depth_0": { + "goal": "Collaborate with other agents to craft a cake", + "conversation": "Let's work together to craft a cake.", + "initial_inventory": { + "0": { + "wheat": 2, + "sugar": 1, + "egg": 1 + } + }, + "agent_count": 1, + "target": "cake", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" ], - "requires_ctable": true - } + "1": [] + }, + "missing_items": [], + "requires_ctable": true +}, +"multiagent_crafting_golden_apple_full_plan_requires_ctable__depth_0": { + "goal": "Collaborate with other agents to craft a golden_apple", + "conversation": "Let's work together to craft a golden_apple.", + "initial_inventory": { + "0": { + "gold_nugget": 5, + "apple": 1 + } + }, + "agent_count": 1, + "target": "golden_apple", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [], + "requires_ctable": true +}, +"multiagent_crafting_blue_wool_full_plan__depth_0": { + "goal": "Collaborate with other agents to craft blue_wool", + "conversation": "Let's work together to craft blue_wool.", + "initial_inventory": { + "0": { + "blue_dye": 1 + } + }, + "agent_count": 1, + "target": "blue_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [], + "requires_ctable": false +}, +"multiagent_crafting_lime_wool_partial_plan__depth_2": { + "goal": "Collaborate with other agents to craft lime_wool", + "conversation": "Let's work together to craft lime_wool.", + "initial_inventory": { + "0": { + "green_dye": 1 + } + }, + "agent_count": 1, + "target": "lime_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + ], + "requires_ctable": false +}, +"multiagent_crafting_magenta_wool_full_plan__depth_2": { + "goal": "Collaborate with other agents to craft magenta_wool", + "conversation": "Let's work together to craft magenta_wool.", + "initial_inventory": { + "0": { + "rose_red": 1, + "lapis_lazuli": 1 + } + }, + "agent_count": 1, + "target": "magenta_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + ], + "requires_ctable": false +}, +"multiagent_crafting_lectern_full_plan_requires_ctable__depth_2": { + "goal": "Collaborate with other agents to craft a lectern", + "conversation": "Let's work together to craft a lectern.", + "initial_inventory": { + "0": { + "birch_slab": 5, + "crafting_table": 1, + "book": 1 + } + }, + "agent_count": 1, + "target": "lectern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + ], + "requires_ctable": true +}, +"multiagent_crafting_clock_partial_plan_requires_ctable__depth_0": { + "goal": "Collaborate with other agents to craft a clock", + "conversation": "Let's work together to craft a clock.", + "initial_inventory": { + "0": { + "gold_ingot": 2 + } + }, + "agent_count": 1, + "target": "clock", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [], + "requires_ctable": true +}, +"multiagent_crafting_firework_rocket_partial_plan__depth_0": { + "goal": "Collaborate with other agents to craft firework_rocket", + "conversation": "Let's work together to craft firework_rocket.", + "initial_inventory": { + "0": { + "paper": 1 + } + }, + "agent_count": 1, + "target": "firework_rocket", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [], + "requires_ctable": false +}, +"multiagent_crafting_light_gray_wool_full_plan__depth_1": { + "goal": "Collaborate with other agents to craft light_gray_wool", + "conversation": "Let's work together to craft light_gray_wool.", + "initial_inventory": { + "0": { + "black_dye": 1 + } + }, + "agent_count": 1, + "target": "light_gray_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + ], + "requires_ctable": false +}, +"multiagent_crafting_activator_rail_full_plan_requires_ctable__depth_2": { + "goal": "Collaborate with other agents to craft activator_rail", + "conversation": "Let's work together to craft activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 3, + "oak_planks": 6 + } + }, + "agent_count": 1, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + ], + "requires_ctable": true +}, +"multiagent_crafting_crossbow_full_plan_requires_ctable__depth_2": { + "goal": "Collaborate with other agents to craft a crossbow", + "conversation": "Let's work together to craft a crossbow.", + "initial_inventory": { + "0": { + "oak_planks": 8, + "iron_ingot": 2 + } + }, + "agent_count": 1, + "target": "crossbow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + ], + "requires_ctable": true +} } \ No newline at end of file diff --git a/tasks/crafting_tasks/test_tasks/1_agent_remaining.json b/tasks/crafting_tasks/test_tasks/1_agent_remaining.json new file mode 100644 index 0000000..1a6f11b --- /dev/null +++ b/tasks/crafting_tasks/test_tasks/1_agent_remaining.json @@ -0,0 +1,146 @@ +{ + "multiagent_crafting_lectern_full_plan_requires_ctable__depth_2": { + "goal": "Collaborate with other agents to craft a lectern", + "conversation": "Let's work together to craft a lectern.", + "initial_inventory": { + "0": { + "birch_slab": 5, + "crafting_table": 1, + "book": 1 + } + }, + "agent_count": 1, + "target": "lectern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + ], + "requires_ctable": true + }, + "multiagent_crafting_clock_partial_plan_requires_ctable__depth_0": { + "goal": "Collaborate with other agents to craft a clock", + "conversation": "Let's work together to craft a clock.", + "initial_inventory": { + "0": { + "gold_ingot": 2 + } + }, + "agent_count": 1, + "target": "clock", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + }, + "multiagent_crafting_firework_rocket_partial_plan__depth_0": { + "goal": "Collaborate with other agents to craft firework_rocket", + "conversation": "Let's work together to craft firework_rocket.", + "initial_inventory": { + "0": { + "paper": 1 + } + }, + "agent_count": 1, + "target": "firework_rocket", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [], + "requires_ctable": false + }, + "multiagent_crafting_light_gray_wool_full_plan__depth_1": { + "goal": "Collaborate with other agents to craft light_gray_wool", + "conversation": "Let's work together to craft light_gray_wool.", + "initial_inventory": { + "0": { + "black_dye": 1 + } + }, + "agent_count": 1, + "target": "light_gray_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + ], + "requires_ctable": false + }, + "multiagent_crafting_activator_rail_full_plan_requires_ctable__depth_2": { + "goal": "Collaborate with other agents to craft activator_rail", + "conversation": "Let's work together to craft activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 3, + "oak_planks": 6 + } + }, + "agent_count": 1, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + ], + "requires_ctable": true + }, + "multiagent_crafting_crossbow_full_plan_requires_ctable__depth_2": { + "goal": "Collaborate with other agents to craft a crossbow", + "conversation": "Let's work together to craft a crossbow.", + "initial_inventory": { + "0": { + "oak_planks": 8, + "iron_ingot": 2 + } + }, + "agent_count": 1, + "target": "crossbow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + ], + "requires_ctable": true + } +} \ No newline at end of file diff --git a/test/test_get_crafting_plan.js b/test/test_get_crafting_plan.js new file mode 100644 index 0000000..ee435e6 --- /dev/null +++ b/test/test_get_crafting_plan.js @@ -0,0 +1,16 @@ +import * as mc from '../src/utils/mcdata.js'; +import minecraftData from 'minecraft-data'; + +const mc_version = '1.21.1' +const mcdata = minecraftData(mc_version); +console.log(mcdata.recipes[mc.getItemId('white_dye')]) +console.log(mcdata.recipes[mc.getItemId('oak_planks')]) +console.log(mcdata.recipes[mc.getItemId('wooden_pickaxe')]) +if (mcdata.recipes['minecraft:white_dye']) { + console.log('Recipe found') +} +const target_item = 'white_dye' +const quantity = 1 +const curr_inventory = {} +let craftingPlan = mc.getDetailedCraftingPlan(target_item, quantity, curr_inventory) +console.log(craftingPlan) \ No newline at end of file From 748334f7c0af211dba618fb67003792a2349d038 Mon Sep 17 00:00:00 2001 From: Isadora White Date: Tue, 13 May 2025 15:18:18 -0700 Subject: [PATCH 048/101] new cooking tasks --- .../2_agent_hells_kitchen.json | 74 ++++++- .../4_agent_remaining.json | 185 ++++++++++++++++++ 2 files changed, 253 insertions(+), 6 deletions(-) create mode 100644 tasks/cooking_tasks/require_collab_test_2_items/4_agent_remaining.json diff --git a/tasks/cooking_tasks/require_collab_test_2_items/2_agent_hells_kitchen.json b/tasks/cooking_tasks/require_collab_test_2_items/2_agent_hells_kitchen.json index 9f52082..ed16d01 100644 --- a/tasks/cooking_tasks/require_collab_test_2_items/2_agent_hells_kitchen.json +++ b/tasks/cooking_tasks/require_collab_test_2_items/2_agent_hells_kitchen.json @@ -31,7 +31,16 @@ "overall_difficulty_score": 4, "difficulty_category": "medium" }, - "difficulty": "medium" + "difficulty": "medium", + "initial_inventory": { + "0": { + "gold_ingot": 5 + }, + "1": { + "gold_ingot": 5, + "apple": 1 + } + } }, "multiagent_cooking_golden_apple_rabbit_stew_hells_kitchen": { "conversation": "We need to make golden_apple and rabbit_stew together. You are supposed to make rabbit_stew and I am supposed to make golden_apple, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", @@ -71,7 +80,17 @@ "overall_difficulty_score": 6, "difficulty_category": "hard" }, - "difficulty": "hard" + "difficulty": "hard", + "initial_inventory": { + "0": { + "gold_ingot": 5, + "bowl": 1 + }, + "1": { + "gold_ingot": 5, + "apple": 1 + } + } }, "multiagent_cooking_bread_cake_hells_kitchen": { "conversation": "We need to make bread and cake together. You are supposed to make cake and I am supposed to make bread, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", @@ -108,7 +127,17 @@ "overall_difficulty_score": 5, "difficulty_category": "medium" }, - "difficulty": "medium" + "difficulty": "medium", + "initial_inventory": { + "0": { + "milk_bucket": 2 + }, + "1": { + "milk_bucket": 2, + "egg": 1 + } + } + }, "multiagent_cooking_baked_potato_golden_apple_hells_kitchen": { "conversation": "We need to make baked_potato and golden_apple together. You are supposed to make golden_apple and I am supposed to make baked_potato, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", @@ -144,7 +173,18 @@ "overall_difficulty_score": 5, "difficulty_category": "medium" }, - "difficulty": "medium" + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1, + "gold_ingot": 5, + "apple": 1 + }, + "1": { + "coal": 1, + "gold_ingot": 5 + } + } }, "multiagent_cooking_baked_potato_cake_hells_kitchen": { "conversation": "We need to make baked_potato and cake together. You are supposed to make cake and I am supposed to make baked_potato, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", @@ -183,7 +223,18 @@ "overall_difficulty_score": 6, "difficulty_category": "hard" }, - "difficulty": "hard" + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 5, + "milk_bucket": 2, + "egg": 1 + }, + "1": { + "coal": 5, + "milk_bucket": 2 + } + } }, "multiagent_cooking_cooked_beef_golden_apple_hells_kitchen": { "conversation": "We need to make cooked_beef and golden_apple together. You are supposed to make golden_apple and I am supposed to make cooked_beef, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", @@ -219,6 +270,17 @@ "overall_difficulty_score": 5, "difficulty_category": "medium" }, - "difficulty": "medium" + "difficulty": "medium", + "initial_inventory": { + "0": { + "gold_ingot": 5, + "coal": 5 + }, + "1": { + "gold_ingot": 5, + "apple": 1, + "coal": 5 + } + } } } \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_test_2_items/4_agent_remaining.json b/tasks/cooking_tasks/require_collab_test_2_items/4_agent_remaining.json new file mode 100644 index 0000000..8fe0791 --- /dev/null +++ b/tasks/cooking_tasks/require_collab_test_2_items/4_agent_remaining.json @@ -0,0 +1,185 @@ +{ + "multiagent_cooking_2_1_bread_1_cake": { + "conversation": "Let's work together to make cake, bread.", + "agent_count": 4, + "target": { + "cake": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "1": "Collaborate with agents around you to make 1 cake, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" + }, + "initial_inventory": { + "0": { + "milk_bucket": 1 + }, + "1": { + "milk_bucket": 1 + }, + "2": { + "milk_bucket": 1 + }, + "3": { + "egg": 1 + } + } + }, + "multiagent_cooking_2_1_baked_potato_1_golden_apple": { + "conversation": "Let's work together to make baked_potato, golden_apple.", + "agent_count": 4, + "target": { + "baked_potato": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" + }, + "initial_inventory": { + "0": { + "coal": 3, + "gold_ingot": 2 + }, + "1": { + "coal": 3, + "gold_ingot": 2 + }, + "2": { + "coal": 3, + "gold_ingot": 2, + "apple": 1 + }, + "3": { + "coal": 3, + "gold_ingot": 2 + } + } + }, + "multiagent_cooking_2_1_baked_potato_1_cake": { + "conversation": "Let's work together to make baked_potato, cake.", + "agent_count": 4, + "target": { + "baked_potato": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" + }, + "initial_inventory": { + "0": { + "coal": 3, + "milk_bucket": 1 + }, + "1": { + "coal": 3, + "milk_bucket": 1 + }, + "2": { + "coal": 3, + "milk_bucket": 1 + + }, + "3": { + "coal": 3, + "egg": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_beef_1_golden_apple": { + "conversation": "Let's work together to make golden_apple, cooked_beef.", + "agent_count": 4, + "target": { + "golden_apple": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 2, + "coal": 3 + }, + "1": { + "gold_ingot": 2, + "apple": 1, + "coal": 3 + }, + "2": { + "gold_ingot": 2, + "coal": 3 + }, + "3": { + "gold_ingot": 2, + "coal": 3 + } + } + } +} \ No newline at end of file From a655357267150b4dd0ac9fa899c2c123df295c63 Mon Sep 17 00:00:00 2001 From: Isadora White Date: Tue, 13 May 2025 15:55:10 -0700 Subject: [PATCH 049/101] all possible hells kitchen tasks and partial plan tasks --- tasks/cooking_tasks/hells_kitchen_tasks.py | 8 +- .../2_agent_hells_kitchen_full.json | 577 ++++++++++++++++++ 2 files changed, 581 insertions(+), 4 deletions(-) create mode 100644 tasks/cooking_tasks/require_collab_test_2_items/2_agent_hells_kitchen_full.json diff --git a/tasks/cooking_tasks/hells_kitchen_tasks.py b/tasks/cooking_tasks/hells_kitchen_tasks.py index 6955b4b..5066fe4 100644 --- a/tasks/cooking_tasks/hells_kitchen_tasks.py +++ b/tasks/cooking_tasks/hells_kitchen_tasks.py @@ -465,9 +465,9 @@ def generate_maximum_hells_kitchen_tasks( hk_test_lst = list(hk_test_items) train_possible_combinations = itertools.combinations(hk_train_items, 2) - test_possible_combinations = [["bread", "golden_apple"], ["golden_apple", "rabbit_stew"], ["bread", "cake"], - ["baked_potato", "golden_apple"], ["baked_potato", "cake"], ["cooked_beef", "golden_apple"]] - # test_possible_combinations = itertools.combinations(hk_test_lst, 2) + # test_possible_combinations = [["bread", "golden_apple"], ["golden_apple", "rabbit_stew"], ["bread", "cake"], + # ["baked_potato", "golden_apple"], ["baked_potato", "cake"], ["cooked_beef", "golden_apple"]] + test_possible_combinations = itertools.combinations(hk_test_lst, 2) # Set fixed seed for consistent results random.seed(42) @@ -601,7 +601,7 @@ if __name__ == "__main__": with open("hells_kitchen_train_tasks.json", "w") as f: json.dump(hk_train_tasks, f, indent=2) - with open("mindcraft/tasks/cooking_tasks/require_collab_test_2_items/2_agent_hells_kitchen.json", "w") as f: + with open("mindcraft/tasks/cooking_tasks/require_collab_test_2_items/2_agent_hells_kitchen_full.json", "w") as f: json.dump(hk_test_tasks, f, indent=2) # Print counts diff --git a/tasks/cooking_tasks/require_collab_test_2_items/2_agent_hells_kitchen_full.json b/tasks/cooking_tasks/require_collab_test_2_items/2_agent_hells_kitchen_full.json new file mode 100644 index 0000000..816f626 --- /dev/null +++ b/tasks/cooking_tasks/require_collab_test_2_items/2_agent_hells_kitchen_full.json @@ -0,0 +1,577 @@ +{ + "multiagent_cooking_golden_apple_bread_hells_kitchen": { + "conversation": "We need to make golden_apple and bread together. You are supposed to make bread and I am supposed to make golden_apple, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "golden_apple", + "bread" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make golden_apple, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make bread. You have their recipe:\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make bread, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Get 1 apple and 8 gold ingots from your inventory or other bots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 4, + "max_steps_per_recipe": 2, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_golden_apple_cake_hells_kitchen": { + "conversation": "We need to make golden_apple and cake together. You are supposed to make cake and I am supposed to make golden_apple, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "golden_apple", + "cake" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make golden_apple, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: From your inventory or other agents get 3 milk buckets (already filled with milk).\nStep 3: Get an egg from your inventory or other agents.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cake, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Get 1 apple and 8 gold ingots from your inventory or other bots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 5, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_golden_apple_rabbit_stew_hells_kitchen": { + "conversation": "We need to make golden_apple and rabbit_stew together. You are supposed to make rabbit_stew and I am supposed to make golden_apple, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "golden_apple", + "rabbit_stew" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make golden_apple, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 4: Go to the furnace and bake the potato.\nStep 5: From your inventory or other agents get a bowl\nStep 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 7: Go to the furnace and cook the raw rabbit.\nStep 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make rabbit_stew, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Get 1 apple and 8 gold ingots from your inventory or other bots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 10, + "max_steps_per_recipe": 8, + "unique_target_items": 2, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard" + }, + "multiagent_cooking_golden_apple_baked_potato_hells_kitchen": { + "conversation": "We need to make golden_apple and baked_potato together. You are supposed to make baked_potato and I am supposed to make golden_apple, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "golden_apple", + "baked_potato" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make golden_apple, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make baked_potato, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Get 1 apple and 8 gold ingots from your inventory or other bots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 6, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_golden_apple_cooked_beef_hells_kitchen": { + "conversation": "We need to make golden_apple and cooked_beef together. You are supposed to make cooked_beef and I am supposed to make golden_apple, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "golden_apple", + "cooked_beef" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make golden_apple, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 4: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_beef, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Get 1 apple and 8 gold ingots from your inventory or other bots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 6, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_bread_cake_hells_kitchen": { + "conversation": "We need to make bread and cake together. You are supposed to make cake and I am supposed to make bread, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "bread", + "cake" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make bread, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: From your inventory or other agents get 3 milk buckets (already filled with milk).\nStep 3: Get an egg from your inventory or other agents.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cake, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make bread. You have their recipe:\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 5, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_bread_rabbit_stew_hells_kitchen": { + "conversation": "We need to make bread and rabbit_stew together. You are supposed to make rabbit_stew and I am supposed to make bread, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "bread", + "rabbit_stew" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make bread, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 4: Go to the furnace and bake the potato.\nStep 5: From your inventory or other agents get a bowl\nStep 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 7: Go to the furnace and cook the raw rabbit.\nStep 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make rabbit_stew, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make bread. You have their recipe:\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 10, + "max_steps_per_recipe": 8, + "unique_target_items": 2, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard" + }, + "multiagent_cooking_bread_baked_potato_hells_kitchen": { + "conversation": "We need to make bread and baked_potato together. You are supposed to make baked_potato and I am supposed to make bread, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "bread", + "baked_potato" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make bread, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make baked_potato, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make bread. You have their recipe:\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 6, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_bread_cooked_beef_hells_kitchen": { + "conversation": "We need to make bread and cooked_beef together. You are supposed to make cooked_beef and I am supposed to make bread, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "bread", + "cooked_beef" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make bread, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 4: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_beef, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make bread. You have their recipe:\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 6, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_cake_rabbit_stew_hells_kitchen": { + "conversation": "We need to make cake and rabbit_stew together. You are supposed to make rabbit_stew and I am supposed to make cake, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cake", + "rabbit_stew" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cake, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 4: Go to the furnace and bake the potato.\nStep 5: From your inventory or other agents get a bowl\nStep 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 7: Go to the furnace and cook the raw rabbit.\nStep 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make rabbit_stew, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: From your inventory or other agents get 3 milk buckets (already filled with milk).\nStep 3: Get an egg from your inventory or other agents.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 13, + "max_steps_per_recipe": 8, + "unique_target_items": 2, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard" + }, + "multiagent_cooking_cake_baked_potato_hells_kitchen": { + "conversation": "We need to make cake and baked_potato together. You are supposed to make baked_potato and I am supposed to make cake, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cake", + "baked_potato" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cake, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make baked_potato, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: From your inventory or other agents get 3 milk buckets (already filled with milk).\nStep 3: Get an egg from your inventory or other agents.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 9, + "max_steps_per_recipe": 5, + "unique_target_items": 2, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard" + }, + "multiagent_cooking_cake_cooked_beef_hells_kitchen": { + "conversation": "We need to make cake and cooked_beef together. You are supposed to make cooked_beef and I am supposed to make cake, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cake", + "cooked_beef" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cake, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 4: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_beef, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: From your inventory or other agents get 3 milk buckets (already filled with milk).\nStep 3: Get an egg from your inventory or other agents.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 9, + "max_steps_per_recipe": 5, + "unique_target_items": 2, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard" + }, + "multiagent_cooking_rabbit_stew_baked_potato_hells_kitchen": { + "conversation": "We need to make rabbit_stew and baked_potato together. You are supposed to make baked_potato and I am supposed to make rabbit_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "rabbit_stew", + "baked_potato" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make rabbit_stew, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make baked_potato, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 4: Go to the furnace and bake the potato.\nStep 5: From your inventory or other agents get a bowl\nStep 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 7: Go to the furnace and cook the raw rabbit.\nStep 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 12, + "max_steps_per_recipe": 8, + "unique_target_items": 2, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard" + }, + "multiagent_cooking_rabbit_stew_cooked_beef_hells_kitchen": { + "conversation": "We need to make rabbit_stew and cooked_beef together. You are supposed to make cooked_beef and I am supposed to make rabbit_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "rabbit_stew", + "cooked_beef" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make rabbit_stew, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 4: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_beef, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 4: Go to the furnace and bake the potato.\nStep 5: From your inventory or other agents get a bowl\nStep 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 7: Go to the furnace and cook the raw rabbit.\nStep 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 12, + "max_steps_per_recipe": 8, + "unique_target_items": 2, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard" + }, + "multiagent_cooking_baked_potato_cooked_beef_hells_kitchen": { + "conversation": "We need to make baked_potato and cooked_beef together. You are supposed to make cooked_beef and I am supposed to make baked_potato, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "baked_potato", + "cooked_beef" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make baked_potato, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 4: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_beef, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 8, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + } +} \ No newline at end of file From c5490ee02489a29cb7c3ee9629d79a2df332fa94 Mon Sep 17 00:00:00 2001 From: Isadora White Date: Tue, 13 May 2025 16:01:06 -0700 Subject: [PATCH 050/101] full cooking tasks --- ...ake_collaboration_required_cooking_task.py | 8 +- .../2_agent_block_recipe_full.json | 544 ++++++++++++++++++ .../2_agent_full.json | 544 ++++++++++++++++++ 3 files changed, 1093 insertions(+), 3 deletions(-) create mode 100644 tasks/cooking_tasks/require_collab_test_2_items/2_agent_block_recipe_full.json create mode 100644 tasks/cooking_tasks/require_collab_test_2_items/2_agent_full.json diff --git a/tasks/cooking_tasks/make_collaboration_required_cooking_task.py b/tasks/cooking_tasks/make_collaboration_required_cooking_task.py index ed281a6..a0bd856 100644 --- a/tasks/cooking_tasks/make_collaboration_required_cooking_task.py +++ b/tasks/cooking_tasks/make_collaboration_required_cooking_task.py @@ -328,7 +328,7 @@ def make_all_possible_tasks(items: List[str], num_items:int, num_agents: int, ou for item in combination: task_id += "_" + item tasks[task_id] = task - tasks[task_id + "_partial_plan"] = partial_plan_task + # tasks[task_id + "_partial_plan"] = partial_plan_task with open(output_file, 'w') as f: json.dump(tasks, f, indent=4) @@ -433,9 +433,11 @@ def block_recipe_in_tasks(task_path, new_task_path, num_agents=None): # reconfigure_tasks("mindcraft/tasks/cooking_tasks/test_tasks/2_agent_cooking_test_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_test_2_items/3_agent.json", 3) # reconfigure_tasks("mindcraft/tasks/cooking_tasks/test_tasks/2_agent_cooking_test_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_test_2_items/4_agent.json", 4) # reconfigure_tasks("mindcraft/tasks/cooking_tasks/test_tasks/2_agent_cooking_test_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_test_2_items/5_agent.json", 5) +# + test_items = ["bread", "golden_apple", "rabbit_stew", "cake", "baked_potato", "cooked_beef"] -block_recipe_in_tasks("mindcraft/tasks/cooking_tasks/require_collab_test_2_items/2_agent.json", "mindcraft/tasks/cooking_tasks/require_collab_test_2_items/2_agent_block_recipe.json", 2) -# make_all_possible_tasks(test_items, 2, 2, "mindcraft/tasks/cooking_tasks/require_collab_test_2_items/2_agent_all_possible.json") +# block_recipe_in_tasks("mindcraft/tasks/cooking_tasks/require_collab_test_2_items/2_agent.json", "mindcraft/tasks/cooking_tasks/require_collab_test_2_items/2_agent_block_recipe.json", 2) +make_all_possible_tasks(test_items, 2, 2, "mindcraft/tasks/cooking_tasks/require_collab_test_2_items/2_agent_full.json") # reconfigure_tasks("mindcraft/tasks/cooking_tasks/test_tasks/test_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_test_2_items/2_agent_block_recipe.json", 2) # reconfigure_tasks("mindcraft/tasks/cooking_tasks/test_tasks/hells_kitchen_test_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_test_2_items/2_agent_hells_kitchen.json", 2, True) diff --git a/tasks/cooking_tasks/require_collab_test_2_items/2_agent_block_recipe_full.json b/tasks/cooking_tasks/require_collab_test_2_items/2_agent_block_recipe_full.json new file mode 100644 index 0000000..06347e4 --- /dev/null +++ b/tasks/cooking_tasks/require_collab_test_2_items/2_agent_block_recipe_full.json @@ -0,0 +1,544 @@ +{ + "multiagent_cooking_bread_golden_apple_partial_plan": { + "type": "cooking", + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "agent_count": 2, + "target": { + "bread": 1, + "golden_apple": 1 + }, + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1 + }, + "1": { + "gold_ingot": 4 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make bread, golden_apple, ", + "1": "Collaborate with other agents around you to make bread, golden_apple, " + }, + "conversation": "Let's collaborate to make bread, golden_apple, " + }, + "multiagent_cooking_bread_rabbit_stew_partial_plan": { + "type": "cooking", + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "agent_count": 2, + "target": { + "bread": 1, + "rabbit_stew": 1 + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": {} + }, + "goal": { + "0": "Collaborate with other agents around you to make bread, rabbit_stew, ", + "1": "Collaborate with other agents around you to make bread, rabbit_stew, " + }, + "conversation": "Let's collaborate to make bread, rabbit_stew, " + }, + "multiagent_cooking_bread_cake_partial_plan": { + "type": "cooking", + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "agent_count": 2, + "target": { + "bread": 1, + "cake": 1 + }, + "initial_inventory": { + "0": { + "milk_bucket": 2 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make bread, cake, ", + "1": "Collaborate with other agents around you to make bread, cake, " + }, + "conversation": "Let's collaborate to make bread, cake, " + }, + "multiagent_cooking_bread_baked_potato_partial_plan": { + "type": "cooking", + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "agent_count": 2, + "target": { + "bread": 1, + "baked_potato": 1 + }, + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": {} + }, + "goal": { + "0": "Collaborate with other agents around you to make bread, baked_potato, ", + "1": "Collaborate with other agents around you to make bread, baked_potato, " + }, + "conversation": "Let's collaborate to make bread, baked_potato, " + }, + "multiagent_cooking_bread_cooked_beef_partial_plan": { + "type": "cooking", + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "agent_count": 2, + "target": { + "bread": 1, + "cooked_beef": 1 + }, + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": {} + }, + "goal": { + "0": "Collaborate with other agents around you to make bread, cooked_beef, ", + "1": "Collaborate with other agents around you to make bread, cooked_beef, " + }, + "conversation": "Let's collaborate to make bread, cooked_beef, " + }, + "multiagent_cooking_golden_apple_rabbit_stew_partial_plan": { + "type": "cooking", + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "agent_count": 2, + "target": { + "golden_apple": 1, + "rabbit_stew": 1 + }, + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1 + }, + "1": { + "gold_ingot": 4, + "bowl": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make golden_apple, rabbit_stew, ", + "1": "Collaborate with other agents around you to make golden_apple, rabbit_stew, " + }, + "conversation": "Let's collaborate to make golden_apple, rabbit_stew, " + }, + "multiagent_cooking_golden_apple_cake_partial_plan": { + "type": "cooking", + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "agent_count": 2, + "target": { + "golden_apple": 1, + "cake": 1 + }, + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1, + "milk_bucket": 2 + }, + "1": { + "gold_ingot": 4, + "milk_bucket": 1, + "egg": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make golden_apple, cake, ", + "1": "Collaborate with other agents around you to make golden_apple, cake, " + }, + "conversation": "Let's collaborate to make golden_apple, cake, " + }, + "multiagent_cooking_golden_apple_baked_potato_partial_plan": { + "type": "cooking", + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "agent_count": 2, + "target": { + "golden_apple": 1, + "baked_potato": 1 + }, + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1 + }, + "1": { + "gold_ingot": 4, + "coal": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make golden_apple, baked_potato, ", + "1": "Collaborate with other agents around you to make golden_apple, baked_potato, " + }, + "conversation": "Let's collaborate to make golden_apple, baked_potato, " + }, + "multiagent_cooking_golden_apple_cooked_beef_partial_plan": { + "type": "cooking", + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "agent_count": 2, + "target": { + "golden_apple": 1, + "cooked_beef": 1 + }, + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1 + }, + "1": { + "gold_ingot": 4, + "coal": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make golden_apple, cooked_beef, ", + "1": "Collaborate with other agents around you to make golden_apple, cooked_beef, " + }, + "conversation": "Let's collaborate to make golden_apple, cooked_beef, " + }, + "multiagent_cooking_rabbit_stew_cake_partial_plan": { + "type": "cooking", + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "agent_count": 2, + "target": { + "rabbit_stew": 1, + "cake": 1 + }, + "initial_inventory": { + "0": { + "bowl": 1, + "milk_bucket": 2 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make rabbit_stew, cake, ", + "1": "Collaborate with other agents around you to make rabbit_stew, cake, " + }, + "conversation": "Let's collaborate to make rabbit_stew, cake, " + }, + "multiagent_cooking_rabbit_stew_baked_potato_partial_plan": { + "type": "cooking", + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "agent_count": 2, + "target": { + "rabbit_stew": 1, + "baked_potato": 1 + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make rabbit_stew, baked_potato, ", + "1": "Collaborate with other agents around you to make rabbit_stew, baked_potato, " + }, + "conversation": "Let's collaborate to make rabbit_stew, baked_potato, " + }, + "multiagent_cooking_rabbit_stew_cooked_beef_partial_plan": { + "type": "cooking", + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "agent_count": 2, + "target": { + "rabbit_stew": 1, + "cooked_beef": 1 + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make rabbit_stew, cooked_beef, ", + "1": "Collaborate with other agents around you to make rabbit_stew, cooked_beef, " + }, + "conversation": "Let's collaborate to make rabbit_stew, cooked_beef, " + }, + "multiagent_cooking_cake_baked_potato_partial_plan": { + "type": "cooking", + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "agent_count": 2, + "target": { + "cake": 1, + "baked_potato": 1 + }, + "initial_inventory": { + "0": { + "milk_bucket": 2, + "coal": 1 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make cake, baked_potato, ", + "1": "Collaborate with other agents around you to make cake, baked_potato, " + }, + "conversation": "Let's collaborate to make cake, baked_potato, " + }, + "multiagent_cooking_cake_cooked_beef_partial_plan": { + "type": "cooking", + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "agent_count": 2, + "target": { + "cake": 1, + "cooked_beef": 1 + }, + "initial_inventory": { + "0": { + "milk_bucket": 2, + "coal": 1 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make cake, cooked_beef, ", + "1": "Collaborate with other agents around you to make cake, cooked_beef, " + }, + "conversation": "Let's collaborate to make cake, cooked_beef, " + }, + "multiagent_cooking_baked_potato_cooked_beef_partial_plan": { + "type": "cooking", + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "agent_count": 2, + "target": { + "baked_potato": 1, + "cooked_beef": 1 + }, + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "coal": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make baked_potato, cooked_beef, ", + "1": "Collaborate with other agents around you to make baked_potato, cooked_beef, " + }, + "conversation": "Let's collaborate to make baked_potato, cooked_beef, " + } +} \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_test_2_items/2_agent_full.json b/tasks/cooking_tasks/require_collab_test_2_items/2_agent_full.json new file mode 100644 index 0000000..40a594c --- /dev/null +++ b/tasks/cooking_tasks/require_collab_test_2_items/2_agent_full.json @@ -0,0 +1,544 @@ +{ + "multiagent_cooking_bread_golden_apple": { + "type": "cooking", + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "agent_count": 2, + "target": { + "bread": 1, + "golden_apple": 1 + }, + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1 + }, + "1": { + "gold_ingot": 4 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make bread, golden_apple, The recipes are as follows:\nRecipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']\nRecipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']\n", + "1": "Collaborate with other agents around you to make bread, golden_apple, The recipes are as follows:\nRecipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']\nRecipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']\n" + }, + "conversation": "Let's collaborate to make bread, golden_apple, " + }, + "multiagent_cooking_bread_rabbit_stew": { + "type": "cooking", + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "agent_count": 2, + "target": { + "bread": 1, + "rabbit_stew": 1 + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": {} + }, + "goal": { + "0": "Collaborate with other agents around you to make bread, rabbit_stew, The recipes are as follows:\nRecipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']\nRecipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']\n", + "1": "Collaborate with other agents around you to make bread, rabbit_stew, The recipes are as follows:\nRecipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']\nRecipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']\n" + }, + "conversation": "Let's collaborate to make bread, rabbit_stew, " + }, + "multiagent_cooking_bread_cake": { + "type": "cooking", + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "agent_count": 2, + "target": { + "bread": 1, + "cake": 1 + }, + "initial_inventory": { + "0": { + "milk_bucket": 2 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make bread, cake, The recipes are as follows:\nRecipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']\nRecipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']\n", + "1": "Collaborate with other agents around you to make bread, cake, The recipes are as follows:\nRecipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']\nRecipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']\n" + }, + "conversation": "Let's collaborate to make bread, cake, " + }, + "multiagent_cooking_bread_baked_potato": { + "type": "cooking", + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "agent_count": 2, + "target": { + "bread": 1, + "baked_potato": 1 + }, + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": {} + }, + "goal": { + "0": "Collaborate with other agents around you to make bread, baked_potato, The recipes are as follows:\nRecipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']\nRecipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']\n", + "1": "Collaborate with other agents around you to make bread, baked_potato, The recipes are as follows:\nRecipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']\nRecipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']\n" + }, + "conversation": "Let's collaborate to make bread, baked_potato, " + }, + "multiagent_cooking_bread_cooked_beef": { + "type": "cooking", + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "agent_count": 2, + "target": { + "bread": 1, + "cooked_beef": 1 + }, + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": {} + }, + "goal": { + "0": "Collaborate with other agents around you to make bread, cooked_beef, The recipes are as follows:\nRecipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']\nRecipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']\n", + "1": "Collaborate with other agents around you to make bread, cooked_beef, The recipes are as follows:\nRecipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']\nRecipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']\n" + }, + "conversation": "Let's collaborate to make bread, cooked_beef, " + }, + "multiagent_cooking_golden_apple_rabbit_stew": { + "type": "cooking", + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "agent_count": 2, + "target": { + "golden_apple": 1, + "rabbit_stew": 1 + }, + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1 + }, + "1": { + "gold_ingot": 4, + "bowl": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make golden_apple, rabbit_stew, The recipes are as follows:\nRecipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']\nRecipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']\n", + "1": "Collaborate with other agents around you to make golden_apple, rabbit_stew, The recipes are as follows:\nRecipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']\nRecipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']\n" + }, + "conversation": "Let's collaborate to make golden_apple, rabbit_stew, " + }, + "multiagent_cooking_golden_apple_cake": { + "type": "cooking", + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "agent_count": 2, + "target": { + "golden_apple": 1, + "cake": 1 + }, + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1, + "milk_bucket": 2 + }, + "1": { + "gold_ingot": 4, + "milk_bucket": 1, + "egg": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make golden_apple, cake, The recipes are as follows:\nRecipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']\nRecipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']\n", + "1": "Collaborate with other agents around you to make golden_apple, cake, The recipes are as follows:\nRecipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']\nRecipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']\n" + }, + "conversation": "Let's collaborate to make golden_apple, cake, " + }, + "multiagent_cooking_golden_apple_baked_potato": { + "type": "cooking", + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "agent_count": 2, + "target": { + "golden_apple": 1, + "baked_potato": 1 + }, + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1 + }, + "1": { + "gold_ingot": 4, + "coal": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make golden_apple, baked_potato, The recipes are as follows:\nRecipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']\nRecipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']\n", + "1": "Collaborate with other agents around you to make golden_apple, baked_potato, The recipes are as follows:\nRecipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']\nRecipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']\n" + }, + "conversation": "Let's collaborate to make golden_apple, baked_potato, " + }, + "multiagent_cooking_golden_apple_cooked_beef": { + "type": "cooking", + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "agent_count": 2, + "target": { + "golden_apple": 1, + "cooked_beef": 1 + }, + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1 + }, + "1": { + "gold_ingot": 4, + "coal": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make golden_apple, cooked_beef, The recipes are as follows:\nRecipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']\nRecipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']\n", + "1": "Collaborate with other agents around you to make golden_apple, cooked_beef, The recipes are as follows:\nRecipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']\nRecipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']\n" + }, + "conversation": "Let's collaborate to make golden_apple, cooked_beef, " + }, + "multiagent_cooking_rabbit_stew_cake": { + "type": "cooking", + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "agent_count": 2, + "target": { + "rabbit_stew": 1, + "cake": 1 + }, + "initial_inventory": { + "0": { + "bowl": 1, + "milk_bucket": 2 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make rabbit_stew, cake, The recipes are as follows:\nRecipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']\nRecipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']\n", + "1": "Collaborate with other agents around you to make rabbit_stew, cake, The recipes are as follows:\nRecipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']\nRecipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']\n" + }, + "conversation": "Let's collaborate to make rabbit_stew, cake, " + }, + "multiagent_cooking_rabbit_stew_baked_potato": { + "type": "cooking", + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "agent_count": 2, + "target": { + "rabbit_stew": 1, + "baked_potato": 1 + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make rabbit_stew, baked_potato, The recipes are as follows:\nRecipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']\nRecipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']\n", + "1": "Collaborate with other agents around you to make rabbit_stew, baked_potato, The recipes are as follows:\nRecipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']\nRecipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']\n" + }, + "conversation": "Let's collaborate to make rabbit_stew, baked_potato, " + }, + "multiagent_cooking_rabbit_stew_cooked_beef": { + "type": "cooking", + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "agent_count": 2, + "target": { + "rabbit_stew": 1, + "cooked_beef": 1 + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make rabbit_stew, cooked_beef, The recipes are as follows:\nRecipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']\nRecipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']\n", + "1": "Collaborate with other agents around you to make rabbit_stew, cooked_beef, The recipes are as follows:\nRecipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']\nRecipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']\n" + }, + "conversation": "Let's collaborate to make rabbit_stew, cooked_beef, " + }, + "multiagent_cooking_cake_baked_potato": { + "type": "cooking", + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "agent_count": 2, + "target": { + "cake": 1, + "baked_potato": 1 + }, + "initial_inventory": { + "0": { + "milk_bucket": 2, + "coal": 1 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make cake, baked_potato, The recipes are as follows:\nRecipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']\nRecipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']\n", + "1": "Collaborate with other agents around you to make cake, baked_potato, The recipes are as follows:\nRecipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']\nRecipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']\n" + }, + "conversation": "Let's collaborate to make cake, baked_potato, " + }, + "multiagent_cooking_cake_cooked_beef": { + "type": "cooking", + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "agent_count": 2, + "target": { + "cake": 1, + "cooked_beef": 1 + }, + "initial_inventory": { + "0": { + "milk_bucket": 2, + "coal": 1 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make cake, cooked_beef, The recipes are as follows:\nRecipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']\nRecipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']\n", + "1": "Collaborate with other agents around you to make cake, cooked_beef, The recipes are as follows:\nRecipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']\nRecipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']\n" + }, + "conversation": "Let's collaborate to make cake, cooked_beef, " + }, + "multiagent_cooking_baked_potato_cooked_beef": { + "type": "cooking", + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "agent_count": 2, + "target": { + "baked_potato": 1, + "cooked_beef": 1 + }, + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "coal": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make baked_potato, cooked_beef, The recipes are as follows:\nRecipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']\nRecipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']\n", + "1": "Collaborate with other agents around you to make baked_potato, cooked_beef, The recipes are as follows:\nRecipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']\nRecipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']\n" + }, + "conversation": "Let's collaborate to make baked_potato, cooked_beef, " + } +} \ No newline at end of file From ef5f7dfe61029d9fa876128dd2311a1b1574f575 Mon Sep 17 00:00:00 2001 From: Isadora White Date: Tue, 13 May 2025 16:35:36 -0700 Subject: [PATCH 051/101] remaining tasks --- ...ake_collaboration_required_cooking_task.py | 11 +- .../2_agent_blocked_action_remaining.json | 438 ++++++++++++++++++ .../2_agent_full_remaining.json | 438 ++++++++++++++++++ 3 files changed, 882 insertions(+), 5 deletions(-) create mode 100644 tasks/cooking_tasks/require_collab_test_2_items/2_agent_blocked_action_remaining.json create mode 100644 tasks/cooking_tasks/require_collab_test_2_items/2_agent_full_remaining.json diff --git a/tasks/cooking_tasks/make_collaboration_required_cooking_task.py b/tasks/cooking_tasks/make_collaboration_required_cooking_task.py index a0bd856..4dbc9a8 100644 --- a/tasks/cooking_tasks/make_collaboration_required_cooking_task.py +++ b/tasks/cooking_tasks/make_collaboration_required_cooking_task.py @@ -290,8 +290,10 @@ def count_items_in_inventory(inventory): def make_all_possible_tasks(items: List[str], num_items:int, num_agents: int, output_file) -> List[Dict[str, Any]]: combinations = itertools.combinations(items, num_items) + already_completed = [["bread", "golden_apple"], ["golden_apple", "rabbit_stew"], ["bread", "cake"], ["baked_potato", "golden_apple"], ["baked_potato", "cake"], ["cooked_beef", "golden_apple"]] + remaining_combinations = set(combinations) - set(tuple(sorted(comb)) for comb in already_completed) tasks = {} - for combination in combinations: + for combination in remaining_combinations: task = {} task["type"] = "cooking" task["recipes"] = {} @@ -322,13 +324,12 @@ def make_all_possible_tasks(items: List[str], num_items:int, num_agents: int, ou partial_plan_task["goal"] = {} for i in range(num_agents): partial_plan_task["goal"][i] = goal_str - recipe_goal_str = goal_str partial_plan_task["goal"][0] = recipe_goal_str task_id = "multiagent_cooking" for item in combination: task_id += "_" + item - tasks[task_id] = task - # tasks[task_id + "_partial_plan"] = partial_plan_task + # tasks[task_id] = task + tasks[task_id + "_partial_plan"] = partial_plan_task with open(output_file, 'w') as f: json.dump(tasks, f, indent=4) @@ -437,7 +438,7 @@ def block_recipe_in_tasks(task_path, new_task_path, num_agents=None): test_items = ["bread", "golden_apple", "rabbit_stew", "cake", "baked_potato", "cooked_beef"] # block_recipe_in_tasks("mindcraft/tasks/cooking_tasks/require_collab_test_2_items/2_agent.json", "mindcraft/tasks/cooking_tasks/require_collab_test_2_items/2_agent_block_recipe.json", 2) -make_all_possible_tasks(test_items, 2, 2, "mindcraft/tasks/cooking_tasks/require_collab_test_2_items/2_agent_full.json") +make_all_possible_tasks(test_items, 2, 2, "mindcraft/tasks/cooking_tasks/require_collab_test_2_items/2_agent_blocked_action_remaining.json") # reconfigure_tasks("mindcraft/tasks/cooking_tasks/test_tasks/test_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_test_2_items/2_agent_block_recipe.json", 2) # reconfigure_tasks("mindcraft/tasks/cooking_tasks/test_tasks/hells_kitchen_test_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_test_2_items/2_agent_hells_kitchen.json", 2, True) diff --git a/tasks/cooking_tasks/require_collab_test_2_items/2_agent_blocked_action_remaining.json b/tasks/cooking_tasks/require_collab_test_2_items/2_agent_blocked_action_remaining.json new file mode 100644 index 0000000..6b1accb --- /dev/null +++ b/tasks/cooking_tasks/require_collab_test_2_items/2_agent_blocked_action_remaining.json @@ -0,0 +1,438 @@ +{ + "multiagent_cooking_rabbit_stew_cake_partial_plan": { + "type": "cooking", + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "agent_count": 2, + "target": { + "rabbit_stew": 1, + "cake": 1 + }, + "initial_inventory": { + "0": { + "bowl": 1, + "milk_bucket": 2 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make rabbit_stew, cake, The recipes are as follows:\nRecipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']\nRecipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']\n", + "1": "Collaborate with other agents around you to make rabbit_stew, cake, " + }, + "conversation": "Let's collaborate to make rabbit_stew, cake, " + }, + "multiagent_cooking_cake_baked_potato_partial_plan": { + "type": "cooking", + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "agent_count": 2, + "target": { + "cake": 1, + "baked_potato": 1 + }, + "initial_inventory": { + "0": { + "milk_bucket": 2, + "coal": 1 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make cake, baked_potato, The recipes are as follows:\nRecipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']\nRecipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']\n", + "1": "Collaborate with other agents around you to make cake, baked_potato, " + }, + "conversation": "Let's collaborate to make cake, baked_potato, " + }, + "multiagent_cooking_golden_apple_cooked_beef_partial_plan": { + "type": "cooking", + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "agent_count": 2, + "target": { + "golden_apple": 1, + "cooked_beef": 1 + }, + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1 + }, + "1": { + "gold_ingot": 4, + "coal": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make golden_apple, cooked_beef, The recipes are as follows:\nRecipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']\nRecipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']\n", + "1": "Collaborate with other agents around you to make golden_apple, cooked_beef, " + }, + "conversation": "Let's collaborate to make golden_apple, cooked_beef, " + }, + "multiagent_cooking_cake_cooked_beef_partial_plan": { + "type": "cooking", + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "agent_count": 2, + "target": { + "cake": 1, + "cooked_beef": 1 + }, + "initial_inventory": { + "0": { + "milk_bucket": 2, + "coal": 1 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make cake, cooked_beef, The recipes are as follows:\nRecipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']\nRecipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']\n", + "1": "Collaborate with other agents around you to make cake, cooked_beef, " + }, + "conversation": "Let's collaborate to make cake, cooked_beef, " + }, + "multiagent_cooking_bread_baked_potato_partial_plan": { + "type": "cooking", + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "agent_count": 2, + "target": { + "bread": 1, + "baked_potato": 1 + }, + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": {} + }, + "goal": { + "0": "Collaborate with other agents around you to make bread, baked_potato, The recipes are as follows:\nRecipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']\nRecipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']\n", + "1": "Collaborate with other agents around you to make bread, baked_potato, " + }, + "conversation": "Let's collaborate to make bread, baked_potato, " + }, + "multiagent_cooking_rabbit_stew_baked_potato_partial_plan": { + "type": "cooking", + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "agent_count": 2, + "target": { + "rabbit_stew": 1, + "baked_potato": 1 + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make rabbit_stew, baked_potato, The recipes are as follows:\nRecipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']\nRecipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']\n", + "1": "Collaborate with other agents around you to make rabbit_stew, baked_potato, " + }, + "conversation": "Let's collaborate to make rabbit_stew, baked_potato, " + }, + "multiagent_cooking_golden_apple_cake_partial_plan": { + "type": "cooking", + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "agent_count": 2, + "target": { + "golden_apple": 1, + "cake": 1 + }, + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1, + "milk_bucket": 2 + }, + "1": { + "gold_ingot": 4, + "milk_bucket": 1, + "egg": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make golden_apple, cake, The recipes are as follows:\nRecipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']\nRecipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']\n", + "1": "Collaborate with other agents around you to make golden_apple, cake, " + }, + "conversation": "Let's collaborate to make golden_apple, cake, " + }, + "multiagent_cooking_rabbit_stew_cooked_beef_partial_plan": { + "type": "cooking", + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "agent_count": 2, + "target": { + "rabbit_stew": 1, + "cooked_beef": 1 + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make rabbit_stew, cooked_beef, The recipes are as follows:\nRecipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']\nRecipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']\n", + "1": "Collaborate with other agents around you to make rabbit_stew, cooked_beef, " + }, + "conversation": "Let's collaborate to make rabbit_stew, cooked_beef, " + }, + "multiagent_cooking_bread_cooked_beef_partial_plan": { + "type": "cooking", + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "agent_count": 2, + "target": { + "bread": 1, + "cooked_beef": 1 + }, + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": {} + }, + "goal": { + "0": "Collaborate with other agents around you to make bread, cooked_beef, The recipes are as follows:\nRecipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']\nRecipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']\n", + "1": "Collaborate with other agents around you to make bread, cooked_beef, " + }, + "conversation": "Let's collaborate to make bread, cooked_beef, " + }, + "multiagent_cooking_baked_potato_cooked_beef_partial_plan": { + "type": "cooking", + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "agent_count": 2, + "target": { + "baked_potato": 1, + "cooked_beef": 1 + }, + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "coal": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make baked_potato, cooked_beef, The recipes are as follows:\nRecipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']\nRecipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']\n", + "1": "Collaborate with other agents around you to make baked_potato, cooked_beef, " + }, + "conversation": "Let's collaborate to make baked_potato, cooked_beef, " + }, + "multiagent_cooking_golden_apple_baked_potato_partial_plan": { + "type": "cooking", + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "agent_count": 2, + "target": { + "golden_apple": 1, + "baked_potato": 1 + }, + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1 + }, + "1": { + "gold_ingot": 4, + "coal": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make golden_apple, baked_potato, The recipes are as follows:\nRecipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']\nRecipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']\n", + "1": "Collaborate with other agents around you to make golden_apple, baked_potato, " + }, + "conversation": "Let's collaborate to make golden_apple, baked_potato, " + }, + "multiagent_cooking_bread_rabbit_stew_partial_plan": { + "type": "cooking", + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "agent_count": 2, + "target": { + "bread": 1, + "rabbit_stew": 1 + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": {} + }, + "goal": { + "0": "Collaborate with other agents around you to make bread, rabbit_stew, The recipes are as follows:\nRecipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']\nRecipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']\n", + "1": "Collaborate with other agents around you to make bread, rabbit_stew, " + }, + "conversation": "Let's collaborate to make bread, rabbit_stew, " + } +} \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_test_2_items/2_agent_full_remaining.json b/tasks/cooking_tasks/require_collab_test_2_items/2_agent_full_remaining.json new file mode 100644 index 0000000..f167e4a --- /dev/null +++ b/tasks/cooking_tasks/require_collab_test_2_items/2_agent_full_remaining.json @@ -0,0 +1,438 @@ +{ + "multiagent_cooking_golden_apple_baked_potato": { + "type": "cooking", + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "agent_count": 2, + "target": { + "golden_apple": 1, + "baked_potato": 1 + }, + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1 + }, + "1": { + "gold_ingot": 4, + "coal": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make golden_apple, baked_potato, The recipes are as follows:\nRecipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']\nRecipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']\n", + "1": "Collaborate with other agents around you to make golden_apple, baked_potato, The recipes are as follows:\nRecipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']\nRecipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']\n" + }, + "conversation": "Let's collaborate to make golden_apple, baked_potato, " + }, + "multiagent_cooking_rabbit_stew_baked_potato": { + "type": "cooking", + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "agent_count": 2, + "target": { + "rabbit_stew": 1, + "baked_potato": 1 + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make rabbit_stew, baked_potato, The recipes are as follows:\nRecipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']\nRecipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']\n", + "1": "Collaborate with other agents around you to make rabbit_stew, baked_potato, The recipes are as follows:\nRecipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']\nRecipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']\n" + }, + "conversation": "Let's collaborate to make rabbit_stew, baked_potato, " + }, + "multiagent_cooking_bread_rabbit_stew": { + "type": "cooking", + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "agent_count": 2, + "target": { + "bread": 1, + "rabbit_stew": 1 + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": {} + }, + "goal": { + "0": "Collaborate with other agents around you to make bread, rabbit_stew, The recipes are as follows:\nRecipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']\nRecipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']\n", + "1": "Collaborate with other agents around you to make bread, rabbit_stew, The recipes are as follows:\nRecipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']\nRecipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']\n" + }, + "conversation": "Let's collaborate to make bread, rabbit_stew, " + }, + "multiagent_cooking_bread_baked_potato": { + "type": "cooking", + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "agent_count": 2, + "target": { + "bread": 1, + "baked_potato": 1 + }, + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": {} + }, + "goal": { + "0": "Collaborate with other agents around you to make bread, baked_potato, The recipes are as follows:\nRecipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']\nRecipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']\n", + "1": "Collaborate with other agents around you to make bread, baked_potato, The recipes are as follows:\nRecipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']\nRecipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']\n" + }, + "conversation": "Let's collaborate to make bread, baked_potato, " + }, + "multiagent_cooking_baked_potato_cooked_beef": { + "type": "cooking", + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "agent_count": 2, + "target": { + "baked_potato": 1, + "cooked_beef": 1 + }, + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "coal": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make baked_potato, cooked_beef, The recipes are as follows:\nRecipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']\nRecipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']\n", + "1": "Collaborate with other agents around you to make baked_potato, cooked_beef, The recipes are as follows:\nRecipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']\nRecipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']\n" + }, + "conversation": "Let's collaborate to make baked_potato, cooked_beef, " + }, + "multiagent_cooking_cake_cooked_beef": { + "type": "cooking", + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "agent_count": 2, + "target": { + "cake": 1, + "cooked_beef": 1 + }, + "initial_inventory": { + "0": { + "milk_bucket": 2, + "coal": 1 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make cake, cooked_beef, The recipes are as follows:\nRecipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']\nRecipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']\n", + "1": "Collaborate with other agents around you to make cake, cooked_beef, The recipes are as follows:\nRecipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']\nRecipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']\n" + }, + "conversation": "Let's collaborate to make cake, cooked_beef, " + }, + "multiagent_cooking_rabbit_stew_cake": { + "type": "cooking", + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "agent_count": 2, + "target": { + "rabbit_stew": 1, + "cake": 1 + }, + "initial_inventory": { + "0": { + "bowl": 1, + "milk_bucket": 2 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make rabbit_stew, cake, The recipes are as follows:\nRecipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']\nRecipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']\n", + "1": "Collaborate with other agents around you to make rabbit_stew, cake, The recipes are as follows:\nRecipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']\nRecipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']\n" + }, + "conversation": "Let's collaborate to make rabbit_stew, cake, " + }, + "multiagent_cooking_golden_apple_cooked_beef": { + "type": "cooking", + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "agent_count": 2, + "target": { + "golden_apple": 1, + "cooked_beef": 1 + }, + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1 + }, + "1": { + "gold_ingot": 4, + "coal": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make golden_apple, cooked_beef, The recipes are as follows:\nRecipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']\nRecipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']\n", + "1": "Collaborate with other agents around you to make golden_apple, cooked_beef, The recipes are as follows:\nRecipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']\nRecipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']\n" + }, + "conversation": "Let's collaborate to make golden_apple, cooked_beef, " + }, + "multiagent_cooking_rabbit_stew_cooked_beef": { + "type": "cooking", + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "agent_count": 2, + "target": { + "rabbit_stew": 1, + "cooked_beef": 1 + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make rabbit_stew, cooked_beef, The recipes are as follows:\nRecipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']\nRecipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']\n", + "1": "Collaborate with other agents around you to make rabbit_stew, cooked_beef, The recipes are as follows:\nRecipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']\nRecipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']\n" + }, + "conversation": "Let's collaborate to make rabbit_stew, cooked_beef, " + }, + "multiagent_cooking_golden_apple_cake": { + "type": "cooking", + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "agent_count": 2, + "target": { + "golden_apple": 1, + "cake": 1 + }, + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1, + "milk_bucket": 2 + }, + "1": { + "gold_ingot": 4, + "milk_bucket": 1, + "egg": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make golden_apple, cake, The recipes are as follows:\nRecipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']\nRecipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']\n", + "1": "Collaborate with other agents around you to make golden_apple, cake, The recipes are as follows:\nRecipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']\nRecipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']\n" + }, + "conversation": "Let's collaborate to make golden_apple, cake, " + }, + "multiagent_cooking_bread_cooked_beef": { + "type": "cooking", + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "agent_count": 2, + "target": { + "bread": 1, + "cooked_beef": 1 + }, + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": {} + }, + "goal": { + "0": "Collaborate with other agents around you to make bread, cooked_beef, The recipes are as follows:\nRecipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']\nRecipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']\n", + "1": "Collaborate with other agents around you to make bread, cooked_beef, The recipes are as follows:\nRecipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']\nRecipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']\n" + }, + "conversation": "Let's collaborate to make bread, cooked_beef, " + }, + "multiagent_cooking_cake_baked_potato": { + "type": "cooking", + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "agent_count": 2, + "target": { + "cake": 1, + "baked_potato": 1 + }, + "initial_inventory": { + "0": { + "milk_bucket": 2, + "coal": 1 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make cake, baked_potato, The recipes are as follows:\nRecipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']\nRecipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']\n", + "1": "Collaborate with other agents around you to make cake, baked_potato, The recipes are as follows:\nRecipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']\nRecipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']\n" + }, + "conversation": "Let's collaborate to make cake, baked_potato, " + } +} \ No newline at end of file From 87e56092bff9bcdceda01b884b9e22edaf8d62f9 Mon Sep 17 00:00:00 2001 From: Isadora White Date: Tue, 13 May 2025 16:48:32 -0700 Subject: [PATCH 052/101] fix inventories for hells kitchen --- ...ake_collaboration_required_cooking_task.py | 4 +- .../2_agent_hells_kitchen_full.json | 1080 +++++++++-------- 2 files changed, 544 insertions(+), 540 deletions(-) diff --git a/tasks/cooking_tasks/make_collaboration_required_cooking_task.py b/tasks/cooking_tasks/make_collaboration_required_cooking_task.py index 4dbc9a8..b7af2a8 100644 --- a/tasks/cooking_tasks/make_collaboration_required_cooking_task.py +++ b/tasks/cooking_tasks/make_collaboration_required_cooking_task.py @@ -438,7 +438,9 @@ def block_recipe_in_tasks(task_path, new_task_path, num_agents=None): test_items = ["bread", "golden_apple", "rabbit_stew", "cake", "baked_potato", "cooked_beef"] # block_recipe_in_tasks("mindcraft/tasks/cooking_tasks/require_collab_test_2_items/2_agent.json", "mindcraft/tasks/cooking_tasks/require_collab_test_2_items/2_agent_block_recipe.json", 2) -make_all_possible_tasks(test_items, 2, 2, "mindcraft/tasks/cooking_tasks/require_collab_test_2_items/2_agent_blocked_action_remaining.json") +# make_all_possible_tasks(test_items, 2, 2, "mindcraft/tasks/cooking_tasks/require_collab_test_2_items/2_agent_blocked_action_remaining.json") + +reconfigure_tasks("mindcraft/tasks/cooking_tasks/require_collab_test_2_items/2_agent_hells_kitchen_full.json", "mindcraft/tasks/cooking_tasks/require_collab_test_2_items/2_agent_hells_kitchen_full_inventory.json", 2) # reconfigure_tasks("mindcraft/tasks/cooking_tasks/test_tasks/test_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_test_2_items/2_agent_block_recipe.json", 2) # reconfigure_tasks("mindcraft/tasks/cooking_tasks/test_tasks/hells_kitchen_test_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_test_2_items/2_agent_hells_kitchen.json", 2, True) diff --git a/tasks/cooking_tasks/require_collab_test_2_items/2_agent_hells_kitchen_full.json b/tasks/cooking_tasks/require_collab_test_2_items/2_agent_hells_kitchen_full.json index 816f626..94fe904 100644 --- a/tasks/cooking_tasks/require_collab_test_2_items/2_agent_hells_kitchen_full.json +++ b/tasks/cooking_tasks/require_collab_test_2_items/2_agent_hells_kitchen_full.json @@ -1,577 +1,579 @@ { "multiagent_cooking_golden_apple_bread_hells_kitchen": { - "conversation": "We need to make golden_apple and bread together. You are supposed to make bread and I am supposed to make golden_apple, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "golden_apple", - "bread" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + "conversation": "We need to make golden_apple and bread together. You are supposed to make bread and I am supposed to make golden_apple, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "golden_apple", + "bread" ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make golden_apple, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make bread. You have their recipe:\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make bread, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Get 1 apple and 8 gold ingots from your inventory or other bots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 4, - "max_steps_per_recipe": 2, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" + "type": "cooking", + "timeout": 300, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make golden_apple, but you don't have the recipe for it, your partner has it!Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "1": "You need to make bread, but you don't have the recipe for it, your partner has it!Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 4, + "max_steps_per_recipe": 2, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1 + }, + "1": { + "gold_ingot": 4 + } + } }, "multiagent_cooking_golden_apple_cake_hells_kitchen": { - "conversation": "We need to make golden_apple and cake together. You are supposed to make cake and I am supposed to make golden_apple, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "golden_apple", - "cake" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + "conversation": "We need to make golden_apple and cake together. You are supposed to make cake and I am supposed to make golden_apple, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "golden_apple", + "cake" ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make golden_apple, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: From your inventory or other agents get 3 milk buckets (already filled with milk).\nStep 3: Get an egg from your inventory or other agents.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cake, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Get 1 apple and 8 gold ingots from your inventory or other bots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 7, - "max_steps_per_recipe": 5, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" + "type": "cooking", + "timeout": 300, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make golden_apple, but you don't have the recipe for it, your partner has it!Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "1": "You need to make cake, but you don't have the recipe for it, your partner has it!Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 5, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1, + "milk_bucket": 2 + }, + "1": { + "gold_ingot": 4, + "milk_bucket": 1, + "egg": 1 + } + } }, "multiagent_cooking_golden_apple_rabbit_stew_hells_kitchen": { - "conversation": "We need to make golden_apple and rabbit_stew together. You are supposed to make rabbit_stew and I am supposed to make golden_apple, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "golden_apple", - "rabbit_stew" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + "conversation": "We need to make golden_apple and rabbit_stew together. You are supposed to make rabbit_stew and I am supposed to make golden_apple, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "golden_apple", + "rabbit_stew" ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make golden_apple, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 4: Go to the furnace and bake the potato.\nStep 5: From your inventory or other agents get a bowl\nStep 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 7: Go to the furnace and cook the raw rabbit.\nStep 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make rabbit_stew, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Get 1 apple and 8 gold ingots from your inventory or other bots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 10, - "max_steps_per_recipe": 8, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" + "type": "cooking", + "timeout": 300, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make golden_apple, but you don't have the recipe for it, your partner has it!Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", + "1": "You need to make rabbit_stew, but you don't have the recipe for it, your partner has it!Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 10, + "max_steps_per_recipe": 8, + "unique_target_items": 2, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1 + }, + "1": { + "gold_ingot": 4, + "bowl": 1 + } + } }, "multiagent_cooking_golden_apple_baked_potato_hells_kitchen": { - "conversation": "We need to make golden_apple and baked_potato together. You are supposed to make baked_potato and I am supposed to make golden_apple, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "golden_apple", - "baked_potato" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + "conversation": "We need to make golden_apple and baked_potato together. You are supposed to make baked_potato and I am supposed to make golden_apple, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "golden_apple", + "baked_potato" ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make golden_apple, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make baked_potato, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Get 1 apple and 8 gold ingots from your inventory or other bots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 6, - "max_steps_per_recipe": 4, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" + "type": "cooking", + "timeout": 300, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make golden_apple, but you don't have the recipe for it, your partner has it!Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", + "1": "You need to make baked_potato, but you don't have the recipe for it, your partner has it!Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']" + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 6, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1 + }, + "1": { + "gold_ingot": 4, + "coal": 1 + } + } }, "multiagent_cooking_golden_apple_cooked_beef_hells_kitchen": { - "conversation": "We need to make golden_apple and cooked_beef together. You are supposed to make cooked_beef and I am supposed to make golden_apple, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "golden_apple", - "cooked_beef" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + "conversation": "We need to make golden_apple and cooked_beef together. You are supposed to make cooked_beef and I am supposed to make golden_apple, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "golden_apple", + "cooked_beef" ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make golden_apple, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 4: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_beef, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Get 1 apple and 8 gold ingots from your inventory or other bots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 6, - "max_steps_per_recipe": 4, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" + "type": "cooking", + "timeout": 300, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make golden_apple, but you don't have the recipe for it, your partner has it!Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "1": "You need to make cooked_beef, but you don't have the recipe for it, your partner has it!Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 6, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1 + }, + "1": { + "gold_ingot": 4, + "coal": 1 + } + } }, "multiagent_cooking_bread_cake_hells_kitchen": { - "conversation": "We need to make bread and cake together. You are supposed to make cake and I am supposed to make bread, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "bread", - "cake" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." + "conversation": "We need to make bread and cake together. You are supposed to make cake and I am supposed to make bread, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "bread", + "cake" ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make bread, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: From your inventory or other agents get 3 milk buckets (already filled with milk).\nStep 3: Get an egg from your inventory or other agents.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cake, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make bread. You have their recipe:\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 7, - "max_steps_per_recipe": 5, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_bread_rabbit_stew_hells_kitchen": { - "conversation": "We need to make bread and rabbit_stew together. You are supposed to make rabbit_stew and I am supposed to make bread, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "bread", - "rabbit_stew" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make bread, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 4: Go to the furnace and bake the potato.\nStep 5: From your inventory or other agents get a bowl\nStep 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 7: Go to the furnace and cook the raw rabbit.\nStep 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make rabbit_stew, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make bread. You have their recipe:\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 10, - "max_steps_per_recipe": 8, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_bread_baked_potato_hells_kitchen": { - "conversation": "We need to make bread and baked_potato together. You are supposed to make baked_potato and I am supposed to make bread, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "bread", - "baked_potato" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make bread, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make baked_potato, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make bread. You have their recipe:\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 6, - "max_steps_per_recipe": 4, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_bread_cooked_beef_hells_kitchen": { - "conversation": "We need to make bread and cooked_beef together. You are supposed to make cooked_beef and I am supposed to make bread, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "bread", - "cooked_beef" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make bread, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 4: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_beef, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make bread. You have their recipe:\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 6, - "max_steps_per_recipe": 4, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" + "type": "cooking", + "timeout": 300, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make bread, but you don't have the recipe for it, your partner has it!Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "1": "You need to make cake, but you don't have the recipe for it, your partner has it!Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 5, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "milk_bucket": 2 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + } }, "multiagent_cooking_cake_rabbit_stew_hells_kitchen": { - "conversation": "We need to make cake and rabbit_stew together. You are supposed to make rabbit_stew and I am supposed to make cake, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cake", - "rabbit_stew" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + "conversation": "We need to make cake and rabbit_stew together. You are supposed to make rabbit_stew and I am supposed to make cake, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cake", + "rabbit_stew" ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cake, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 4: Go to the furnace and bake the potato.\nStep 5: From your inventory or other agents get a bowl\nStep 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 7: Go to the furnace and cook the raw rabbit.\nStep 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make rabbit_stew, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: From your inventory or other agents get 3 milk buckets (already filled with milk).\nStep 3: Get an egg from your inventory or other agents.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 13, - "max_steps_per_recipe": 8, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" + "type": "cooking", + "timeout": 300, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cake, but you don't have the recipe for it, your partner has it!Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", + "1": "You need to make rabbit_stew, but you don't have the recipe for it, your partner has it!Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 13, + "max_steps_per_recipe": 8, + "unique_target_items": 2, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "milk_bucket": 2, + "bowl": 1 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + } }, "multiagent_cooking_cake_baked_potato_hells_kitchen": { - "conversation": "We need to make cake and baked_potato together. You are supposed to make baked_potato and I am supposed to make cake, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cake", - "baked_potato" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + "conversation": "We need to make cake and baked_potato together. You are supposed to make baked_potato and I am supposed to make cake, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cake", + "baked_potato" ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cake, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make baked_potato, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: From your inventory or other agents get 3 milk buckets (already filled with milk).\nStep 3: Get an egg from your inventory or other agents.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 9, - "max_steps_per_recipe": 5, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" + "type": "cooking", + "timeout": 300, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cake, but you don't have the recipe for it, your partner has it!Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", + "1": "You need to make baked_potato, but you don't have the recipe for it, your partner has it!Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']" + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 9, + "max_steps_per_recipe": 5, + "unique_target_items": 2, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "milk_bucket": 2, + "coal": 1 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + } }, "multiagent_cooking_cake_cooked_beef_hells_kitchen": { - "conversation": "We need to make cake and cooked_beef together. You are supposed to make cooked_beef and I am supposed to make cake, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cake", - "cooked_beef" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + "conversation": "We need to make cake and cooked_beef together. You are supposed to make cooked_beef and I am supposed to make cake, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cake", + "cooked_beef" ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cake, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 4: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_beef, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: From your inventory or other agents get 3 milk buckets (already filled with milk).\nStep 3: Get an egg from your inventory or other agents.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 9, - "max_steps_per_recipe": 5, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" + "type": "cooking", + "timeout": 300, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cake, but you don't have the recipe for it, your partner has it!Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "1": "You need to make cooked_beef, but you don't have the recipe for it, your partner has it!Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 9, + "max_steps_per_recipe": 5, + "unique_target_items": 2, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "milk_bucket": 2, + "coal": 1 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + } }, "multiagent_cooking_rabbit_stew_baked_potato_hells_kitchen": { - "conversation": "We need to make rabbit_stew and baked_potato together. You are supposed to make baked_potato and I am supposed to make rabbit_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "rabbit_stew", - "baked_potato" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + "conversation": "We need to make rabbit_stew and baked_potato together. You are supposed to make baked_potato and I am supposed to make rabbit_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "rabbit_stew", + "baked_potato" ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make rabbit_stew, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make baked_potato, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 4: Go to the furnace and bake the potato.\nStep 5: From your inventory or other agents get a bowl\nStep 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 7: Go to the furnace and cook the raw rabbit.\nStep 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 12, - "max_steps_per_recipe": 8, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" + "type": "cooking", + "timeout": 300, + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make rabbit_stew, but you don't have the recipe for it, your partner has it!Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", + "1": "You need to make baked_potato, but you don't have the recipe for it, your partner has it!Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']" + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 12, + "max_steps_per_recipe": 8, + "unique_target_items": 2, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 1 + } + } }, "multiagent_cooking_rabbit_stew_cooked_beef_hells_kitchen": { - "conversation": "We need to make rabbit_stew and cooked_beef together. You are supposed to make cooked_beef and I am supposed to make rabbit_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "rabbit_stew", - "cooked_beef" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + "conversation": "We need to make rabbit_stew and cooked_beef together. You are supposed to make cooked_beef and I am supposed to make rabbit_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "rabbit_stew", + "cooked_beef" ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make rabbit_stew, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 4: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_beef, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 4: Go to the furnace and bake the potato.\nStep 5: From your inventory or other agents get a bowl\nStep 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 7: Go to the furnace and cook the raw rabbit.\nStep 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 12, - "max_steps_per_recipe": 8, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" + "type": "cooking", + "timeout": 300, + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make rabbit_stew, but you don't have the recipe for it, your partner has it!Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "1": "You need to make cooked_beef, but you don't have the recipe for it, your partner has it!Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 12, + "max_steps_per_recipe": 8, + "unique_target_items": 2, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 1 + } + } }, "multiagent_cooking_baked_potato_cooked_beef_hells_kitchen": { - "conversation": "We need to make baked_potato and cooked_beef together. You are supposed to make cooked_beef and I am supposed to make baked_potato, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "baked_potato", - "cooked_beef" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." + "conversation": "We need to make baked_potato and cooked_beef together. You are supposed to make cooked_beef and I am supposed to make baked_potato, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "baked_potato", + "cooked_beef" ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make baked_potato, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 4: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_beef, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 8, - "max_steps_per_recipe": 4, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" + "type": "cooking", + "timeout": 300, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make baked_potato, but you don't have the recipe for it, your partner has it!Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "1": "You need to make cooked_beef, but you don't have the recipe for it, your partner has it!Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 8, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "coal": 1 + } + } } } \ No newline at end of file From a1bd99dc43bab296427e4ffce8f4cd537e20ea7c Mon Sep 17 00:00:00 2001 From: Isadora White Date: Wed, 14 May 2025 14:27:38 -0700 Subject: [PATCH 053/101] small changes --- .../test_tasks/filtered_tasks_3_agents.json | 4 ++-- tasks/evaluation_script.py | 3 +-- tasks/experiment_script.sh | 9 ++++++++- 3 files changed, 11 insertions(+), 5 deletions(-) diff --git a/tasks/crafting_tasks/test_tasks/filtered_tasks_3_agents.json b/tasks/crafting_tasks/test_tasks/filtered_tasks_3_agents.json index 49ce490..26df64f 100644 --- a/tasks/crafting_tasks/test_tasks/filtered_tasks_3_agents.json +++ b/tasks/crafting_tasks/test_tasks/filtered_tasks_3_agents.json @@ -155,7 +155,7 @@ "missing_items": [], "requires_crafting_table": true }, - "multiagent_crafting_requires_ctable_blue_banner_2_with_plan__depth_0_num_agents_3": { + "multiagent_crafting_requires_ctable_blue_banner_2_with_partial_plan__depth_0_num_agents_3": { "goal": "Collaborate with other agents to craft an blue_banner", "conversation": "Let's work together to craft an blue_banner.", "initial_inventory": { @@ -190,7 +190,7 @@ "missing_items": [], "requires_crafting_table": true }, - "multiagent_crafting_requires_ctable_cyan_bed_1_with_plan__depth_0_num_agents_3": { + "multiagent_crafting_requires_ctable_cyan_bed_1_with_partial_plan__depth_0_num_agents_3": { "goal": "Collaborate with other agents to craft an cyan_bed", "conversation": "Let's work together to craft an cyan_bed.", "initial_inventory": { diff --git a/tasks/evaluation_script.py b/tasks/evaluation_script.py index a57af0a..cb380f5 100644 --- a/tasks/evaluation_script.py +++ b/tasks/evaluation_script.py @@ -13,7 +13,6 @@ import json import glob import socket -from tqdm import tqdm import boto3 BLOCKED_ACTIONS_COOKING = [ @@ -119,7 +118,7 @@ def aggregate_results(local_folders): elif "construction" in task_type: task_type = "construction" - for folder_path in tqdm(local_folders): + for folder_path in local_folders: folder_name = os.path.basename(folder_path) try: diff --git a/tasks/experiment_script.sh b/tasks/experiment_script.sh index 083fb52..f5cd34e 100644 --- a/tasks/experiment_script.sh +++ b/tasks/experiment_script.sh @@ -1,2 +1,9 @@ +python3 tasks/evaluation_script.py --model claude-3-5-sonnet-latest --num_parallel 1 --num_exp 1 --exp_name "claude_2_agent_block_recipe" --template_profile ./profiles/tasks/cooking_profile.json --task_path tasks/cooking_tasks/require_collab_test_2_items/2_agent_hells_kitchen_full.json --num_agents 2 sleep 360 -python3 tasks/evaluation_script.py --model gpt-4o --num_parallel 1 --num_exp 1 --exp_name "4o_1_agent_crafting" --template_profile ./profiles/tasks/crafting_profile.json --task_path tasks/crafting_tasks/test_tasks/1_agent.json --num_agents 1 \ No newline at end of file +python3 tasks/evaluation_script.py --model claude-3-5-sonnet-latest --num_parallel 1 --num_exp 1 --exp_name "claude_2_agent_block_recipe" --template_profile ./profiles/tasks/cooking_profile.json --task_path tasks/cooking_tasks/require_collab_test_2_items/2_agent_full.json --num_agents 2 +sleep 360 +python3 tasks/evaluation_script.py --model gpt-4o --num_parallel 1 --num_exp 1 --exp_name "4o_2_agent_block_recipe" --template_profile ./profiles/tasks/cooking_profile.json --task_path tasks/cooking_tasks/require_collab_test_2_items/2_agent_hells_kitchen_full.json --num_agents 2 +sleep 360 +python3 tasks/evaluation_script.py --model gpt-4o --num_parallel 1 --num_exp 1 --exp_name "4o_2_agent_block_recipe" --template_profile ./profiles/tasks/cooking_profile.json --task_path tasks/cooking_tasks/require_collab_test_2_items/2_agent_full.json --num_agents 2 +sleep 360 +python3 tasks/evaluation_script.py --model gpt-4o --num_parallel 1 --num_exp 1 --exp_name "claude_2_agent_block_recipe" --template_profile ./profiles/tasks/cooking_profile.json --task_path tasks/cooking_tasks/require_collab_test_2_items/2_agent_block_recipe_full.json --num_agents 2 \ No newline at end of file From 99af6506aacbb7f253a07f91fb0767b3a6f82d14 Mon Sep 17 00:00:00 2001 From: Prithviraj Ammanabrolu Date: Wed, 21 May 2025 09:44:47 -0700 Subject: [PATCH 054/101] Update README.md with bib --- README.md | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index df6b1e6..db9107c 100644 --- a/README.md +++ b/README.md @@ -166,10 +166,11 @@ Some of the node modules that we depend on have bugs in them. To add a patch, ch ## Citation: ``` -@misc{mindcraft2023, - Author = {Kolby Nottingham and Max Robinson}, - Title = {MINDcraft: LLM Agents for cooperation, competition, and creativity in Minecraft}, - Year = {2023}, - url={https://github.com/kolbytn/mindcraft} +@article{whitenottingham2025collaborating, + title = {Collaborating Action by Action: A Multi-agent LLM Framework for Embodied Reasoning}, + author = {White*, Isadora and Nottingham*, Kolby and Maniar, Ayush and Robinson, Max and Lillemark, Hansen and Maheshwari, Mehul and Qin, Lianhui and Ammanabrolu, Prithviraj}, + journal = {arXiv preprint arXiv:2504.17950}, + year = {2025}, + url = {https://arxiv.org/abs/2504.17950}, } -``` \ No newline at end of file +``` From 0fabaa8e90fda4428f3e1073b71732842919b795 Mon Sep 17 00:00:00 2001 From: Prithviraj Ammanabrolu Date: Wed, 21 May 2025 09:48:28 -0700 Subject: [PATCH 055/101] smol --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index db9107c..95f90ef 100644 --- a/README.md +++ b/README.md @@ -166,7 +166,7 @@ Some of the node modules that we depend on have bugs in them. To add a patch, ch ## Citation: ``` -@article{whitenottingham2025collaborating, +@article{mindcraft2025, title = {Collaborating Action by Action: A Multi-agent LLM Framework for Embodied Reasoning}, author = {White*, Isadora and Nottingham*, Kolby and Maniar, Ayush and Robinson, Max and Lillemark, Hansen and Maheshwari, Mehul and Qin, Lianhui and Ammanabrolu, Prithviraj}, journal = {arXiv preprint arXiv:2504.17950}, From 77535f97d50f9283212a3723c2bc6b8bccb4ffbc Mon Sep 17 00:00:00 2001 From: Isadora White Date: Fri, 23 May 2025 11:49:51 -0700 Subject: [PATCH 056/101] fix goal string issues --- settings.js | 2 +- src/agent/agent.js | 8 +++-- src/agent/tasks/tasks.js | 26 ++++++++++++---- tasks/construction_tasks/get_blueprint.js | 2 +- .../require_collab_test_2_items/3_agent.json | 30 ++++--------------- .../require_collab_test_2_items/4_agent.json | 30 ++++--------------- .../require_collab_test_2_items/5_agent.json | 30 ++++--------------- tasks/example_tasks.json | 5 ++++ 8 files changed, 51 insertions(+), 82 deletions(-) diff --git a/settings.js b/settings.js index 735755b..c73502a 100644 --- a/settings.js +++ b/settings.js @@ -44,7 +44,7 @@ const settings = { "verbose_commands": true, // show full command syntax "narrate_behavior": true, // chat simple automatic actions ('Picking up item!') "chat_bot_messages": true, // publicly chat messages to other bots - "log_all_prompts": false, // log ALL prompts to file + "log_all_prompts": true, // log ALL prompts to file } // these environment variables override certain settings diff --git a/src/agent/agent.js b/src/agent/agent.js index b8046bb..745abd5 100644 --- a/src/agent/agent.js +++ b/src/agent/agent.js @@ -26,8 +26,6 @@ export class Agent { } console.log('Starting agent initialization with profile:', profile_fp); - - // Initialize components with more detailed error handling console.log('Initializing action manager...'); @@ -105,6 +103,12 @@ export class Agent { if (!load_mem) { if (task_path !== null) { this.task.initBotTask(); + this.task.setAgentGoal(); + } + } else { + // set the goal without initializing the rest of the task + if (task_path !== null) { + this.task.setAgentGoal(); } } diff --git a/src/agent/tasks/tasks.js b/src/agent/tasks/tasks.js index 0a740ab..1c00d95 100644 --- a/src/agent/tasks/tasks.js +++ b/src/agent/tasks/tasks.js @@ -266,6 +266,15 @@ export class Task { this.taskTimeout = this.data.timeout || 300; // Set validator based on task_type + // do goal initialization here + + // let agentGoal = this.getAgentGoal(); + // if (agentGoal) { + // agentGoal += "You have to collaborate with other agents/bots, namely " + this.available_agents.filter(n => n !== this.name).join(', ') + " to complete the task as soon as possible by dividing the work among yourselves."; + // console.log(`Setting goal for agent ${this.agent.count_id}: ${agentGoal}`); + // await executeCommand(this.agent, `!goal("${agentGoal}")`); + // } + if (this.task_type === 'construction') { this.validator = new ConstructionTaskValidator(this.data, this.agent); } else if (this.task_type === 'cooking' || this.task_type === 'techtree') { @@ -407,7 +416,17 @@ export class Task { return false; } + async setAgentGoal() { + let agentGoal = this.getAgentGoal(); + if (agentGoal && this.data.agent_count + this.data.human_count > 1) { + agentGoal += "You have to collaborate with other agents/bots, namely " + this.available_agents.filter(n => n !== this.name).join(', ') + " to complete the task as soon as possible by dividing the work among yourselves."; + console.log(`Setting goal for agent ${this.agent.count_id}: ${agentGoal}`); + } + await executeCommand(this.agent, `!goal("${agentGoal}")`); + } + async initBotTask() { + await this.setAgentGoal(); await this.agent.bot.chat(`/clear ${this.name}`); console.log(`Cleared ${this.name}'s inventory.`); @@ -508,12 +527,7 @@ export class Task { await executeCommand(this.agent, `!startConversation("${other_name}", "${this.data.conversation}")`); } - let agentGoal = this.getAgentGoal(); - if (agentGoal) { - agentGoal += "You have to collaborate with other agents/bots, namely " + this.available_agents.filter(n => n !== this.name).join(', ') + " to complete the task as soon as possible by dividing the work among yourselves."; - console.log(`Setting goal for agent ${this.agent.count_id}: ${agentGoal}`); - await executeCommand(this.agent, `!goal("${agentGoal}")`); - } + } async teleportBots() { diff --git a/tasks/construction_tasks/get_blueprint.js b/tasks/construction_tasks/get_blueprint.js index dcf2493..841a886 100644 --- a/tasks/construction_tasks/get_blueprint.js +++ b/tasks/construction_tasks/get_blueprint.js @@ -23,7 +23,7 @@ bot.on('spawn', async () => { const xOffset = 30; const zOffset = 20; - const taskFilePath = '/Users/isadorawhite/izzy_mindcraft/mindcraft/tasks/construction_tasks/custom/flower_three_agents.json'; + const taskFilePath = ''; const task_name = "flower_three_agents"; diff --git a/tasks/cooking_tasks/require_collab_test_2_items/3_agent.json b/tasks/cooking_tasks/require_collab_test_2_items/3_agent.json index 861248c..8e595f0 100644 --- a/tasks/cooking_tasks/require_collab_test_2_items/3_agent.json +++ b/tasks/cooking_tasks/require_collab_test_2_items/3_agent.json @@ -19,10 +19,7 @@ ] }, "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple, 1 bread. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", - "1": "Collaborate with agents around you to make 1 golden_apple, 1 bread. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" - }, + "goal": "Collaborate with agents around you to make 1 golden_apple, 1 bread. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", "initial_inventory": { "0": { "gold_ingot": 3 @@ -62,10 +59,7 @@ ] }, "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", - "1": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" - }, + "goal": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", "initial_inventory": { "0": { "gold_ingot": 3 @@ -103,10 +97,7 @@ ] }, "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", - "1": "Collaborate with agents around you to make 1 cake, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" - }, + "goal": "Collaborate with agents around you to make 1 cake, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", "initial_inventory": { "0": { "milk_bucket": 2 @@ -142,10 +133,7 @@ ] }, "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" - }, + "goal": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", "initial_inventory": { "0": { "coal": 3, @@ -187,10 +175,7 @@ ] }, "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" - }, + "goal": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", "initial_inventory": { "0": { "coal": 3, @@ -229,10 +214,7 @@ ] }, "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", - "1": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" - }, + "goal": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", "initial_inventory": { "0": { "gold_ingot": 3, diff --git a/tasks/cooking_tasks/require_collab_test_2_items/4_agent.json b/tasks/cooking_tasks/require_collab_test_2_items/4_agent.json index 0f49d81..9a44990 100644 --- a/tasks/cooking_tasks/require_collab_test_2_items/4_agent.json +++ b/tasks/cooking_tasks/require_collab_test_2_items/4_agent.json @@ -19,10 +19,7 @@ ] }, "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple, 1 bread. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", - "1": "Collaborate with agents around you to make 1 golden_apple, 1 bread. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" - }, + "goal": "Collaborate with agents around you to make 1 golden_apple, 1 bread. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", "initial_inventory": { "0": { "gold_ingot": 2 @@ -65,10 +62,7 @@ ] }, "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", - "1": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" - }, + "goal": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", "initial_inventory": { "0": { "gold_ingot": 2 @@ -109,10 +103,7 @@ ] }, "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", - "1": "Collaborate with agents around you to make 1 cake, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" - }, + "goal": "Collaborate with agents around you to make 1 cake, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", "initial_inventory": { "0": { "milk_bucket": 1 @@ -150,10 +141,7 @@ ] }, "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" - }, + "goal": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", "initial_inventory": { "0": { "coal": 3, @@ -199,10 +187,7 @@ ] }, "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" - }, + "goal": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", "initial_inventory": { "0": { "coal": 3, @@ -245,10 +230,7 @@ ] }, "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", - "1": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" - }, + "goal": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", "initial_inventory": { "0": { "gold_ingot": 2, diff --git a/tasks/cooking_tasks/require_collab_test_2_items/5_agent.json b/tasks/cooking_tasks/require_collab_test_2_items/5_agent.json index ffe5341..320e34c 100644 --- a/tasks/cooking_tasks/require_collab_test_2_items/5_agent.json +++ b/tasks/cooking_tasks/require_collab_test_2_items/5_agent.json @@ -19,10 +19,7 @@ ] }, "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple, 1 bread. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", - "1": "Collaborate with agents around you to make 1 golden_apple, 1 bread. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" - }, + "goal": "Collaborate with agents around you to make 1 golden_apple, 1 bread. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", "initial_inventory": { "0": { "gold_ingot": 2 @@ -67,10 +64,7 @@ ] }, "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", - "1": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" - }, + "goal": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", "initial_inventory": { "0": { "gold_ingot": 2 @@ -114,10 +108,7 @@ ] }, "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", - "1": "Collaborate with agents around you to make 1 cake, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" - }, + "goal": "Collaborate with agents around you to make 1 cake, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", "initial_inventory": { "0": { "milk_bucket": 1 @@ -159,10 +150,7 @@ ] }, "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" - }, + "goal": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", "initial_inventory": { "0": { "coal": 2, @@ -211,10 +199,7 @@ ] }, "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" - }, + "goal": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", "initial_inventory": { "0": { "coal": 2, @@ -261,10 +246,7 @@ ] }, "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", - "1": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" - }, + "goal": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", "initial_inventory": { "0": { "gold_ingot": 2, diff --git a/tasks/example_tasks.json b/tasks/example_tasks.json index 1523c82..8122649 100644 --- a/tasks/example_tasks.json +++ b/tasks/example_tasks.json @@ -102,6 +102,11 @@ "type": "debug", "timeout": 60 }, + "debug_goal": { + "goal": "Reply to all messages with star emojis when prompted", + "agent_count": 1, + "type": "debug" + }, "debug_different_goal": { "goal": { "0": "Reply to all messages with star emojis when prompted", From f7e4fee2496a18bb4a9dc9891cc524968b19b136 Mon Sep 17 00:00:00 2001 From: Isadora White Date: Fri, 23 May 2025 11:54:53 -0700 Subject: [PATCH 057/101] update README and remove useless tasks --- .../equal_load_test_tasks/1_agent.json | 415 -- .../1_agent_short_timeout.json | 415 -- .../equal_load_test_tasks/2_agent.json | 425 -- .../equal_load_test_tasks/3_agent.json | 435 -- .../equal_load_test_tasks/4_agent.json | 445 -- .../4_agent_long_timeout.json | 445 -- .../equal_load_test_tasks/5_agent.json | 455 -- .../equal_load_test_tasks/rerun_1_agent.json | 124 - .../equal_load_test_tasks/rerun_2_agent.json | 49 - .../equal_load_test_tasks/rerun_3_agent.json | 130 - .../equal_load_test_tasks/rerun_4_agent.json | 211 - .../human_ai_tasks/1_human_1_agent.json | 255 - .../human_ai_tasks/1_human_3_agent.json | 452 -- tasks/cooking_tasks/human_tasks/1_human.json | 44 - tasks/cooking_tasks/human_tasks/2_humans.json | 48 - tasks/cooking_tasks/human_tasks/3_humans.json | 48 - tasks/cooking_tasks/human_tasks/4_humans.json | 40 - tasks/cooking_tasks/human_tasks/5_humans.json | 49 - .../human_tasks_2_items/2_humans.json | 231 - .../human_tasks_2_items/3_humans.json | 252 - .../require_collab_test/2_agent.json | 576 -- .../require_collab_test/3_agent.json | 605 -- .../require_collab_test/4_agent.json | 634 --- .../require_collab_test/5_agent.json | 659 --- .../require_collab_test_3_items/2_agent.json | 319 -- .../require_collab_test_3_items/3_agent.json | 478 -- .../require_collab_test_3_items/4_agent.json | 515 -- .../4_agent_long_timeout.json | 515 -- .../require_collab_test_3_items/5_agent.json | 552 -- .../5_agent_long_timeout.json | 552 -- .../require_collab_train/2_agent.json | 1615 ------ .../2_agent_blocked_access.json | 3046 ---------- .../2_agent_cooking_train_tasks.json | 1615 ------ .../require_collab_train/3_agent.json | 3729 ------------ .../3_agent_cooking_train_tasks.json | 4293 -------------- .../require_collab_train/4_agent.json | 4410 --------------- .../require_collab_train/5_agent.json | 5018 ----------------- .../2_agent_cooking_test_tasks.json | 270 - .../3_agent_cooking_test_tasks.json | 312 - .../4_agent_cooking_test_tasks.json | 397 -- ...agent_cooking_test_tasks_long_timeout.json | 393 -- .../5_agent_cooking_test_tasks.json | 455 -- ...agent_cooking_test_tasks_long_timeout.json | 455 -- .../test_tasks/hells_kitchen_test_tasks.json | 1072 ---- .../cooking_tasks/test_tasks/test_tasks.json | 1051 ---- .../test_tasks/test_tasks_longer_timeout.json | 1051 ---- .../2_agent_cooking_train_tasks.json | 1190 ---- .../3_agent_cooking_train_tasks.json | 3093 ---------- .../hells_kitchen_train_tasks.json | 3224 ----------- .../train_tasks/train_tasks.json | 2417 -------- .../train_tasks/train_tasks_3_agents.json | 2864 ---------- .../train_tasks/train_tasks_4_agents.json | 3345 ----------- .../train_tasks/train_tasks_5_agents.json | 3772 ------------- 53 files changed, 59460 deletions(-) delete mode 100644 tasks/cooking_tasks/equal_load_test_tasks/1_agent.json delete mode 100644 tasks/cooking_tasks/equal_load_test_tasks/1_agent_short_timeout.json delete mode 100644 tasks/cooking_tasks/equal_load_test_tasks/2_agent.json delete mode 100644 tasks/cooking_tasks/equal_load_test_tasks/3_agent.json delete mode 100644 tasks/cooking_tasks/equal_load_test_tasks/4_agent.json delete mode 100644 tasks/cooking_tasks/equal_load_test_tasks/4_agent_long_timeout.json delete mode 100644 tasks/cooking_tasks/equal_load_test_tasks/5_agent.json delete mode 100644 tasks/cooking_tasks/equal_load_test_tasks/rerun_1_agent.json delete mode 100644 tasks/cooking_tasks/equal_load_test_tasks/rerun_2_agent.json delete mode 100644 tasks/cooking_tasks/equal_load_test_tasks/rerun_3_agent.json delete mode 100644 tasks/cooking_tasks/equal_load_test_tasks/rerun_4_agent.json delete mode 100644 tasks/cooking_tasks/human_ai_tasks/1_human_1_agent.json delete mode 100644 tasks/cooking_tasks/human_ai_tasks/1_human_3_agent.json delete mode 100644 tasks/cooking_tasks/human_tasks/1_human.json delete mode 100644 tasks/cooking_tasks/human_tasks/2_humans.json delete mode 100644 tasks/cooking_tasks/human_tasks/3_humans.json delete mode 100644 tasks/cooking_tasks/human_tasks/4_humans.json delete mode 100644 tasks/cooking_tasks/human_tasks/5_humans.json delete mode 100644 tasks/cooking_tasks/human_tasks_2_items/2_humans.json delete mode 100644 tasks/cooking_tasks/human_tasks_2_items/3_humans.json delete mode 100644 tasks/cooking_tasks/require_collab_test/2_agent.json delete mode 100644 tasks/cooking_tasks/require_collab_test/3_agent.json delete mode 100644 tasks/cooking_tasks/require_collab_test/4_agent.json delete mode 100644 tasks/cooking_tasks/require_collab_test/5_agent.json delete mode 100644 tasks/cooking_tasks/require_collab_test_3_items/2_agent.json delete mode 100644 tasks/cooking_tasks/require_collab_test_3_items/3_agent.json delete mode 100644 tasks/cooking_tasks/require_collab_test_3_items/4_agent.json delete mode 100644 tasks/cooking_tasks/require_collab_test_3_items/4_agent_long_timeout.json delete mode 100644 tasks/cooking_tasks/require_collab_test_3_items/5_agent.json delete mode 100644 tasks/cooking_tasks/require_collab_test_3_items/5_agent_long_timeout.json delete mode 100644 tasks/cooking_tasks/require_collab_train/2_agent.json delete mode 100644 tasks/cooking_tasks/require_collab_train/2_agent_blocked_access.json delete mode 100644 tasks/cooking_tasks/require_collab_train/2_agent_cooking_train_tasks.json delete mode 100644 tasks/cooking_tasks/require_collab_train/3_agent.json delete mode 100644 tasks/cooking_tasks/require_collab_train/3_agent_cooking_train_tasks.json delete mode 100644 tasks/cooking_tasks/require_collab_train/4_agent.json delete mode 100644 tasks/cooking_tasks/require_collab_train/5_agent.json delete mode 100644 tasks/cooking_tasks/test_tasks/2_agent_cooking_test_tasks.json delete mode 100644 tasks/cooking_tasks/test_tasks/3_agent_cooking_test_tasks.json delete mode 100644 tasks/cooking_tasks/test_tasks/4_agent_cooking_test_tasks.json delete mode 100644 tasks/cooking_tasks/test_tasks/4_agent_cooking_test_tasks_long_timeout.json delete mode 100644 tasks/cooking_tasks/test_tasks/5_agent_cooking_test_tasks.json delete mode 100644 tasks/cooking_tasks/test_tasks/5_agent_cooking_test_tasks_long_timeout.json delete mode 100644 tasks/cooking_tasks/test_tasks/hells_kitchen_test_tasks.json delete mode 100644 tasks/cooking_tasks/test_tasks/test_tasks.json delete mode 100644 tasks/cooking_tasks/test_tasks/test_tasks_longer_timeout.json delete mode 100644 tasks/cooking_tasks/train_tasks/2_agent_cooking_train_tasks.json delete mode 100644 tasks/cooking_tasks/train_tasks/3_agent_cooking_train_tasks.json delete mode 100644 tasks/cooking_tasks/train_tasks/hells_kitchen_train_tasks.json delete mode 100644 tasks/cooking_tasks/train_tasks/train_tasks.json delete mode 100644 tasks/cooking_tasks/train_tasks/train_tasks_3_agents.json delete mode 100644 tasks/cooking_tasks/train_tasks/train_tasks_4_agents.json delete mode 100644 tasks/cooking_tasks/train_tasks/train_tasks_5_agents.json diff --git a/tasks/cooking_tasks/equal_load_test_tasks/1_agent.json b/tasks/cooking_tasks/equal_load_test_tasks/1_agent.json deleted file mode 100644 index fdf7d4e..0000000 --- a/tasks/cooking_tasks/equal_load_test_tasks/1_agent.json +++ /dev/null @@ -1,415 +0,0 @@ -{ - "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_rabbit_stew_1_agent": { - "conversation": "Let's work together to make cooked_beef, baked_potato, cake, rabbit_stew.", - "agent_count": 1, - "target": { - "cooked_beef": 1, - "baked_potato": 1, - "cake": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_golden_apple_1_rabbit_stew_1_agent": { - "conversation": "Let's work together to make bread, cake, golden_apple, baked_potato, rabbit_stew.", - "agent_count": 1, - "target": { - "bread": 1, - "cake": 1, - "golden_apple": 1, - "baked_potato": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_golden_apple_1_agent": { - "conversation": "Let's work together to make baked_potato, bread, cooked_beef, golden_apple.", - "agent_count": 1, - "target": { - "baked_potato": 1, - "bread": 1, - "cooked_beef": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_cooked_beef_1_golden_apple_1_agent": { - "conversation": "Let's work together to make cake, bread, golden_apple, baked_potato, cooked_beef.", - "agent_count": 1, - "target": { - "cake": 1, - "bread": 1, - "golden_apple": 1, - "baked_potato": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." - } - }, - "multiagent_cooking_5_1_baked_potato_1_cake_1_golden_apple_1_rabbit_stew_1_agent": { - "conversation": "Let's work together to make rabbit_stew, golden_apple, cake, baked_potato.", - "agent_count": 1, - "target": { - "rabbit_stew": 1, - "golden_apple": 1, - "cake": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." - } - }, - "multiagent_cooking_5_1_bread_1_cooked_beef_1_golden_apple_1_rabbit_stew_1_agent": { - "conversation": "Let's work together to make bread, rabbit_stew, golden_apple, cooked_beef.", - "agent_count": 1, - "target": { - "bread": 1, - "rabbit_stew": 1, - "golden_apple": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." - } - }, - "multiagent_cooking_5_1_bread_1_cake_1_golden_apple_1_rabbit_stew_1_agent": { - "conversation": "Let's work together to make cake, rabbit_stew, golden_apple, bread.", - "agent_count": 1, - "target": { - "cake": 1, - "rabbit_stew": 1, - "golden_apple": 1, - "bread": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread." - } - }, - "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_1_agent": { - "conversation": "Let's work together to make cooked_beef, golden_apple, cake, baked_potato, rabbit_stew.", - "agent_count": 1, - "target": { - "cooked_beef": 1, - "golden_apple": 1, - "cake": 1, - "baked_potato": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - } - }, - "multiagent_cooking_5_1_bread_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_1_agent": { - "conversation": "Let's work together to make cooked_beef, golden_apple, rabbit_stew, bread, cake.", - "agent_count": 1, - "target": { - "cooked_beef": 1, - "golden_apple": 1, - "rabbit_stew": 1, - "bread": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_rabbit_stew_1_agent": { - "conversation": "Let's work together to make bread, cooked_beef, rabbit_stew, baked_potato.", - "agent_count": 1, - "target": { - "bread": 1, - "cooked_beef": 1, - "rabbit_stew": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." - } - } - } \ No newline at end of file diff --git a/tasks/cooking_tasks/equal_load_test_tasks/1_agent_short_timeout.json b/tasks/cooking_tasks/equal_load_test_tasks/1_agent_short_timeout.json deleted file mode 100644 index c70c5e6..0000000 --- a/tasks/cooking_tasks/equal_load_test_tasks/1_agent_short_timeout.json +++ /dev/null @@ -1,415 +0,0 @@ -{ - "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_rabbit_stew_1_agent": { - "conversation": "Let's work together to make cooked_beef, baked_potato, cake, rabbit_stew.", - "agent_count": 1, - "target": { - "cooked_beef": 1, - "baked_potato": 1, - "cake": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 250, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_golden_apple_1_rabbit_stew_1_agent": { - "conversation": "Let's work together to make bread, cake, golden_apple, baked_potato, rabbit_stew.", - "agent_count": 1, - "target": { - "bread": 1, - "cake": 1, - "golden_apple": 1, - "baked_potato": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 250, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_golden_apple_1_agent": { - "conversation": "Let's work together to make baked_potato, bread, cooked_beef, golden_apple.", - "agent_count": 1, - "target": { - "baked_potato": 1, - "bread": 1, - "cooked_beef": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 250, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_cooked_beef_1_golden_apple_1_agent": { - "conversation": "Let's work together to make cake, bread, golden_apple, baked_potato, cooked_beef.", - "agent_count": 1, - "target": { - "cake": 1, - "bread": 1, - "golden_apple": 1, - "baked_potato": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 250, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." - } - }, - "multiagent_cooking_5_1_baked_potato_1_cake_1_golden_apple_1_rabbit_stew_1_agent": { - "conversation": "Let's work together to make rabbit_stew, golden_apple, cake, baked_potato.", - "agent_count": 1, - "target": { - "rabbit_stew": 1, - "golden_apple": 1, - "cake": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 250, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." - } - }, - "multiagent_cooking_5_1_bread_1_cooked_beef_1_golden_apple_1_rabbit_stew_1_agent": { - "conversation": "Let's work together to make bread, rabbit_stew, golden_apple, cooked_beef.", - "agent_count": 1, - "target": { - "bread": 1, - "rabbit_stew": 1, - "golden_apple": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 250, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." - } - }, - "multiagent_cooking_5_1_bread_1_cake_1_golden_apple_1_rabbit_stew_1_agent": { - "conversation": "Let's work together to make cake, rabbit_stew, golden_apple, bread.", - "agent_count": 1, - "target": { - "cake": 1, - "rabbit_stew": 1, - "golden_apple": 1, - "bread": 1 - }, - "type": "cooking", - "timeout": 250, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread." - } - }, - "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_1_agent": { - "conversation": "Let's work together to make cooked_beef, golden_apple, cake, baked_potato, rabbit_stew.", - "agent_count": 1, - "target": { - "cooked_beef": 1, - "golden_apple": 1, - "cake": 1, - "baked_potato": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 250, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - } - }, - "multiagent_cooking_5_1_bread_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_1_agent": { - "conversation": "Let's work together to make cooked_beef, golden_apple, rabbit_stew, bread, cake.", - "agent_count": 1, - "target": { - "cooked_beef": 1, - "golden_apple": 1, - "rabbit_stew": 1, - "bread": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 250, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_rabbit_stew_1_agent": { - "conversation": "Let's work together to make bread, cooked_beef, rabbit_stew, baked_potato.", - "agent_count": 1, - "target": { - "bread": 1, - "cooked_beef": 1, - "rabbit_stew": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 250, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." - } - } - } \ No newline at end of file diff --git a/tasks/cooking_tasks/equal_load_test_tasks/2_agent.json b/tasks/cooking_tasks/equal_load_test_tasks/2_agent.json deleted file mode 100644 index 1fb1c90..0000000 --- a/tasks/cooking_tasks/equal_load_test_tasks/2_agent.json +++ /dev/null @@ -1,425 +0,0 @@ -{ - "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_rabbit_stew_2_agents": { - "conversation": "Let's work together to make cooked_beef, baked_potato, cake, rabbit_stew.", - "agent_count": 2, - "target": { - "cooked_beef": 1, - "baked_potato": 1, - "cake": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_golden_apple_1_rabbit_stew_2_agent": { - "conversation": "Let's work together to make bread, cake, golden_apple, baked_potato, rabbit_stew.", - "agent_count": 2, - "target": { - "bread": 1, - "cake": 1, - "golden_apple": 1, - "baked_potato": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_golden_apple_2_agent": { - "conversation": "Let's work together to make baked_potato, bread, cooked_beef, golden_apple.", - "agent_count": 2, - "target": { - "baked_potato": 1, - "bread": 1, - "cooked_beef": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_cooked_beef_1_golden_apple": { - "conversation": "Let's work together to make cake, bread, golden_apple, baked_potato, cooked_beef.", - "agent_count": 2, - "target": { - "cake": 1, - "bread": 1, - "golden_apple": 1, - "baked_potato": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "1": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." - } - }, - "multiagent_cooking_5_1_baked_potato_1_cake_1_golden_apple_1_rabbit_stew_2_agent": { - "conversation": "Let's work together to make rabbit_stew, golden_apple, cake, baked_potato.", - "agent_count": 2, - "target": { - "rabbit_stew": 1, - "golden_apple": 1, - "cake": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." - } - }, - "multiagent_cooking_5_1_bread_1_cooked_beef_1_golden_apple_1_rabbit_stew_2_agent": { - "conversation": "Let's work together to make bread, rabbit_stew, golden_apple, cooked_beef.", - "agent_count": 2, - "target": { - "bread": 1, - "rabbit_stew": 1, - "golden_apple": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "1": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." - } - }, - "multiagent_cooking_5_1_bread_1_cake_1_golden_apple_1_rabbit_stew_2_agent": { - "conversation": "Let's work together to make cake, rabbit_stew, golden_apple, bread.", - "agent_count": 2, - "target": { - "cake": 1, - "rabbit_stew": 1, - "golden_apple": 1, - "bread": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "1": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread." - } - }, - "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_2_agent": { - "conversation": "Let's work together to make cooked_beef, golden_apple, cake, baked_potato, rabbit_stew.", - "agent_count": 2, - "target": { - "cooked_beef": 1, - "golden_apple": 1, - "cake": 1, - "baked_potato": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - } - }, - "multiagent_cooking_5_1_bread_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_2_agent": { - "conversation": "Let's work together to make cooked_beef, golden_apple, rabbit_stew, bread, cake.", - "agent_count": 2, - "target": { - "cooked_beef": 1, - "golden_apple": 1, - "rabbit_stew": 1, - "bread": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_rabbit_stew_2_agent": { - "conversation": "Let's work together to make bread, cooked_beef, rabbit_stew, baked_potato.", - "agent_count": 2, - "target": { - "bread": 1, - "cooked_beef": 1, - "rabbit_stew": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "1": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." - } - } - } \ No newline at end of file diff --git a/tasks/cooking_tasks/equal_load_test_tasks/3_agent.json b/tasks/cooking_tasks/equal_load_test_tasks/3_agent.json deleted file mode 100644 index 54e0e2c..0000000 --- a/tasks/cooking_tasks/equal_load_test_tasks/3_agent.json +++ /dev/null @@ -1,435 +0,0 @@ -{ - "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_rabbit_stew_3_agent": { - "conversation": "Let's work together to make cooked_beef, baked_potato, cake, rabbit_stew.", - "agent_count": 3, - "target": { - "cooked_beef": 1, - "baked_potato": 1, - "cake": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "2": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_golden_apple_1_rabbit_stew_3_agent": { - "conversation": "Let's work together to make bread, cake, golden_apple, baked_potato, rabbit_stew.", - "agent_count": 3, - "target": { - "bread": 1, - "cake": 1, - "golden_apple": 1, - "baked_potato": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "2": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_golden_apple_3_agent": { - "conversation": "Let's work together to make baked_potato, bread, cooked_beef, golden_apple.", - "agent_count": 3, - "target": { - "baked_potato": 1, - "bread": 1, - "cooked_beef": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "2": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_cooked_beef_1_golden_apple_3_agent": { - "conversation": "Let's work together to make cake, bread, golden_apple, baked_potato, cooked_beef.", - "agent_count": 3, - "target": { - "cake": 1, - "bread": 1, - "golden_apple": 1, - "baked_potato": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "1": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "2": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." - } - }, - "multiagent_cooking_5_1_baked_potato_1_cake_1_golden_apple_1_rabbit_stew_3_agent": { - "conversation": "Let's work together to make rabbit_stew, golden_apple, cake, baked_potato.", - "agent_count": 3, - "target": { - "rabbit_stew": 1, - "golden_apple": 1, - "cake": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "2": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." - } - }, - "multiagent_cooking_5_1_bread_1_cooked_beef_1_golden_apple_1_rabbit_stew_3_agent": { - "conversation": "Let's work together to make bread, rabbit_stew, golden_apple, cooked_beef.", - "agent_count": 3, - "target": { - "bread": 1, - "rabbit_stew": 1, - "golden_apple": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "1": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "2": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." - } - }, - "multiagent_cooking_5_1_bread_1_cake_1_golden_apple_1_rabbit_stew_3_agent": { - "conversation": "Let's work together to make cake, rabbit_stew, golden_apple, bread.", - "agent_count": 3, - "target": { - "cake": 1, - "rabbit_stew": 1, - "golden_apple": 1, - "bread": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "1": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "2": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread." - } - }, - "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew": { - "conversation": "Let's work together to make cooked_beef, golden_apple, cake, baked_potato, rabbit_stew.", - "agent_count": 3, - "target": { - "cooked_beef": 1, - "golden_apple": 1, - "cake": 1, - "baked_potato": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "2": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - } - }, - "multiagent_cooking_5_1_bread_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_3_agent": { - "conversation": "Let's work together to make cooked_beef, golden_apple, rabbit_stew, bread, cake.", - "agent_count": 3, - "target": { - "cooked_beef": 1, - "golden_apple": 1, - "rabbit_stew": 1, - "bread": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "2": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_rabbit_stew_3_agent": { - "conversation": "Let's work together to make bread, cooked_beef, rabbit_stew, baked_potato.", - "agent_count": 3, - "target": { - "bread": 1, - "cooked_beef": 1, - "rabbit_stew": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "1": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "2": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." - } - } -} \ No newline at end of file diff --git a/tasks/cooking_tasks/equal_load_test_tasks/4_agent.json b/tasks/cooking_tasks/equal_load_test_tasks/4_agent.json deleted file mode 100644 index c2238d9..0000000 --- a/tasks/cooking_tasks/equal_load_test_tasks/4_agent.json +++ /dev/null @@ -1,445 +0,0 @@ -{ - "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_rabbit_stew_4_agent": { - "conversation": "Let's work together to make cooked_beef, baked_potato, cake, rabbit_stew.", - "agent_count": 4, - "target": { - "cooked_beef": 1, - "baked_potato": 1, - "cake": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "2": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "3": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_golden_apple_1_rabbit_stew_4_agent": { - "conversation": "Let's work together to make bread, cake, golden_apple, baked_potato, rabbit_stew.", - "agent_count": 4, - "target": { - "bread": 1, - "cake": 1, - "golden_apple": 1, - "baked_potato": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "2": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "3": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_golden_apple_4_agent": { - "conversation": "Let's work together to make baked_potato, bread, cooked_beef, golden_apple.", - "agent_count": 4, - "target": { - "baked_potato": 1, - "bread": 1, - "cooked_beef": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "2": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "3": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_cooked_beef_1_golden_apple_4_agent": { - "conversation": "Let's work together to make cake, bread, golden_apple, baked_potato, cooked_beef.", - "agent_count": 4, - "target": { - "cake": 1, - "bread": 1, - "golden_apple": 1, - "baked_potato": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "1": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "2": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "3": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." - } - }, - "multiagent_cooking_5_1_baked_potato_1_cake_1_golden_apple_1_rabbit_stew_4_agent": { - "conversation": "Let's work together to make rabbit_stew, golden_apple, cake, baked_potato.", - "agent_count": 4, - "target": { - "rabbit_stew": 1, - "golden_apple": 1, - "cake": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "2": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "3": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." - } - }, - "multiagent_cooking_5_1_bread_1_cooked_beef_1_golden_apple_1_rabbit_stew_4_agent": { - "conversation": "Let's work together to make bread, rabbit_stew, golden_apple, cooked_beef.", - "agent_count": 5, - "target": { - "bread": 1, - "rabbit_stew": 1, - "golden_apple": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "1": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "2": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "3": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." - } - }, - "multiagent_cooking_5_1_bread_1_cake_1_golden_apple_1_rabbit_stew_4_agent": { - "conversation": "Let's work together to make cake, rabbit_stew, golden_apple, bread.", - "agent_count": 4, - "target": { - "cake": 1, - "rabbit_stew": 1, - "golden_apple": 1, - "bread": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "1": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "2": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "3": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread." - } - }, - "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_4_agent": { - "conversation": "Let's work together to make cooked_beef, golden_apple, cake, baked_potato, rabbit_stew.", - "agent_count": 4, - "target": { - "cooked_beef": 1, - "golden_apple": 1, - "cake": 1, - "baked_potato": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "2": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "3": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - } - }, - "multiagent_cooking_5_1_bread_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_4_agent": { - "conversation": "Let's work together to make cooked_beef, golden_apple, rabbit_stew, bread, cake.", - "agent_count": 4, - "target": { - "cooked_beef": 1, - "golden_apple": 1, - "rabbit_stew": 1, - "bread": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "2": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "3": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_rabbit_stew_4_agent": { - "conversation": "Let's work together to make bread, cooked_beef, rabbit_stew, baked_potato.", - "agent_count": 4, - "target": { - "bread": 1, - "cooked_beef": 1, - "rabbit_stew": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "1": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "2": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "3": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." - } - } -} \ No newline at end of file diff --git a/tasks/cooking_tasks/equal_load_test_tasks/4_agent_long_timeout.json b/tasks/cooking_tasks/equal_load_test_tasks/4_agent_long_timeout.json deleted file mode 100644 index 63c4f51..0000000 --- a/tasks/cooking_tasks/equal_load_test_tasks/4_agent_long_timeout.json +++ /dev/null @@ -1,445 +0,0 @@ -{ - "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_rabbit_stew_4_agent": { - "conversation": "Let's work together to make cooked_beef, baked_potato, cake, rabbit_stew.", - "agent_count": 4, - "target": { - "cooked_beef": 1, - "baked_potato": 1, - "cake": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "2": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "3": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_golden_apple_1_rabbit_stew_4_agent": { - "conversation": "Let's work together to make bread, cake, golden_apple, baked_potato, rabbit_stew.", - "agent_count": 5, - "target": { - "bread": 1, - "cake": 1, - "golden_apple": 1, - "baked_potato": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "2": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "3": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_golden_apple_4_agent": { - "conversation": "Let's work together to make baked_potato, bread, cooked_beef, golden_apple.", - "agent_count": 4, - "target": { - "baked_potato": 1, - "bread": 1, - "cooked_beef": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "2": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "3": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_cooked_beef_1_golden_apple_4_agent": { - "conversation": "Let's work together to make cake, bread, golden_apple, baked_potato, cooked_beef.", - "agent_count": 4, - "target": { - "cake": 1, - "bread": 1, - "golden_apple": 1, - "baked_potato": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "1": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "2": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "3": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." - } - }, - "multiagent_cooking_5_1_baked_potato_1_cake_1_golden_apple_1_rabbit_stew_4_agent": { - "conversation": "Let's work together to make rabbit_stew, golden_apple, cake, baked_potato.", - "agent_count": 4, - "target": { - "rabbit_stew": 1, - "golden_apple": 1, - "cake": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "2": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "3": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." - } - }, - "multiagent_cooking_5_1_bread_1_cooked_beef_1_golden_apple_1_rabbit_stew_4_agent": { - "conversation": "Let's work together to make bread, rabbit_stew, golden_apple, cooked_beef.", - "agent_count": 5, - "target": { - "bread": 1, - "rabbit_stew": 1, - "golden_apple": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "1": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "2": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "3": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." - } - }, - "multiagent_cooking_5_1_bread_1_cake_1_golden_apple_1_rabbit_stew_4_agent": { - "conversation": "Let's work together to make cake, rabbit_stew, golden_apple, bread.", - "agent_count": 5, - "target": { - "cake": 1, - "rabbit_stew": 1, - "golden_apple": 1, - "bread": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "1": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "2": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "3": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread." - } - }, - "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_4_agent": { - "conversation": "Let's work together to make cooked_beef, golden_apple, cake, baked_potato, rabbit_stew.", - "agent_count": 5, - "target": { - "cooked_beef": 1, - "golden_apple": 1, - "cake": 1, - "baked_potato": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "2": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "3": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - } - }, - "multiagent_cooking_5_1_bread_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_4_agent": { - "conversation": "Let's work together to make cooked_beef, golden_apple, rabbit_stew, bread, cake.", - "agent_count": 4, - "target": { - "cooked_beef": 1, - "golden_apple": 1, - "rabbit_stew": 1, - "bread": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "2": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "3": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_rabbit_stew_4_agent": { - "conversation": "Let's work together to make bread, cooked_beef, rabbit_stew, baked_potato.", - "agent_count": 5, - "target": { - "bread": 1, - "cooked_beef": 1, - "rabbit_stew": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "1": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "2": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "3": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." - } - } -} \ No newline at end of file diff --git a/tasks/cooking_tasks/equal_load_test_tasks/5_agent.json b/tasks/cooking_tasks/equal_load_test_tasks/5_agent.json deleted file mode 100644 index f1c9569..0000000 --- a/tasks/cooking_tasks/equal_load_test_tasks/5_agent.json +++ /dev/null @@ -1,455 +0,0 @@ -{ - "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_rabbit_stew": { - "conversation": "Let's work together to make cooked_beef, baked_potato, cake, rabbit_stew.", - "agent_count": 5, - "target": { - "cooked_beef": 1, - "baked_potato": 1, - "cake": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "2": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "3": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "4": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_golden_apple_1_rabbit_stew": { - "conversation": "Let's work together to make bread, cake, golden_apple, baked_potato, rabbit_stew.", - "agent_count": 5, - "target": { - "bread": 1, - "cake": 1, - "golden_apple": 1, - "baked_potato": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "2": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "3": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "4": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_golden_apple": { - "conversation": "Let's work together to make baked_potato, bread, cooked_beef, golden_apple.", - "agent_count": 5, - "target": { - "baked_potato": 1, - "bread": 1, - "cooked_beef": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "2": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "3": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "4": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_cooked_beef_1_golden_apple": { - "conversation": "Let's work together to make cake, bread, golden_apple, baked_potato, cooked_beef.", - "agent_count": 5, - "target": { - "cake": 1, - "bread": 1, - "golden_apple": 1, - "baked_potato": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "1": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "2": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "3": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "4": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." - } - }, - "multiagent_cooking_5_1_baked_potato_1_cake_1_golden_apple_1_rabbit_stew": { - "conversation": "Let's work together to make rabbit_stew, golden_apple, cake, baked_potato.", - "agent_count": 5, - "target": { - "rabbit_stew": 1, - "golden_apple": 1, - "cake": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "2": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "3": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "4": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." - } - }, - "multiagent_cooking_5_1_bread_1_cooked_beef_1_golden_apple_1_rabbit_stew": { - "conversation": "Let's work together to make bread, rabbit_stew, golden_apple, cooked_beef.", - "agent_count": 5, - "target": { - "bread": 1, - "rabbit_stew": 1, - "golden_apple": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "1": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "2": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "3": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "4": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." - } - }, - "multiagent_cooking_5_1_bread_1_cake_1_golden_apple_1_rabbit_stew": { - "conversation": "Let's work together to make cake, rabbit_stew, golden_apple, bread.", - "agent_count": 5, - "target": { - "cake": 1, - "rabbit_stew": 1, - "golden_apple": 1, - "bread": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "1": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "2": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "3": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "4": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread." - } - }, - "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew": { - "conversation": "Let's work together to make cooked_beef, golden_apple, cake, baked_potato, rabbit_stew.", - "agent_count": 5, - "target": { - "cooked_beef": 1, - "golden_apple": 1, - "cake": 1, - "baked_potato": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "2": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "3": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "4": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - } - }, - "multiagent_cooking_5_1_bread_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew": { - "conversation": "Let's work together to make cooked_beef, golden_apple, rabbit_stew, bread, cake.", - "agent_count": 5, - "target": { - "cooked_beef": 1, - "golden_apple": 1, - "rabbit_stew": 1, - "bread": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "2": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "3": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "4": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_rabbit_stew": { - "conversation": "Let's work together to make bread, cooked_beef, rabbit_stew, baked_potato.", - "agent_count": 5, - "target": { - "bread": 1, - "cooked_beef": 1, - "rabbit_stew": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "1": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "2": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "3": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "4": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." - } - } - } \ No newline at end of file diff --git a/tasks/cooking_tasks/equal_load_test_tasks/rerun_1_agent.json b/tasks/cooking_tasks/equal_load_test_tasks/rerun_1_agent.json deleted file mode 100644 index 50970ae..0000000 --- a/tasks/cooking_tasks/equal_load_test_tasks/rerun_1_agent.json +++ /dev/null @@ -1,124 +0,0 @@ -{ - "multiagent_cooking_5_1_bread_1_cooked_beef_1_golden_apple_1_rabbit_stew_1_agent": { - "conversation": "Let's work together to make bread, rabbit_stew, golden_apple, cooked_beef.", - "agent_count": 1, - "target": { - "bread": 1, - "rabbit_stew": 1, - "golden_apple": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." - } - }, - "multiagent_cooking_5_1_bread_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_1_agent": { - "conversation": "Let's work together to make cooked_beef, golden_apple, rabbit_stew, bread, cake.", - "agent_count": 1, - "target": { - "cooked_beef": 1, - "golden_apple": 1, - "rabbit_stew": 1, - "bread": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_rabbit_stew_1_agent": { - "conversation": "Let's work together to make bread, cooked_beef, rabbit_stew, baked_potato.", - "agent_count": 1, - "target": { - "bread": 1, - "cooked_beef": 1, - "rabbit_stew": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." - } - } -} \ No newline at end of file diff --git a/tasks/cooking_tasks/equal_load_test_tasks/rerun_2_agent.json b/tasks/cooking_tasks/equal_load_test_tasks/rerun_2_agent.json deleted file mode 100644 index 22b0487..0000000 --- a/tasks/cooking_tasks/equal_load_test_tasks/rerun_2_agent.json +++ /dev/null @@ -1,49 +0,0 @@ -{ - "multiagent_cooking_5_1_bread_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_2_agent": { - "conversation": "Let's work together to make cooked_beef, golden_apple, rabbit_stew, bread, cake.", - "agent_count": 2, - "target": { - "cooked_beef": 1, - "golden_apple": 1, - "rabbit_stew": 1, - "bread": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - } - } -} \ No newline at end of file diff --git a/tasks/cooking_tasks/equal_load_test_tasks/rerun_3_agent.json b/tasks/cooking_tasks/equal_load_test_tasks/rerun_3_agent.json deleted file mode 100644 index be2b108..0000000 --- a/tasks/cooking_tasks/equal_load_test_tasks/rerun_3_agent.json +++ /dev/null @@ -1,130 +0,0 @@ -{ - "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_rabbit_stew_3_agent": { - "conversation": "Let's work together to make bread, cooked_beef, rabbit_stew, baked_potato.", - "agent_count": 3, - "target": { - "bread": 1, - "cooked_beef": 1, - "rabbit_stew": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "1": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "2": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_golden_apple_1_rabbit_stew_3_agent": { - "conversation": "Let's work together to make bread, cake, golden_apple, baked_potato, rabbit_stew.", - "agent_count": 3, - "target": { - "bread": 1, - "cake": 1, - "golden_apple": 1, - "baked_potato": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "2": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - } - }, - "multiagent_cooking_5_1_bread_1_cooked_beef_1_golden_apple_1_rabbit_stew_3_agent": { - "conversation": "Let's work together to make bread, rabbit_stew, golden_apple, cooked_beef.", - "agent_count": 3, - "target": { - "bread": 1, - "rabbit_stew": 1, - "golden_apple": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "1": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "2": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." - } - } -} \ No newline at end of file diff --git a/tasks/cooking_tasks/equal_load_test_tasks/rerun_4_agent.json b/tasks/cooking_tasks/equal_load_test_tasks/rerun_4_agent.json deleted file mode 100644 index 54380ec..0000000 --- a/tasks/cooking_tasks/equal_load_test_tasks/rerun_4_agent.json +++ /dev/null @@ -1,211 +0,0 @@ -{ - "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_golden_apple_1_rabbit_stew_4_agent": { - "conversation": "Let's work together to make bread, cake, golden_apple, baked_potato, rabbit_stew.", - "agent_count": 4, - "target": { - "bread": 1, - "cake": 1, - "golden_apple": 1, - "baked_potato": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - } - }, - "multiagent_cooking_5_1_bread_1_cooked_beef_1_golden_apple_1_rabbit_stew_4_agent": { - "conversation": "Let's work together to make bread, rabbit_stew, golden_apple, cooked_beef.", - "agent_count": 4, - "target": { - "bread": 1, - "rabbit_stew": 1, - "golden_apple": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - } - }, - "multiagent_cooking_5_1_bread_1_cake_1_golden_apple_1_rabbit_stew_4_agent": { - "conversation": "Let's work together to make cake, rabbit_stew, golden_apple, bread.", - "agent_count": 4, - "target": { - "cake": 1, - "rabbit_stew": 1, - "golden_apple": 1, - "bread": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "1": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "2": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "3": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread." - } - }, - "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_4_agent": { - "conversation": "Let's work together to make cooked_beef, golden_apple, cake, baked_potato, rabbit_stew.", - "agent_count": 4, - "target": { - "cooked_beef": 1, - "golden_apple": 1, - "cake": 1, - "baked_potato": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "2": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "3": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - } - }, "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_rabbit_stew_4_agent": { - "conversation": "Let's work together to make bread, cooked_beef, rabbit_stew, baked_potato.", - "agent_count": 4, - "target": { - "bread": 1, - "cooked_beef": 1, - "rabbit_stew": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "1": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "2": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "3": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." - } - } -} \ No newline at end of file diff --git a/tasks/cooking_tasks/human_ai_tasks/1_human_1_agent.json b/tasks/cooking_tasks/human_ai_tasks/1_human_1_agent.json deleted file mode 100644 index 67eeeae..0000000 --- a/tasks/cooking_tasks/human_ai_tasks/1_human_1_agent.json +++ /dev/null @@ -1,255 +0,0 @@ -{ - "multiagent_cooking_2_1_bread_1_golden_apple": { - "conversation": "Let's work together to make golden_apple, bread.", - "agent_count": 1, - "human_count": 1, - "target": { - "golden_apple": 1, - "bread": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple, 1 bread. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", - "1": "Collaborate with agents around you to make 1 golden_apple, 1 bread. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" - }, - "initial_inventory": { - "0": { - "gold_ingot": 5 - }, - "1": { - "gold_ingot": 5, - "apple": 1 - } - }, - "usernames": [ - "izzycw" - ] - }, - "multiagent_cooking_2_1_golden_apple_1_rabbit_stew": { - "conversation": "Let's work together to make golden_apple, rabbit_stew.", - "agent_count": 1, - "human_count": 1, - "target": { - "golden_apple": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", - "1": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" - }, - "initial_inventory": { - "0": { - "gold_ingot": 5, - "bowl": 1 - }, - "1": { - "gold_ingot": 5, - "apple": 1 - } - }, - "usernames": [ - "izzycw" - ] - }, - "multiagent_cooking_2_1_bread_1_cake": { - "conversation": "Let's work together to make cake, bread.", - "agent_count": 1, - "human_count": 1, - "target": { - "cake": 1, - "bread": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", - "1": "Collaborate with agents around you to make 1 cake, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" - }, - "initial_inventory": { - "0": { - "milk_bucket": 2 - }, - "1": { - "milk_bucket": 2, - "egg": 1 - } - }, - "usernames": [ - "izzycw" - ] - }, - "multiagent_cooking_2_1_baked_potato_1_golden_apple": { - "conversation": "Let's work together to make baked_potato, golden_apple.", - "agent_count": 1, - "human_count": 1, - "target": { - "baked_potato": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ], - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" - }, - "initial_inventory": { - "0": { - "coal": 5, - "gold_ingot": 5, - "apple": 1 - }, - "1": { - "coal": 5, - "gold_ingot": 5 - } - }, - "usernames": [ - "izzycw" - ] - }, - "multiagent_cooking_2_1_baked_potato_1_cake": { - "conversation": "Let's work together to make baked_potato, cake.", - "agent_count": 1, - "human_count": 1, - "target": { - "baked_potato": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" - }, - "initial_inventory": { - "0": { - "coal": 5, - "milk_bucket": 2, - "egg": 1 - }, - "1": { - "coal": 5, - "milk_bucket": 2 - } - }, - "usernames": [ - "izzycw" - ] - }, - "multiagent_cooking_2_1_cooked_beef_1_golden_apple": { - "conversation": "Let's work together to make golden_apple, cooked_beef.", - "agent_count": 1, - "human_count": 1, - "target": { - "golden_apple": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", - "1": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" - }, - "initial_inventory": { - "0": { - "gold_ingot": 5, - "coal": 5 - }, - "1": { - "gold_ingot": 5, - "apple": 1, - "coal": 5 - } - }, - "usernames": [ - "izzycw" - ] - } -} \ No newline at end of file diff --git a/tasks/cooking_tasks/human_ai_tasks/1_human_3_agent.json b/tasks/cooking_tasks/human_ai_tasks/1_human_3_agent.json deleted file mode 100644 index 3a35fb1..0000000 --- a/tasks/cooking_tasks/human_ai_tasks/1_human_3_agent.json +++ /dev/null @@ -1,452 +0,0 @@ -{ - "multiagent_cooking_2_1_bread_1_golden_apple": { - "conversation": "Let's work together to make golden_apple, bread.", - "agent_count": 3, - "human_count": 1, - "target": { - "golden_apple": 1, - "bread": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple, 1 bread. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", - "1": "Collaborate with agents around you to make 1 golden_apple, 1 bread. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" - }, - "initial_inventory": { - "0": { - "gold_ingot": 3 - }, - "1": { - "gold_ingot": 3, - "apple": 1 - }, - "2": { - "gold_ingot": 3 - }, - "3": { - "gold_ingot": 3 - } - } - }, - "multiagent_cooking_2_1_golden_apple_1_rabbit_stew": { - "conversation": "Let's work together to make golden_apple, rabbit_stew.", - "agent_count": 3, - "human_count": 1, - "target": { - "golden_apple": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", - "1": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" - }, - "initial_inventory": { - "0": { - "gold_ingot": 3 - }, - "1": { - "gold_ingot": 3, - "apple": 1 - }, - "2": { - "gold_ingot": 3, - "bowl": 1 - }, - "3": { - "gold_ingot": 3 - } - } - }, - "multiagent_cooking_2_1_bread_1_cake": { - "conversation": "Let's work together to make cake, bread.", - "agent_count": 3, - "human_count": 1, - "target": { - "cake": 1, - "bread": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", - "1": "Collaborate with agents around you to make 1 cake, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" - }, - "initial_inventory": { - "0": { - "milk_bucket": 1 - }, - "1": { - "milk_bucket": 1, - "egg": 1 - }, - "2": { - "milk_bucket": 1 - }, - "3": { - "milk_bucket": 1 - } - } - }, - "multiagent_cooking_2_1_baked_potato_1_golden_apple": { - "conversation": "Let's work together to make baked_potato, golden_apple.", - "agent_count": 3, - ":human_count": 1, - "target": { - "baked_potato": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ], - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" - }, - "initial_inventory": { - "0": { - "coal": 3, - "gold_ingot": 3 - }, - "1": { - "coal": 3, - "gold_ingot": 3 - }, - "2": { - "coal": 3, - "gold_ingot": 3, - "apple": 1 - }, - "3": { - "coal": 3, - "gold_ingot": 3 - } - } - }, - "multiagent_cooking_2_1_baked_potato_1_rabbit_stew": { - "conversation": "Let's work together to make baked_potato, rabbit_stew.", - "agent_count": 3, - "human_count": 1, - "target": { - "baked_potato": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 rabbit_stew. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 rabbit_stew. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" - }, - "initial_inventory": { - "0": { - "coal": 3 - }, - "1": { - "coal": 3, - "bowl": 1 - }, - "2": { - "coal": 3 - }, - "3": { - "coal": 3 - } - } - }, - "multiagent_cooking_2_1_bread_1_rabbit_stew": { - "conversation": "Let's work together to make rabbit_stew, bread.", - "agent_count": 3, - "human_count": 1, - "target": { - "rabbit_stew": 1, - "bread": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" - }, - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": {}, - "2": {}, - "3": {} - } - }, - "multiagent_cooking_2_1_baked_potato_1_bread": { - "conversation": "Let's work together to make bread, baked_potato.", - "agent_count": 3, - "human_count": 1, - "target": { - "bread": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 baked_potato. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", - "1": "Collaborate with agents around you to make 1 bread, 1 baked_potato. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']" - }, - "initial_inventory": { - "0": { - "coal": 3 - }, - "1": { - "coal": 3 - }, - "2": { - "coal": 3 - }, - "3": { - "coal": 3 - } - } - }, - "multiagent_cooking_2_1_baked_potato_1_cake": { - "conversation": "Let's work together to make baked_potato, cake.", - "agent_count": 3, - "human_count": 1, - "target": { - "baked_potato": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" - }, - "initial_inventory": { - "0": { - "coal": 3, - "milk_bucket": 1 - }, - "1": { - "coal": 3, - "milk_bucket": 1 - }, - "2": { - "coal": 3, - "milk_bucket": 1, - "egg": 1 - }, - "3": { - "coal": 3, - "milk_bucket": 1 - } - } - }, - "multiagent_cooking_2_1_cooked_beef_1_golden_apple": { - "conversation": "Let's work together to make golden_apple, cooked_beef.", - "agent_count": 3, - "human_count": 1, - "target": { - "golden_apple": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", - "1": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" - }, - "initial_inventory": { - "0": { - "gold_ingot": 3, - "coal": 3 - }, - "1": { - "gold_ingot": 3, - "apple": 1, - "coal": 3 - }, - "2": { - "gold_ingot": 3, - "coal": 3 - }, - "3": { - "gold_ingot": 3, - "coal": 3 - } - } - }, - "multiagent_cooking_2_1_bread_1_cooked_beef": { - "conversation": "Let's work together to make bread, cooked_beef.", - "agent_count": 3, - "human_count": 1, - "target": { - "bread": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", - "1": "Collaborate with agents around you to make 1 bread, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" - }, - "initial_inventory": { - "0": { - "coal": 3 - }, - "1": { - "coal": 3 - }, - "2": { - "coal": 3 - }, - "3": { - "coal": 3 - } - } - } -} \ No newline at end of file diff --git a/tasks/cooking_tasks/human_tasks/1_human.json b/tasks/cooking_tasks/human_tasks/1_human.json deleted file mode 100644 index 8bb2ce7..0000000 --- a/tasks/cooking_tasks/human_tasks/1_human.json +++ /dev/null @@ -1,44 +0,0 @@ -{ -"multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_rabbit_stew": { - "conversation": "Let's work together to make cooked_beef, baked_potato, cake, rabbit_stew.", - "agent_count": 0, - "human_count": 1, - "target": { - "cooked_beef": 1, - "baked_potato": 1, - "cake": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - } - } -} \ No newline at end of file diff --git a/tasks/cooking_tasks/human_tasks/2_humans.json b/tasks/cooking_tasks/human_tasks/2_humans.json deleted file mode 100644 index 0e165c0..0000000 --- a/tasks/cooking_tasks/human_tasks/2_humans.json +++ /dev/null @@ -1,48 +0,0 @@ -{ "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_golden_apple_1_rabbit_stew": { - "conversation": "Let's work together to make bread, cake, golden_apple, baked_potato, rabbit_stew.", - "agent_count": 0, - "human_count": 2, - "target": { - "bread": 1, - "cake": 1, - "golden_apple": 1, - "baked_potato": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - } - } -} \ No newline at end of file diff --git a/tasks/cooking_tasks/human_tasks/3_humans.json b/tasks/cooking_tasks/human_tasks/3_humans.json deleted file mode 100644 index b758c27..0000000 --- a/tasks/cooking_tasks/human_tasks/3_humans.json +++ /dev/null @@ -1,48 +0,0 @@ -{ - "multiagent_cooking_5_1_bread_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew": { - "conversation": "Let's work together to make cooked_beef, golden_apple, rabbit_stew, bread, cake.", - "agent_count": 5, - "target": { - "cooked_beef": 1, - "golden_apple": 1, - "rabbit_stew": 1, - "bread": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - } - } -} \ No newline at end of file diff --git a/tasks/cooking_tasks/human_tasks/4_humans.json b/tasks/cooking_tasks/human_tasks/4_humans.json deleted file mode 100644 index 59c3007..0000000 --- a/tasks/cooking_tasks/human_tasks/4_humans.json +++ /dev/null @@ -1,40 +0,0 @@ -{ -"multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_rabbit_stew": { - "conversation": "Let's work together to make bread, cooked_beef, rabbit_stew, baked_potato.", - "agent_count": 2, - "target": { - "bread": 1, - "cooked_beef": 1, - "rabbit_stew": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." - } - } -} \ No newline at end of file diff --git a/tasks/cooking_tasks/human_tasks/5_humans.json b/tasks/cooking_tasks/human_tasks/5_humans.json deleted file mode 100644 index 039e3f9..0000000 --- a/tasks/cooking_tasks/human_tasks/5_humans.json +++ /dev/null @@ -1,49 +0,0 @@ -{ - "multiagent_cooking_5_1_bread_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew": { - "conversation": "Let's work together to make cooked_beef, golden_apple, rabbit_stew, bread, cake.", - "agent_count": 0, - "human_count": 5, - "target": { - "cooked_beef": 1, - "golden_apple": 1, - "rabbit_stew": 1, - "bread": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - } - } -} \ No newline at end of file diff --git a/tasks/cooking_tasks/human_tasks_2_items/2_humans.json b/tasks/cooking_tasks/human_tasks_2_items/2_humans.json deleted file mode 100644 index 39c740e..0000000 --- a/tasks/cooking_tasks/human_tasks_2_items/2_humans.json +++ /dev/null @@ -1,231 +0,0 @@ -{ - "multiagent_cooking_2_1_bread_1_golden_apple": { - "conversation": "Let's work together to make golden_apple, bread.", - "agent_count": 2, - "target": { - "golden_apple": 1, - "bread": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple, 1 bread. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", - "1": "Collaborate with agents around you to make 1 golden_apple, 1 bread. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" - }, - "initial_inventory": { - "0": { - "gold_ingot": 5 - }, - "1": { - "gold_ingot": 5, - "apple": 1 - } - } - }, - "multiagent_cooking_2_1_golden_apple_1_rabbit_stew": { - "conversation": "Let's work together to make golden_apple, rabbit_stew.", - "agent_count": 2, - "target": { - "golden_apple": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", - "1": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" - }, - "initial_inventory": { - "0": { - "gold_ingot": 5, - "bowl": 1 - }, - "1": { - "gold_ingot": 5, - "apple": 1 - } - } - }, - "multiagent_cooking_2_1_bread_1_cake": { - "conversation": "Let's work together to make cake, bread.", - "agent_count": 2, - "target": { - "cake": 1, - "bread": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", - "1": "Collaborate with agents around you to make 1 cake, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" - }, - "initial_inventory": { - "0": { - "milk_bucket": 2 - }, - "1": { - "milk_bucket": 2, - "egg": 1 - } - } - }, - "multiagent_cooking_2_1_baked_potato_1_golden_apple": { - "conversation": "Let's work together to make baked_potato, golden_apple.", - "agent_count": 2, - "target": { - "baked_potato": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ], - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" - }, - "initial_inventory": { - "0": { - "coal": 5, - "gold_ingot": 5, - "apple": 1 - }, - "1": { - "coal": 5, - "gold_ingot": 5 - } - } - }, - "multiagent_cooking_2_1_baked_potato_1_cake": { - "conversation": "Let's work together to make baked_potato, cake.", - "agent_count": 2, - "target": { - "baked_potato": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" - }, - "initial_inventory": { - "0": { - "coal": 5, - "milk_bucket": 2, - "egg": 1 - }, - "1": { - "coal": 5, - "milk_bucket": 2 - } - } - }, - "multiagent_cooking_2_1_cooked_beef_1_golden_apple": { - "conversation": "Let's work together to make golden_apple, cooked_beef.", - "agent_count": 2, - "target": { - "golden_apple": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", - "1": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" - }, - "initial_inventory": { - "0": { - "gold_ingot": 5, - "coal": 5 - }, - "1": { - "gold_ingot": 5, - "apple": 1, - "coal": 5 - } - } - } -} \ No newline at end of file diff --git a/tasks/cooking_tasks/human_tasks_2_items/3_humans.json b/tasks/cooking_tasks/human_tasks_2_items/3_humans.json deleted file mode 100644 index 861248c..0000000 --- a/tasks/cooking_tasks/human_tasks_2_items/3_humans.json +++ /dev/null @@ -1,252 +0,0 @@ -{ - "multiagent_cooking_2_1_bread_1_golden_apple": { - "conversation": "Let's work together to make golden_apple, bread.", - "agent_count": 3, - "target": { - "golden_apple": 1, - "bread": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple, 1 bread. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", - "1": "Collaborate with agents around you to make 1 golden_apple, 1 bread. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" - }, - "initial_inventory": { - "0": { - "gold_ingot": 3 - }, - "1": { - "gold_ingot": 3, - "apple": 1 - }, - "2": { - "gold_ingot": 3 - } - } - }, - "multiagent_cooking_2_1_golden_apple_1_rabbit_stew": { - "conversation": "Let's work together to make golden_apple, rabbit_stew.", - "agent_count": 3, - "target": { - "golden_apple": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", - "1": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" - }, - "initial_inventory": { - "0": { - "gold_ingot": 3 - }, - "1": { - "gold_ingot": 3, - "apple": 1 - }, - "2": { - "gold_ingot": 3, - "bowl": 1 - } - } - }, - "multiagent_cooking_2_1_bread_1_cake": { - "conversation": "Let's work together to make cake, bread.", - "agent_count": 3, - "target": { - "cake": 1, - "bread": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", - "1": "Collaborate with agents around you to make 1 cake, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" - }, - "initial_inventory": { - "0": { - "milk_bucket": 2 - }, - "1": { - "milk_bucket": 2, - "egg": 1 - }, - "2": { - "milk_bucket": 2 - } - } - }, - "multiagent_cooking_2_1_baked_potato_1_golden_apple": { - "conversation": "Let's work together to make baked_potato, golden_apple.", - "agent_count": 3, - "target": { - "baked_potato": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ], - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" - }, - "initial_inventory": { - "0": { - "coal": 3, - "gold_ingot": 3 - }, - "1": { - "coal": 3, - "gold_ingot": 3 - }, - "2": { - "coal": 3, - "gold_ingot": 3, - "apple": 1 - } - } - }, - "multiagent_cooking_2_1_baked_potato_1_cake": { - "conversation": "Let's work together to make baked_potato, cake.", - "agent_count": 3, - "target": { - "baked_potato": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" - }, - "initial_inventory": { - "0": { - "coal": 3, - "milk_bucket": 2 - }, - "1": { - "coal": 3, - "milk_bucket": 2 - }, - "2": { - "coal": 3, - "milk_bucket": 2, - "egg": 1 - } - } - }, - "multiagent_cooking_2_1_cooked_beef_1_golden_apple": { - "conversation": "Let's work together to make golden_apple, cooked_beef.", - "agent_count": 3, - "target": { - "golden_apple": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", - "1": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" - }, - "initial_inventory": { - "0": { - "gold_ingot": 3, - "coal": 3 - }, - "1": { - "gold_ingot": 3, - "apple": 1, - "coal": 3 - }, - "2": { - "gold_ingot": 3, - "coal": 3 - } - } - } -} \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_test/2_agent.json b/tasks/cooking_tasks/require_collab_test/2_agent.json deleted file mode 100644 index 8a2c3f2..0000000 --- a/tasks/cooking_tasks/require_collab_test/2_agent.json +++ /dev/null @@ -1,576 +0,0 @@ -{ - "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_rabbit_stew_2_agents": { - "conversation": "Let's work together to make cooked_beef, baked_potato, cake, rabbit_stew.", - "agent_count": 2, - "target": { - "cooked_beef": 1, - "baked_potato": 1, - "cake": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" - }, - "initial_inventory": { - "0": { - "coal": 16, - "egg": 1 - }, - "1": { - "milk_bucket": 3, - "bowl": 1 - } - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_golden_apple_1_rabbit_stew_2_agent": { - "conversation": "Let's work together to make bread, cake, golden_apple, baked_potato, rabbit_stew.", - "agent_count": 2, - "target": { - "bread": 1, - "cake": 1, - "golden_apple": 1, - "baked_potato": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", - "1": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" - }, - "initial_inventory": { - "0": { - "milk_bucket": 3, - "gold_ingot": 8, - "coal": 8 - }, - "1": { - "egg": 1, - "apple": 1, - "bowl": 1 - } - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_golden_apple_2_agent": { - "conversation": "Let's work together to make baked_potato, bread, cooked_beef, golden_apple.", - "agent_count": 2, - "target": { - "baked_potato": 1, - "bread": 1, - "cooked_beef": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" - }, - "initial_inventory": { - "0": { - "coal": 16, - "apple": 1 - }, - "1": { - "gold_ingot": 8 - } - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_cooked_beef_1_golden_apple": { - "conversation": "Let's work together to make cake, bread, golden_apple, baked_potato, cooked_beef.", - "agent_count": 2, - "target": { - "cake": 1, - "bread": 1, - "golden_apple": 1, - "baked_potato": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", - "1": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" - }, - "initial_inventory": { - "0": { - "milk_bucket": 3, - "gold_ingot": 8, - "coal": 16 - }, - "1": { - "egg": 1, - "apple": 1 - } - } - }, - "multiagent_cooking_5_1_baked_potato_1_cake_1_golden_apple_1_rabbit_stew_2_agent": { - "conversation": "Let's work together to make rabbit_stew, golden_apple, cake, baked_potato.", - "agent_count": 2, - "target": { - "rabbit_stew": 1, - "golden_apple": 1, - "cake": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']" - }, - "initial_inventory": { - "0": { - "bowl": 1, - "apple": 1, - "egg": 1 - }, - "1": { - "gold_ingot": 8, - "milk_bucket": 3, - "coal": 8 - } - } - }, - "multiagent_cooking_5_1_bread_1_cooked_beef_1_golden_apple_1_rabbit_stew_2_agent": { - "conversation": "Let's work together to make bread, rabbit_stew, golden_apple, cooked_beef.", - "agent_count": 2, - "target": { - "bread": 1, - "rabbit_stew": 1, - "golden_apple": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", - "1": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" - }, - "initial_inventory": { - "0": { - "bowl": 1, - "apple": 1 - }, - "1": { - "gold_ingot": 8, - "coal": 8 - } - } - }, - "multiagent_cooking_5_1_bread_1_cake_1_golden_apple_1_rabbit_stew_2_agent": { - "conversation": "Let's work together to make cake, rabbit_stew, golden_apple, bread.", - "agent_count": 2, - "target": { - "cake": 1, - "rabbit_stew": 1, - "golden_apple": 1, - "bread": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", - "1": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" - }, - "initial_inventory": { - "0": { - "milk_bucket": 3, - "bowl": 1, - "apple": 1 - }, - "1": { - "egg": 1, - "gold_ingot": 8 - } - } - }, - "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_2_agent": { - "conversation": "Let's work together to make cooked_beef, golden_apple, cake, baked_potato, rabbit_stew.", - "agent_count": 2, - "target": { - "cooked_beef": 1, - "golden_apple": 1, - "cake": 1, - "baked_potato": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" - }, - "initial_inventory": { - "0": { - "coal": 16, - "apple": 1, - "egg": 1 - }, - "1": { - "gold_ingot": 8, - "milk_bucket": 3, - "bowl": 1 - } - } - }, - "multiagent_cooking_5_1_bread_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_2_agent": { - "conversation": "Let's work together to make cooked_beef, golden_apple, rabbit_stew, bread, cake.", - "agent_count": 2, - "target": { - "cooked_beef": 1, - "golden_apple": 1, - "rabbit_stew": 1, - "bread": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" - }, - "initial_inventory": { - "0": { - "coal": 8, - "apple": 1, - "milk_bucket": 3 - }, - "1": { - "gold_ingot": 8, - "bowl": 1, - "egg": 1 - } - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_rabbit_stew_2_agent": { - "conversation": "Let's work together to make bread, cooked_beef, rabbit_stew, baked_potato.", - "agent_count": 2, - "target": { - "bread": 1, - "cooked_beef": 1, - "rabbit_stew": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", - "1": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']" - }, - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": { - "bowl": 1 - } - } - } -} \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_test/3_agent.json b/tasks/cooking_tasks/require_collab_test/3_agent.json deleted file mode 100644 index 6b975d1..0000000 --- a/tasks/cooking_tasks/require_collab_test/3_agent.json +++ /dev/null @@ -1,605 +0,0 @@ -{ - "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_rabbit_stew_3_agent": { - "conversation": "Let's work together to make cooked_beef, baked_potato, cake, rabbit_stew.", - "agent_count": 3, - "target": { - "cooked_beef": 1, - "baked_potato": 1, - "cake": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", - "2": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" - }, - "initial_inventory": { - "0": { - "coal": 16, - "bowl": 1 - }, - "1": { - "milk_bucket": 3 - }, - "2": { - "egg": 1 - } - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_golden_apple_1_rabbit_stew_3_agent": { - "conversation": "Let's work together to make bread, cake, golden_apple, baked_potato, rabbit_stew.", - "agent_count": 3, - "target": { - "bread": 1, - "cake": 1, - "golden_apple": 1, - "baked_potato": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", - "1": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", - "2": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" - }, - "initial_inventory": { - "0": { - "milk_bucket": 3, - "apple": 1 - }, - "1": { - "egg": 1, - "coal": 8 - }, - "2": { - "gold_ingot": 8, - "bowl": 1 - } - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_golden_apple_3_agent": { - "conversation": "Let's work together to make baked_potato, bread, cooked_beef, golden_apple.", - "agent_count": 3, - "target": { - "baked_potato": 1, - "bread": 1, - "cooked_beef": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", - "2": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" - }, - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": { - "gold_ingot": 8 - }, - "2": { - "apple": 1 - } - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_cooked_beef_1_golden_apple_3_agent": { - "conversation": "Let's work together to make cake, bread, golden_apple, baked_potato, cooked_beef.", - "agent_count": 3, - "target": { - "cake": 1, - "bread": 1, - "golden_apple": 1, - "baked_potato": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", - "1": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", - "2": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" - }, - "initial_inventory": { - "0": { - "milk_bucket": 3, - "apple": 1 - }, - "1": { - "egg": 1, - "coal": 16 - }, - "2": { - "gold_ingot": 8 - } - } - }, - "multiagent_cooking_5_1_baked_potato_1_cake_1_golden_apple_1_rabbit_stew_3_agent": { - "conversation": "Let's work together to make rabbit_stew, golden_apple, cake, baked_potato.", - "agent_count": 3, - "target": { - "rabbit_stew": 1, - "golden_apple": 1, - "cake": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", - "2": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']" - }, - "initial_inventory": { - "0": { - "bowl": 1, - "milk_bucket": 3 - }, - "1": { - "gold_ingot": 8, - "egg": 1 - }, - "2": { - "apple": 1, - "coal": 8 - } - } - }, - "multiagent_cooking_5_1_bread_1_cooked_beef_1_golden_apple_1_rabbit_stew_3_agent": { - "conversation": "Let's work together to make bread, rabbit_stew, golden_apple, cooked_beef.", - "agent_count": 3, - "target": { - "bread": 1, - "rabbit_stew": 1, - "golden_apple": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", - "1": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", - "2": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" - }, - "initial_inventory": { - "0": { - "bowl": 1, - "coal": 8 - }, - "1": { - "gold_ingot": 8 - }, - "2": { - "apple": 1 - } - } - }, - "multiagent_cooking_5_1_bread_1_cake_1_golden_apple_1_rabbit_stew_3_agent": { - "conversation": "Let's work together to make cake, rabbit_stew, golden_apple, bread.", - "agent_count": 3, - "target": { - "cake": 1, - "rabbit_stew": 1, - "golden_apple": 1, - "bread": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", - "1": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", - "2": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" - }, - "initial_inventory": { - "0": { - "milk_bucket": 3, - "gold_ingot": 8 - }, - "1": { - "egg": 1, - "apple": 1 - }, - "2": { - "bowl": 1 - } - } - }, - "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew": { - "conversation": "Let's work together to make cooked_beef, golden_apple, cake, baked_potato, rabbit_stew.", - "agent_count": 3, - "target": { - "cooked_beef": 1, - "golden_apple": 1, - "cake": 1, - "baked_potato": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", - "2": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" - }, - "initial_inventory": { - "0": { - "coal": 16, - "milk_bucket": 3 - }, - "1": { - "gold_ingot": 8, - "egg": 1 - }, - "2": { - "apple": 1, - "bowl": 1 - } - } - }, - "multiagent_cooking_5_1_bread_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_3_agent": { - "conversation": "Let's work together to make cooked_beef, golden_apple, rabbit_stew, bread, cake.", - "agent_count": 3, - "target": { - "cooked_beef": 1, - "golden_apple": 1, - "rabbit_stew": 1, - "bread": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", - "2": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" - }, - "initial_inventory": { - "0": { - "coal": 8, - "bowl": 1 - }, - "1": { - "gold_ingot": 8, - "milk_bucket": 3 - }, - "2": { - "apple": 1, - "egg": 1 - } - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_rabbit_stew_3_agent": { - "conversation": "Let's work together to make bread, cooked_beef, rabbit_stew, baked_potato.", - "agent_count": 3, - "target": { - "bread": 1, - "cooked_beef": 1, - "rabbit_stew": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", - "1": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", - "2": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']" - }, - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": { - "bowl": 1 - }, - "2": {} - } - } -} \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_test/4_agent.json b/tasks/cooking_tasks/require_collab_test/4_agent.json deleted file mode 100644 index 0faf624..0000000 --- a/tasks/cooking_tasks/require_collab_test/4_agent.json +++ /dev/null @@ -1,634 +0,0 @@ -{ - "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_rabbit_stew_4_agent": { - "conversation": "Let's work together to make cooked_beef, baked_potato, cake, rabbit_stew.", - "agent_count": 4, - "target": { - "cooked_beef": 1, - "baked_potato": 1, - "cake": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", - "2": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", - "3": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" - }, - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": { - "milk_bucket": 3 - }, - "2": { - "egg": 1 - }, - "3": { - "bowl": 1 - } - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_golden_apple_1_rabbit_stew_4_agent": { - "conversation": "Let's work together to make bread, cake, golden_apple, baked_potato, rabbit_stew.", - "agent_count": 4, - "target": { - "bread": 1, - "cake": 1, - "golden_apple": 1, - "baked_potato": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", - "1": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", - "2": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", - "3": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" - }, - "initial_inventory": { - "0": { - "milk_bucket": 3, - "coal": 8 - }, - "1": { - "egg": 1, - "bowl": 1 - }, - "2": { - "gold_ingot": 8 - }, - "3": { - "apple": 1 - } - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_golden_apple_4_agent": { - "conversation": "Let's work together to make baked_potato, bread, cooked_beef, golden_apple.", - "agent_count": 4, - "target": { - "baked_potato": 1, - "bread": 1, - "cooked_beef": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", - "2": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", - "3": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" - }, - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": { - "gold_ingot": 8 - }, - "2": { - "apple": 1 - }, - "3": {} - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_cooked_beef_1_golden_apple_4_agent": { - "conversation": "Let's work together to make cake, bread, golden_apple, baked_potato, cooked_beef.", - "agent_count": 4, - "target": { - "cake": 1, - "bread": 1, - "golden_apple": 1, - "baked_potato": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", - "1": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", - "2": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", - "3": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" - }, - "initial_inventory": { - "0": { - "milk_bucket": 3, - "coal": 16 - }, - "1": { - "egg": 1 - }, - "2": { - "gold_ingot": 8 - }, - "3": { - "apple": 1 - } - } - }, - "multiagent_cooking_5_1_baked_potato_1_cake_1_golden_apple_1_rabbit_stew_4_agent": { - "conversation": "Let's work together to make rabbit_stew, golden_apple, cake, baked_potato.", - "agent_count": 4, - "target": { - "rabbit_stew": 1, - "golden_apple": 1, - "cake": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", - "2": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", - "3": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']" - }, - "initial_inventory": { - "0": { - "bowl": 1, - "egg": 1 - }, - "1": { - "gold_ingot": 8, - "coal": 8 - }, - "2": { - "apple": 1 - }, - "3": { - "milk_bucket": 3 - } - } - }, - "multiagent_cooking_5_1_bread_1_cooked_beef_1_golden_apple_1_rabbit_stew_4_agent": { - "conversation": "Let's work together to make bread, rabbit_stew, golden_apple, cooked_beef.", - "agent_count": 5, - "target": { - "bread": 1, - "rabbit_stew": 1, - "golden_apple": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", - "1": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", - "2": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", - "3": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" - }, - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "gold_ingot": 8 - }, - "2": { - "apple": 1 - }, - "3": { - "coal": 8 - }, - "4": {} - } - }, - "multiagent_cooking_5_1_bread_1_cake_1_golden_apple_1_rabbit_stew_4_agent": { - "conversation": "Let's work together to make cake, rabbit_stew, golden_apple, bread.", - "agent_count": 4, - "target": { - "cake": 1, - "rabbit_stew": 1, - "golden_apple": 1, - "bread": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", - "1": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", - "2": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", - "3": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" - }, - "initial_inventory": { - "0": { - "milk_bucket": 3, - "apple": 1 - }, - "1": { - "egg": 1 - }, - "2": { - "bowl": 1 - }, - "3": { - "gold_ingot": 8 - } - } - }, - "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_4_agent": { - "conversation": "Let's work together to make cooked_beef, golden_apple, cake, baked_potato, rabbit_stew.", - "agent_count": 4, - "target": { - "cooked_beef": 1, - "golden_apple": 1, - "cake": 1, - "baked_potato": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", - "2": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", - "3": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" - }, - "initial_inventory": { - "0": { - "coal": 16, - "egg": 1 - }, - "1": { - "gold_ingot": 8, - "bowl": 1 - }, - "2": { - "apple": 1 - }, - "3": { - "milk_bucket": 3 - } - } - }, - "multiagent_cooking_5_1_bread_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_4_agent": { - "conversation": "Let's work together to make cooked_beef, golden_apple, rabbit_stew, bread, cake.", - "agent_count": 4, - "target": { - "cooked_beef": 1, - "golden_apple": 1, - "rabbit_stew": 1, - "bread": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", - "2": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", - "3": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" - }, - "initial_inventory": { - "0": { - "coal": 8, - "milk_bucket": 3 - }, - "1": { - "gold_ingot": 8, - "egg": 1 - }, - "2": { - "apple": 1 - }, - "3": { - "bowl": 1 - } - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_rabbit_stew_4_agent": { - "conversation": "Let's work together to make bread, cooked_beef, rabbit_stew, baked_potato.", - "agent_count": 4, - "target": { - "bread": 1, - "cooked_beef": 1, - "rabbit_stew": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", - "1": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", - "2": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", - "3": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']" - }, - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": { - "bowl": 1 - }, - "2": {}, - "3": {} - } - } -} \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_test/5_agent.json b/tasks/cooking_tasks/require_collab_test/5_agent.json deleted file mode 100644 index 806da33..0000000 --- a/tasks/cooking_tasks/require_collab_test/5_agent.json +++ /dev/null @@ -1,659 +0,0 @@ -{ - "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_rabbit_stew": { - "conversation": "Let's work together to make cooked_beef, baked_potato, cake, rabbit_stew.", - "agent_count": 5, - "target": { - "cooked_beef": 1, - "baked_potato": 1, - "cake": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", - "2": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", - "3": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", - "4": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" - }, - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": { - "milk_bucket": 3 - }, - "2": { - "egg": 1 - }, - "3": { - "bowl": 1 - }, - "4": {} - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_golden_apple_1_rabbit_stew": { - "conversation": "Let's work together to make bread, cake, golden_apple, baked_potato, rabbit_stew.", - "agent_count": 5, - "target": { - "bread": 1, - "cake": 1, - "golden_apple": 1, - "baked_potato": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", - "1": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", - "2": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", - "3": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", - "4": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" - }, - "initial_inventory": { - "0": { - "milk_bucket": 3, - "bowl": 1 - }, - "1": { - "egg": 1 - }, - "2": { - "gold_ingot": 8 - }, - "3": { - "apple": 1 - }, - "4": { - "coal": 8 - } - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_golden_apple": { - "conversation": "Let's work together to make baked_potato, bread, cooked_beef, golden_apple.", - "agent_count": 5, - "target": { - "baked_potato": 1, - "bread": 1, - "cooked_beef": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", - "2": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", - "3": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", - "4": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" - }, - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": { - "gold_ingot": 8 - }, - "2": { - "apple": 1 - }, - "3": {}, - "4": {} - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_cooked_beef_1_golden_apple": { - "conversation": "Let's work together to make cake, bread, golden_apple, baked_potato, cooked_beef.", - "agent_count": 5, - "target": { - "cake": 1, - "bread": 1, - "golden_apple": 1, - "baked_potato": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", - "1": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", - "2": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", - "3": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", - "4": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" - }, - "initial_inventory": { - "0": { - "milk_bucket": 3 - }, - "1": { - "egg": 1 - }, - "2": { - "gold_ingot": 8 - }, - "3": { - "apple": 1 - }, - "4": { - "coal": 16 - } - } - }, - "multiagent_cooking_5_1_baked_potato_1_cake_1_golden_apple_1_rabbit_stew": { - "conversation": "Let's work together to make rabbit_stew, golden_apple, cake, baked_potato.", - "agent_count": 5, - "target": { - "rabbit_stew": 1, - "golden_apple": 1, - "cake": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", - "2": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", - "3": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", - "4": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']" - }, - "initial_inventory": { - "0": { - "bowl": 1, - "coal": 8 - }, - "1": { - "gold_ingot": 8 - }, - "2": { - "apple": 1 - }, - "3": { - "milk_bucket": 3 - }, - "4": { - "egg": 1 - } - } - }, - "multiagent_cooking_5_1_bread_1_cooked_beef_1_golden_apple_1_rabbit_stew": { - "conversation": "Let's work together to make bread, rabbit_stew, golden_apple, cooked_beef.", - "agent_count": 5, - "target": { - "bread": 1, - "rabbit_stew": 1, - "golden_apple": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", - "1": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", - "2": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", - "3": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", - "4": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" - }, - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "gold_ingot": 8 - }, - "2": { - "apple": 1 - }, - "3": { - "coal": 8 - }, - "4": {} - } - }, - "multiagent_cooking_5_1_bread_1_cake_1_golden_apple_1_rabbit_stew": { - "conversation": "Let's work together to make cake, rabbit_stew, golden_apple, bread.", - "agent_count": 5, - "target": { - "cake": 1, - "rabbit_stew": 1, - "golden_apple": 1, - "bread": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", - "1": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", - "2": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", - "3": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", - "4": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" - }, - "initial_inventory": { - "0": { - "milk_bucket": 3 - }, - "1": { - "egg": 1 - }, - "2": { - "bowl": 1 - }, - "3": { - "gold_ingot": 8 - }, - "4": { - "apple": 1 - } - } - }, - "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew": { - "conversation": "Let's work together to make cooked_beef, golden_apple, cake, baked_potato, rabbit_stew.", - "agent_count": 5, - "target": { - "cooked_beef": 1, - "golden_apple": 1, - "cake": 1, - "baked_potato": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", - "2": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", - "3": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", - "4": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" - }, - "initial_inventory": { - "0": { - "coal": 16, - "bowl": 1 - }, - "1": { - "gold_ingot": 8 - }, - "2": { - "apple": 1 - }, - "3": { - "milk_bucket": 3 - }, - "4": { - "egg": 1 - } - } - }, - "multiagent_cooking_5_1_bread_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew": { - "conversation": "Let's work together to make cooked_beef, golden_apple, rabbit_stew, bread, cake.", - "agent_count": 5, - "target": { - "cooked_beef": 1, - "golden_apple": 1, - "rabbit_stew": 1, - "bread": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", - "2": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", - "3": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", - "4": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" - }, - "initial_inventory": { - "0": { - "coal": 8, - "egg": 1 - }, - "1": { - "gold_ingot": 8 - }, - "2": { - "apple": 1 - }, - "3": { - "bowl": 1 - }, - "4": { - "milk_bucket": 3 - } - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_rabbit_stew": { - "conversation": "Let's work together to make bread, cooked_beef, rabbit_stew, baked_potato.", - "agent_count": 5, - "target": { - "bread": 1, - "cooked_beef": 1, - "rabbit_stew": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", - "1": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", - "2": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", - "3": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", - "4": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']" - }, - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": { - "bowl": 1 - }, - "2": {}, - "3": {}, - "4": {} - } - } -} \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_test_3_items/2_agent.json b/tasks/cooking_tasks/require_collab_test_3_items/2_agent.json deleted file mode 100644 index e68f3fa..0000000 --- a/tasks/cooking_tasks/require_collab_test_3_items/2_agent.json +++ /dev/null @@ -1,319 +0,0 @@ -{ - "multiagent_cooking_3_1_baked_potato_1_bread_1_cake": { - "conversation": "Let's work together to make bread, baked_potato, cake.", - "agent_count": 2, - "target": { - "bread": 1, - "baked_potato": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cake. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", - "1": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cake. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", - "2": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cake. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" - }, - "initial_inventory": { - "0": { - "coal": 5, - "milk_bucket": 2, - "egg": 1 - }, - "1": { - "coal": 5, - "milk_bucket": 2 - } - } - }, - "multiagent_cooking_3_1_cake_1_golden_apple": { - "conversation": "Let's work together to make golden_apple, cake.", - "agent_count": 2, - "target": { - "golden_apple": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple, 1 cake. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", - "1": "Collaborate with agents around you to make 1 golden_apple, 1 cake. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", - "2": "Collaborate with agents around you to make 1 golden_apple, 1 cake. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" - }, - "initial_inventory": { - "0": { - "gold_ingot": 5, - "milk_bucket": 2 - }, - "1": { - "gold_ingot": 5, - "apple": 1, - "milk_bucket": 2, - "egg": 1 - } - } - }, - "multiagent_cooking_3_1_baked_potato_1_cooked_beef_1_golden_apple": { - "conversation": "Let's work together to make golden_apple, cooked_beef, baked_potato.", - "agent_count": 2, - "target": { - "golden_apple": 1, - "cooked_beef": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef, 1 baked_potato. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", - "1": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef, 1 baked_potato. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", - "2": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef, 1 baked_potato. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']" - }, - "initial_inventory": { - "0": { - "gold_ingot": 5, - "coal": 9 - }, - "1": { - "gold_ingot": 5, - "apple": 1, - "coal": 9 - } - } - }, - "multiagent_cooking_3_1_bread_1_cooked_beef_1_golden_apple": { - "conversation": "Let's work together to make cooked_beef, bread, golden_apple.", - "agent_count": 2, - "target": { - "cooked_beef": 1, - "bread": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 bread, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 bread, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", - "2": "Collaborate with agents around you to make 1 cooked_beef, 1 bread, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" - }, - "initial_inventory": { - "0": { - "coal": 5, - "gold_ingot": 5, - "apple": 1 - }, - "1": { - "coal": 5, - "gold_ingot": 5 - } - } - }, - "multiagent_cooking_3_1_baked_potato_1_cake": { - "conversation": "Let's work together to make baked_potato, cake.", - "agent_count": 2, - "target": { - "baked_potato": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", - "2": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" - }, - "initial_inventory": { - "0": { - "coal": 5, - "milk_bucket": 2, - "egg": 1 - }, - "1": { - "coal": 5, - "milk_bucket": 2 - } - } - }, - "multiagent_cooking_3_1_bread_1_golden_apple_1_rabbit_stew": { - "conversation": "Let's work together to make rabbit_stew, bread, golden_apple.", - "agent_count": 2, - "target": { - "rabbit_stew": 1, - "bread": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread, 1 golden_apple. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread, 1 golden_apple. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", - "2": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread, 1 golden_apple. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" - }, - "initial_inventory": { - "0": { - "bowl": 1, - "gold_ingot": 5, - "apple": 1 - }, - "1": { - "gold_ingot": 5 - } - } - }, - "multiagent_cooking_3_1_cake_1_cooked_beef_1_golden_apple": { - "conversation": "Let's work together to make cooked_beef, cake, golden_apple.", - "agent_count": 2, - "target": { - "cooked_beef": 1, - "cake": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 cake, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 cake, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", - "2": "Collaborate with agents around you to make 1 cooked_beef, 1 cake, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" - }, - "initial_inventory": { - "0": { - "coal": 5, - "milk_bucket": 2, - "egg": 1, - "gold_ingot": 5, - "apple": 1 - }, - "1": { - "coal": 5, - "milk_bucket": 2, - "gold_ingot": 5 - } - } - } -} \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_test_3_items/3_agent.json b/tasks/cooking_tasks/require_collab_test_3_items/3_agent.json deleted file mode 100644 index 57fb769..0000000 --- a/tasks/cooking_tasks/require_collab_test_3_items/3_agent.json +++ /dev/null @@ -1,478 +0,0 @@ -{ - "multiagent_cooking_3_1_baked_potato_1_bread_1_cake": { - "conversation": "Let's work together to make bread, baked_potato, cake.", - "agent_count": 3, - "target": { - "bread": 1, - "baked_potato": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cake. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", - "1": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cake. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", - "2": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cake. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" - }, - "initial_inventory": { - "0": { - "coal": 3, - "milk_bucket": 2 - }, - "1": { - "coal": 3, - "milk_bucket": 2 - }, - "2": { - "coal": 3, - "milk_bucket": 2, - "egg": 1 - } - } - }, - "multiagent_cooking_3_1_cake_1_golden_apple": { - "conversation": "Let's work together to make golden_apple, cake.", - "agent_count": 3, - "target": { - "golden_apple": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple, 1 cake. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", - "1": "Collaborate with agents around you to make 1 golden_apple, 1 cake. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", - "2": "Collaborate with agents around you to make 1 golden_apple, 1 cake. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" - }, - "initial_inventory": { - "0": { - "gold_ingot": 3, - "milk_bucket": 2, - "egg": 1 - }, - "1": { - "gold_ingot": 3, - "apple": 1, - "milk_bucket": 2 - }, - "2": { - "gold_ingot": 3, - "milk_bucket": 2 - } - } - }, - "multiagent_cooking_3_1_baked_potato_1_cooked_beef_1_golden_apple": { - "conversation": "Let's work together to make golden_apple, cooked_beef, baked_potato.", - "agent_count": 3, - "target": { - "golden_apple": 1, - "cooked_beef": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef, 1 baked_potato. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", - "1": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef, 1 baked_potato. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", - "2": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef, 1 baked_potato. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']" - }, - "initial_inventory": { - "0": { - "gold_ingot": 3, - "coal": 6 - }, - "1": { - "gold_ingot": 3, - "apple": 1, - "coal": 6 - }, - "2": { - "gold_ingot": 3, - "coal": 6 - } - } - }, - "multiagent_cooking_3_1_bread_1_cooked_beef_1_golden_apple": { - "conversation": "Let's work together to make cooked_beef, bread, golden_apple.", - "agent_count": 3, - "target": { - "cooked_beef": 1, - "bread": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 bread, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 bread, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", - "2": "Collaborate with agents around you to make 1 cooked_beef, 1 bread, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" - }, - "initial_inventory": { - "0": { - "coal": 3, - "gold_ingot": 3 - }, - "1": { - "coal": 3, - "gold_ingot": 3 - }, - "2": { - "coal": 3, - "gold_ingot": 3, - "apple": 1 - } - } - }, - "multiagent_cooking_3_1_baked_potato_1_cake": { - "conversation": "Let's work together to make baked_potato, cake.", - "agent_count": 3, - "target": { - "baked_potato": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", - "2": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" - }, - "initial_inventory": { - "0": { - "coal": 3, - "milk_bucket": 2 - }, - "1": { - "coal": 3, - "milk_bucket": 2 - }, - "2": { - "coal": 3, - "milk_bucket": 2, - "egg": 1 - } - } - }, - "multiagent_cooking_3_1_bread_1_golden_apple_1_rabbit_stew": { - "conversation": "Let's work together to make rabbit_stew, bread, golden_apple.", - "agent_count": 3, - "target": { - "rabbit_stew": 1, - "bread": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread, 1 golden_apple. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread, 1 golden_apple. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", - "2": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread, 1 golden_apple. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" - }, - "initial_inventory": { - "0": { - "bowl": 1, - "gold_ingot": 3 - }, - "1": { - "gold_ingot": 3 - }, - "2": { - "gold_ingot": 3, - "apple": 1 - } - } - }, - "multiagent_cooking_3_1_baked_potato_1_bread_1_cooked_beef": { - "conversation": "Let's work together to make bread, baked_potato, cooked_beef.", - "agent_count": 3, - "target": { - "bread": 1, - "baked_potato": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", - "1": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", - "2": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" - }, - "initial_inventory": { - "0": { - "coal": 6 - }, - "1": { - "coal": 6 - }, - "2": { - "coal": 6 - } - } - }, - "multiagent_cooking_3_1_baked_potato_1_rabbit_stew": { - "conversation": "Let's work together to make rabbit_stew, baked_potato.", - "agent_count": 3, - "target": { - "rabbit_stew": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", - "2": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']" - }, - "initial_inventory": { - "0": { - "bowl": 1, - "coal": 3 - }, - "1": { - "coal": 3 - }, - "2": { - "coal": 3 - } - } - }, - "multiagent_cooking_3_1_cake_1_cooked_beef_1_golden_apple": { - "conversation": "Let's work together to make cooked_beef, cake, golden_apple.", - "agent_count": 3, - "target": { - "cooked_beef": 1, - "cake": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 cake, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 cake, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", - "2": "Collaborate with agents around you to make 1 cooked_beef, 1 cake, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" - }, - "initial_inventory": { - "0": { - "coal": 3, - "milk_bucket": 2, - "gold_ingot": 3 - }, - "1": { - "coal": 3, - "milk_bucket": 2, - "gold_ingot": 3, - "apple": 1 - }, - "2": { - "coal": 3, - "milk_bucket": 2, - "egg": 1, - "gold_ingot": 3 - } - } - }, - "multiagent_cooking_3_1_bread_1_cooked_beef": { - "conversation": "Let's work together to make cooked_beef, bread.", - "agent_count": 3, - "target": { - "cooked_beef": 1, - "bread": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 bread. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 bread. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", - "2": "Collaborate with agents around you to make 1 cooked_beef, 1 bread. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" - }, - "initial_inventory": { - "0": { - "coal": 3 - }, - "1": { - "coal": 3 - }, - "2": { - "coal": 3 - } - } - } -} \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_test_3_items/4_agent.json b/tasks/cooking_tasks/require_collab_test_3_items/4_agent.json deleted file mode 100644 index fa2926d..0000000 --- a/tasks/cooking_tasks/require_collab_test_3_items/4_agent.json +++ /dev/null @@ -1,515 +0,0 @@ -{ - "multiagent_cooking_3_1_baked_potato_1_bread_1_cake": { - "conversation": "Let's work together to make bread, baked_potato, cake.", - "agent_count": 4, - "target": { - "bread": 1, - "baked_potato": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cake. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", - "1": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cake. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", - "2": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cake. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" - }, - "initial_inventory": { - "0": { - "coal": 3, - "milk_bucket": 1 - }, - "1": { - "coal": 3, - "milk_bucket": 1 - }, - "2": { - "coal": 3, - "milk_bucket": 1, - "egg": 1 - }, - "3": { - "coal": 3, - "milk_bucket": 1 - } - } - }, - "multiagent_cooking_3_1_cake_1_golden_apple": { - "conversation": "Let's work together to make golden_apple, cake.", - "agent_count": 4, - "target": { - "golden_apple": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple, 1 cake. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", - "1": "Collaborate with agents around you to make 1 golden_apple, 1 cake. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", - "2": "Collaborate with agents around you to make 1 golden_apple, 1 cake. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" - }, - "initial_inventory": { - "0": { - "gold_ingot": 3, - "milk_bucket": 1 - }, - "1": { - "gold_ingot": 3, - "apple": 1, - "milk_bucket": 1 - }, - "2": { - "gold_ingot": 3, - "milk_bucket": 1 - }, - "3": { - "gold_ingot": 3, - "milk_bucket": 1, - "egg": 1 - } - } - }, - "multiagent_cooking_3_1_baked_potato_1_cooked_beef_1_golden_apple": { - "conversation": "Let's work together to make golden_apple, cooked_beef, baked_potato.", - "agent_count": 4, - "target": { - "golden_apple": 1, - "cooked_beef": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef, 1 baked_potato. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", - "1": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef, 1 baked_potato. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", - "2": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef, 1 baked_potato. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']" - }, - "initial_inventory": { - "0": { - "gold_ingot": 3, - "coal": 5 - }, - "1": { - "gold_ingot": 3, - "apple": 1, - "coal": 5 - }, - "2": { - "gold_ingot": 3, - "coal": 5 - }, - "3": { - "gold_ingot": 3, - "coal": 5 - } - } - }, - "multiagent_cooking_3_1_bread_1_cooked_beef_1_golden_apple": { - "conversation": "Let's work together to make cooked_beef, bread, golden_apple.", - "agent_count": 4, - "target": { - "cooked_beef": 1, - "bread": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 bread, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 bread, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", - "2": "Collaborate with agents around you to make 1 cooked_beef, 1 bread, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" - }, - "initial_inventory": { - "0": { - "coal": 3, - "gold_ingot": 3 - }, - "1": { - "coal": 3, - "gold_ingot": 3 - }, - "2": { - "coal": 3, - "gold_ingot": 3, - "apple": 1 - }, - "3": { - "coal": 3, - "gold_ingot": 3 - } - } - }, - "multiagent_cooking_3_1_baked_potato_1_cake": { - "conversation": "Let's work together to make baked_potato, cake.", - "agent_count": 4, - "target": { - "baked_potato": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", - "2": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" - }, - "initial_inventory": { - "0": { - "coal": 3, - "milk_bucket": 1 - }, - "1": { - "coal": 3, - "milk_bucket": 1 - }, - "2": { - "coal": 3, - "milk_bucket": 1, - "egg": 1 - }, - "3": { - "coal": 3, - "milk_bucket": 1 - } - } - }, - "multiagent_cooking_3_1_bread_1_golden_apple_1_rabbit_stew": { - "conversation": "Let's work together to make rabbit_stew, bread, golden_apple.", - "agent_count": 4, - "target": { - "rabbit_stew": 1, - "bread": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread, 1 golden_apple. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread, 1 golden_apple. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", - "2": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread, 1 golden_apple. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" - }, - "initial_inventory": { - "0": { - "bowl": 1, - "gold_ingot": 3 - }, - "1": { - "gold_ingot": 3 - }, - "2": { - "gold_ingot": 3, - "apple": 1 - }, - "3": { - "gold_ingot": 3 - } - } - }, - "multiagent_cooking_3_1_baked_potato_1_bread_1_cooked_beef": { - "conversation": "Let's work together to make bread, baked_potato, cooked_beef.", - "agent_count": 4, - "target": { - "bread": 1, - "baked_potato": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", - "1": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", - "2": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" - }, - "initial_inventory": { - "0": { - "coal": 5 - }, - "1": { - "coal": 5 - }, - "2": { - "coal": 5 - }, - "3": { - "coal": 5 - } - } - }, - "multiagent_cooking_3_1_baked_potato_1_rabbit_stew": { - "conversation": "Let's work together to make rabbit_stew, baked_potato.", - "agent_count": 4, - "target": { - "rabbit_stew": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", - "2": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']" - }, - "initial_inventory": { - "0": { - "bowl": 1, - "coal": 3 - }, - "1": { - "coal": 3 - }, - "2": { - "coal": 3 - }, - "3": { - "coal": 3 - } - } - }, - "multiagent_cooking_3_1_cake_1_cooked_beef_1_golden_apple": { - "conversation": "Let's work together to make cooked_beef, cake, golden_apple.", - "agent_count": 4, - "target": { - "cooked_beef": 1, - "cake": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 cake, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 cake, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", - "2": "Collaborate with agents around you to make 1 cooked_beef, 1 cake, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" - }, - "initial_inventory": { - "0": { - "coal": 3, - "milk_bucket": 1, - "gold_ingot": 3, - "apple": 1 - }, - "1": { - "coal": 3, - "milk_bucket": 1, - "gold_ingot": 3 - }, - "2": { - "coal": 3, - "milk_bucket": 1, - "egg": 1, - "gold_ingot": 3 - }, - "3": { - "coal": 3, - "milk_bucket": 1, - "gold_ingot": 3 - } - } - }, - "multiagent_cooking_3_1_bread_1_cooked_beef": { - "conversation": "Let's work together to make cooked_beef, bread.", - "agent_count": 4, - "target": { - "cooked_beef": 1, - "bread": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 bread. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 bread. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", - "2": "Collaborate with agents around you to make 1 cooked_beef, 1 bread. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" - }, - "initial_inventory": { - "0": { - "coal": 3 - }, - "1": { - "coal": 3 - }, - "2": { - "coal": 3 - }, - "3": { - "coal": 3 - } - } - } -} \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_test_3_items/4_agent_long_timeout.json b/tasks/cooking_tasks/require_collab_test_3_items/4_agent_long_timeout.json deleted file mode 100644 index 98233f2..0000000 --- a/tasks/cooking_tasks/require_collab_test_3_items/4_agent_long_timeout.json +++ /dev/null @@ -1,515 +0,0 @@ -{ - "multiagent_cooking_3_1_baked_potato_1_bread_1_cake": { - "conversation": "Let's work together to make bread, baked_potato, cake.", - "agent_count": 4, - "target": { - "bread": 1, - "baked_potato": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cake. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", - "1": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cake. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", - "2": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cake. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" - }, - "initial_inventory": { - "0": { - "coal": 3, - "milk_bucket": 1 - }, - "1": { - "coal": 3, - "milk_bucket": 1 - }, - "2": { - "coal": 3, - "milk_bucket": 1, - "egg": 1 - }, - "3": { - "coal": 3, - "milk_bucket": 1 - } - } - }, - "multiagent_cooking_3_1_cake_1_golden_apple": { - "conversation": "Let's work together to make golden_apple, cake.", - "agent_count": 4, - "target": { - "golden_apple": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple, 1 cake. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", - "1": "Collaborate with agents around you to make 1 golden_apple, 1 cake. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", - "2": "Collaborate with agents around you to make 1 golden_apple, 1 cake. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" - }, - "initial_inventory": { - "0": { - "gold_ingot": 3, - "milk_bucket": 1 - }, - "1": { - "gold_ingot": 3, - "apple": 1, - "milk_bucket": 1 - }, - "2": { - "gold_ingot": 3, - "milk_bucket": 1 - }, - "3": { - "gold_ingot": 3, - "milk_bucket": 1, - "egg": 1 - } - } - }, - "multiagent_cooking_3_1_baked_potato_1_cooked_beef_1_golden_apple": { - "conversation": "Let's work together to make golden_apple, cooked_beef, baked_potato.", - "agent_count": 4, - "target": { - "golden_apple": 1, - "cooked_beef": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef, 1 baked_potato. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", - "1": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef, 1 baked_potato. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", - "2": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef, 1 baked_potato. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']" - }, - "initial_inventory": { - "0": { - "gold_ingot": 3, - "coal": 5 - }, - "1": { - "gold_ingot": 3, - "apple": 1, - "coal": 5 - }, - "2": { - "gold_ingot": 3, - "coal": 5 - }, - "3": { - "gold_ingot": 3, - "coal": 5 - } - } - }, - "multiagent_cooking_3_1_bread_1_cooked_beef_1_golden_apple": { - "conversation": "Let's work together to make cooked_beef, bread, golden_apple.", - "agent_count": 4, - "target": { - "cooked_beef": 1, - "bread": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 bread, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 bread, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", - "2": "Collaborate with agents around you to make 1 cooked_beef, 1 bread, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" - }, - "initial_inventory": { - "0": { - "coal": 3, - "gold_ingot": 3 - }, - "1": { - "coal": 3, - "gold_ingot": 3 - }, - "2": { - "coal": 3, - "gold_ingot": 3, - "apple": 1 - }, - "3": { - "coal": 3, - "gold_ingot": 3 - } - } - }, - "multiagent_cooking_3_1_baked_potato_1_cake": { - "conversation": "Let's work together to make baked_potato, cake.", - "agent_count": 4, - "target": { - "baked_potato": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", - "2": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" - }, - "initial_inventory": { - "0": { - "coal": 3, - "milk_bucket": 1 - }, - "1": { - "coal": 3, - "milk_bucket": 1 - }, - "2": { - "coal": 3, - "milk_bucket": 1, - "egg": 1 - }, - "3": { - "coal": 3, - "milk_bucket": 1 - } - } - }, - "multiagent_cooking_3_1_bread_1_golden_apple_1_rabbit_stew": { - "conversation": "Let's work together to make rabbit_stew, bread, golden_apple.", - "agent_count": 4, - "target": { - "rabbit_stew": 1, - "bread": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread, 1 golden_apple. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread, 1 golden_apple. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", - "2": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread, 1 golden_apple. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" - }, - "initial_inventory": { - "0": { - "bowl": 1, - "gold_ingot": 3 - }, - "1": { - "gold_ingot": 3 - }, - "2": { - "gold_ingot": 3, - "apple": 1 - }, - "3": { - "gold_ingot": 3 - } - } - }, - "multiagent_cooking_3_1_baked_potato_1_bread_1_cooked_beef": { - "conversation": "Let's work together to make bread, baked_potato, cooked_beef.", - "agent_count": 4, - "target": { - "bread": 1, - "baked_potato": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", - "1": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", - "2": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" - }, - "initial_inventory": { - "0": { - "coal": 5 - }, - "1": { - "coal": 5 - }, - "2": { - "coal": 5 - }, - "3": { - "coal": 5 - } - } - }, - "multiagent_cooking_3_1_baked_potato_1_rabbit_stew": { - "conversation": "Let's work together to make rabbit_stew, baked_potato.", - "agent_count": 4, - "target": { - "rabbit_stew": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", - "2": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']" - }, - "initial_inventory": { - "0": { - "bowl": 1, - "coal": 3 - }, - "1": { - "coal": 3 - }, - "2": { - "coal": 3 - }, - "3": { - "coal": 3 - } - } - }, - "multiagent_cooking_3_1_cake_1_cooked_beef_1_golden_apple": { - "conversation": "Let's work together to make cooked_beef, cake, golden_apple.", - "agent_count": 4, - "target": { - "cooked_beef": 1, - "cake": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 cake, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 cake, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", - "2": "Collaborate with agents around you to make 1 cooked_beef, 1 cake, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" - }, - "initial_inventory": { - "0": { - "coal": 3, - "milk_bucket": 1, - "gold_ingot": 3, - "apple": 1 - }, - "1": { - "coal": 3, - "milk_bucket": 1, - "gold_ingot": 3 - }, - "2": { - "coal": 3, - "milk_bucket": 1, - "egg": 1, - "gold_ingot": 3 - }, - "3": { - "coal": 3, - "milk_bucket": 1, - "gold_ingot": 3 - } - } - }, - "multiagent_cooking_3_1_bread_1_cooked_beef": { - "conversation": "Let's work together to make cooked_beef, bread.", - "agent_count": 4, - "target": { - "cooked_beef": 1, - "bread": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 bread. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 bread. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", - "2": "Collaborate with agents around you to make 1 cooked_beef, 1 bread. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" - }, - "initial_inventory": { - "0": { - "coal": 3 - }, - "1": { - "coal": 3 - }, - "2": { - "coal": 3 - }, - "3": { - "coal": 3 - } - } - } -} \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_test_3_items/5_agent.json b/tasks/cooking_tasks/require_collab_test_3_items/5_agent.json deleted file mode 100644 index 3552eb1..0000000 --- a/tasks/cooking_tasks/require_collab_test_3_items/5_agent.json +++ /dev/null @@ -1,552 +0,0 @@ -{ - "multiagent_cooking_3_1_baked_potato_1_bread_1_cake": { - "conversation": "Let's work together to make bread, baked_potato, cake.", - "agent_count": 5, - "target": { - "bread": 1, - "baked_potato": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cake. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", - "1": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cake. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", - "2": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cake. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" - }, - "initial_inventory": { - "0": { - "coal": 2, - "milk_bucket": 1 - }, - "1": { - "coal": 2, - "milk_bucket": 1 - }, - "2": { - "coal": 2, - "milk_bucket": 1, - "egg": 1 - }, - "3": { - "coal": 2, - "milk_bucket": 1 - }, - "4": { - "coal": 2, - "milk_bucket": 1 - } - } - }, - "multiagent_cooking_3_1_cake_1_golden_apple": { - "conversation": "Let's work together to make golden_apple, cake.", - "agent_count": 5, - "target": { - "golden_apple": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple, 1 cake. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", - "1": "Collaborate with agents around you to make 1 golden_apple, 1 cake. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", - "2": "Collaborate with agents around you to make 1 golden_apple, 1 cake. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" - }, - "initial_inventory": { - "0": { - "gold_ingot": 2, - "milk_bucket": 1 - }, - "1": { - "gold_ingot": 2, - "apple": 1, - "milk_bucket": 1 - }, - "2": { - "gold_ingot": 2, - "milk_bucket": 1 - }, - "3": { - "gold_ingot": 2, - "milk_bucket": 1, - "egg": 1 - }, - "4": { - "gold_ingot": 2, - "milk_bucket": 1 - } - } - }, - "multiagent_cooking_3_1_baked_potato_1_cooked_beef_1_golden_apple": { - "conversation": "Let's work together to make golden_apple, cooked_beef, baked_potato.", - "agent_count": 5, - "target": { - "golden_apple": 1, - "cooked_beef": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef, 1 baked_potato. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", - "1": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef, 1 baked_potato. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", - "2": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef, 1 baked_potato. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']" - }, - "initial_inventory": { - "0": { - "gold_ingot": 2, - "coal": 4 - }, - "1": { - "gold_ingot": 2, - "apple": 1, - "coal": 4 - }, - "2": { - "gold_ingot": 2, - "coal": 4 - }, - "3": { - "gold_ingot": 2, - "coal": 4 - }, - "4": { - "gold_ingot": 2, - "coal": 4 - } - } - }, - "multiagent_cooking_3_1_bread_1_cooked_beef_1_golden_apple": { - "conversation": "Let's work together to make cooked_beef, bread, golden_apple.", - "agent_count": 5, - "target": { - "cooked_beef": 1, - "bread": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 bread, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 bread, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", - "2": "Collaborate with agents around you to make 1 cooked_beef, 1 bread, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" - }, - "initial_inventory": { - "0": { - "coal": 2, - "gold_ingot": 2 - }, - "1": { - "coal": 2, - "gold_ingot": 2 - }, - "2": { - "coal": 2, - "gold_ingot": 2, - "apple": 1 - }, - "3": { - "coal": 2, - "gold_ingot": 2 - }, - "4": { - "coal": 2, - "gold_ingot": 2 - } - } - }, - "multiagent_cooking_3_1_baked_potato_1_cake": { - "conversation": "Let's work together to make baked_potato, cake.", - "agent_count": 5, - "target": { - "baked_potato": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", - "2": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" - }, - "initial_inventory": { - "0": { - "coal": 2, - "milk_bucket": 1 - }, - "1": { - "coal": 2, - "milk_bucket": 1 - }, - "2": { - "coal": 2, - "milk_bucket": 1, - "egg": 1 - }, - "3": { - "coal": 2, - "milk_bucket": 1 - }, - "4": { - "coal": 2, - "milk_bucket": 1 - } - } - }, - "multiagent_cooking_3_1_bread_1_golden_apple_1_rabbit_stew": { - "conversation": "Let's work together to make rabbit_stew, bread, golden_apple.", - "agent_count": 5, - "target": { - "rabbit_stew": 1, - "bread": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread, 1 golden_apple. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread, 1 golden_apple. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", - "2": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread, 1 golden_apple. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" - }, - "initial_inventory": { - "0": { - "bowl": 1, - "gold_ingot": 2 - }, - "1": { - "gold_ingot": 2 - }, - "2": { - "gold_ingot": 2, - "apple": 1 - }, - "3": { - "gold_ingot": 2 - }, - "4": { - "gold_ingot": 2 - } - } - }, - "multiagent_cooking_3_1_baked_potato_1_bread_1_cooked_beef": { - "conversation": "Let's work together to make bread, baked_potato, cooked_beef.", - "agent_count": 5, - "target": { - "bread": 1, - "baked_potato": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", - "1": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", - "2": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" - }, - "initial_inventory": { - "0": { - "coal": 4 - }, - "1": { - "coal": 4 - }, - "2": { - "coal": 4 - }, - "3": { - "coal": 4 - }, - "4": { - "coal": 4 - } - } - }, - "multiagent_cooking_3_1_baked_potato_1_rabbit_stew": { - "conversation": "Let's work together to make rabbit_stew, baked_potato.", - "agent_count": 5, - "target": { - "rabbit_stew": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", - "2": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']" - }, - "initial_inventory": { - "0": { - "bowl": 1, - "coal": 2 - }, - "1": { - "coal": 2 - }, - "2": { - "coal": 2 - }, - "3": { - "coal": 2 - }, - "4": { - "coal": 2 - } - } - }, - "multiagent_cooking_3_1_cake_1_cooked_beef_1_golden_apple": { - "conversation": "Let's work together to make cooked_beef, cake, golden_apple.", - "agent_count": 5, - "target": { - "cooked_beef": 1, - "cake": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 cake, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 cake, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", - "2": "Collaborate with agents around you to make 1 cooked_beef, 1 cake, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" - }, - "initial_inventory": { - "0": { - "coal": 2, - "milk_bucket": 1, - "gold_ingot": 2 - }, - "1": { - "coal": 2, - "milk_bucket": 1, - "gold_ingot": 2 - }, - "2": { - "coal": 2, - "milk_bucket": 1, - "egg": 1, - "gold_ingot": 2 - }, - "3": { - "coal": 2, - "milk_bucket": 1, - "gold_ingot": 2 - }, - "4": { - "coal": 2, - "milk_bucket": 1, - "gold_ingot": 2, - "apple": 1 - } - } - }, - "multiagent_cooking_3_1_bread_1_cooked_beef": { - "conversation": "Let's work together to make cooked_beef, bread.", - "agent_count": 5, - "target": { - "cooked_beef": 1, - "bread": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 bread. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 bread. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", - "2": "Collaborate with agents around you to make 1 cooked_beef, 1 bread. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" - }, - "initial_inventory": { - "0": { - "coal": 2 - }, - "1": { - "coal": 2 - }, - "2": { - "coal": 2 - }, - "3": { - "coal": 2 - }, - "4": { - "coal": 2 - } - } - } -} \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_test_3_items/5_agent_long_timeout.json b/tasks/cooking_tasks/require_collab_test_3_items/5_agent_long_timeout.json deleted file mode 100644 index 9ea2f75..0000000 --- a/tasks/cooking_tasks/require_collab_test_3_items/5_agent_long_timeout.json +++ /dev/null @@ -1,552 +0,0 @@ -{ - "multiagent_cooking_3_1_baked_potato_1_bread_1_cake": { - "conversation": "Let's work together to make bread, baked_potato, cake.", - "agent_count": 5, - "target": { - "bread": 1, - "baked_potato": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cake. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", - "1": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cake. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", - "2": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cake. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" - }, - "initial_inventory": { - "0": { - "coal": 2, - "milk_bucket": 1 - }, - "1": { - "coal": 2, - "milk_bucket": 1 - }, - "2": { - "coal": 2, - "milk_bucket": 1, - "egg": 1 - }, - "3": { - "coal": 2, - "milk_bucket": 1 - }, - "4": { - "coal": 2, - "milk_bucket": 1 - } - } - }, - "multiagent_cooking_3_1_cake_1_golden_apple": { - "conversation": "Let's work together to make golden_apple, cake.", - "agent_count": 5, - "target": { - "golden_apple": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple, 1 cake. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", - "1": "Collaborate with agents around you to make 1 golden_apple, 1 cake. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", - "2": "Collaborate with agents around you to make 1 golden_apple, 1 cake. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" - }, - "initial_inventory": { - "0": { - "gold_ingot": 2, - "milk_bucket": 1 - }, - "1": { - "gold_ingot": 2, - "apple": 1, - "milk_bucket": 1 - }, - "2": { - "gold_ingot": 2, - "milk_bucket": 1 - }, - "3": { - "gold_ingot": 2, - "milk_bucket": 1, - "egg": 1 - }, - "4": { - "gold_ingot": 2, - "milk_bucket": 1 - } - } - }, - "multiagent_cooking_3_1_baked_potato_1_cooked_beef_1_golden_apple": { - "conversation": "Let's work together to make golden_apple, cooked_beef, baked_potato.", - "agent_count": 5, - "target": { - "golden_apple": 1, - "cooked_beef": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef, 1 baked_potato. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", - "1": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef, 1 baked_potato. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", - "2": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef, 1 baked_potato. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']" - }, - "initial_inventory": { - "0": { - "gold_ingot": 2, - "coal": 4 - }, - "1": { - "gold_ingot": 2, - "apple": 1, - "coal": 4 - }, - "2": { - "gold_ingot": 2, - "coal": 4 - }, - "3": { - "gold_ingot": 2, - "coal": 4 - }, - "4": { - "gold_ingot": 2, - "coal": 4 - } - } - }, - "multiagent_cooking_3_1_bread_1_cooked_beef_1_golden_apple": { - "conversation": "Let's work together to make cooked_beef, bread, golden_apple.", - "agent_count": 5, - "target": { - "cooked_beef": 1, - "bread": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 bread, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 bread, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", - "2": "Collaborate with agents around you to make 1 cooked_beef, 1 bread, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" - }, - "initial_inventory": { - "0": { - "coal": 2, - "gold_ingot": 2 - }, - "1": { - "coal": 2, - "gold_ingot": 2 - }, - "2": { - "coal": 2, - "gold_ingot": 2, - "apple": 1 - }, - "3": { - "coal": 2, - "gold_ingot": 2 - }, - "4": { - "coal": 2, - "gold_ingot": 2 - } - } - }, - "multiagent_cooking_3_1_baked_potato_1_cake": { - "conversation": "Let's work together to make baked_potato, cake.", - "agent_count": 5, - "target": { - "baked_potato": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", - "2": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" - }, - "initial_inventory": { - "0": { - "coal": 2, - "milk_bucket": 1 - }, - "1": { - "coal": 2, - "milk_bucket": 1 - }, - "2": { - "coal": 2, - "milk_bucket": 1, - "egg": 1 - }, - "3": { - "coal": 2, - "milk_bucket": 1 - }, - "4": { - "coal": 2, - "milk_bucket": 1 - } - } - }, - "multiagent_cooking_3_1_bread_1_golden_apple_1_rabbit_stew": { - "conversation": "Let's work together to make rabbit_stew, bread, golden_apple.", - "agent_count": 5, - "target": { - "rabbit_stew": 1, - "bread": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread, 1 golden_apple. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread, 1 golden_apple. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", - "2": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread, 1 golden_apple. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" - }, - "initial_inventory": { - "0": { - "bowl": 1, - "gold_ingot": 2 - }, - "1": { - "gold_ingot": 2 - }, - "2": { - "gold_ingot": 2, - "apple": 1 - }, - "3": { - "gold_ingot": 2 - }, - "4": { - "gold_ingot": 2 - } - } - }, - "multiagent_cooking_3_1_baked_potato_1_bread_1_cooked_beef": { - "conversation": "Let's work together to make bread, baked_potato, cooked_beef.", - "agent_count": 5, - "target": { - "bread": 1, - "baked_potato": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", - "1": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", - "2": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" - }, - "initial_inventory": { - "0": { - "coal": 4 - }, - "1": { - "coal": 4 - }, - "2": { - "coal": 4 - }, - "3": { - "coal": 4 - }, - "4": { - "coal": 4 - } - } - }, - "multiagent_cooking_3_1_baked_potato_1_rabbit_stew": { - "conversation": "Let's work together to make rabbit_stew, baked_potato.", - "agent_count": 5, - "target": { - "rabbit_stew": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to the furnace and bake the potato.", - "Step 5: From your inventory or other agents get a bowl", - "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 7: Go to the furnace and cook the raw rabbit.", - "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", - "2": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']" - }, - "initial_inventory": { - "0": { - "bowl": 1, - "coal": 2 - }, - "1": { - "coal": 2 - }, - "2": { - "coal": 2 - }, - "3": { - "coal": 2 - }, - "4": { - "coal": 2 - } - } - }, - "multiagent_cooking_3_1_cake_1_cooked_beef_1_golden_apple": { - "conversation": "Let's work together to make cooked_beef, cake, golden_apple.", - "agent_count": 5, - "target": { - "cooked_beef": 1, - "cake": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", - "Step 3: Get an egg from your inventory or other agents.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "golden_apple": [ - "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 cake, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 cake, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", - "2": "Collaborate with agents around you to make 1 cooked_beef, 1 cake, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" - }, - "initial_inventory": { - "0": { - "coal": 2, - "milk_bucket": 1, - "gold_ingot": 2 - }, - "1": { - "coal": 2, - "milk_bucket": 1, - "gold_ingot": 2 - }, - "2": { - "coal": 2, - "milk_bucket": 1, - "egg": 1, - "gold_ingot": 2 - }, - "3": { - "coal": 2, - "milk_bucket": 1, - "gold_ingot": 2 - }, - "4": { - "coal": 2, - "milk_bucket": 1, - "gold_ingot": 2, - "apple": 1 - } - } - }, - "multiagent_cooking_3_1_bread_1_cooked_beef": { - "conversation": "Let's work together to make cooked_beef, bread.", - "agent_count": 5, - "target": { - "cooked_beef": 1, - "bread": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the beef." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 bread. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 bread. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", - "2": "Collaborate with agents around you to make 1 cooked_beef, 1 bread. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" - }, - "initial_inventory": { - "0": { - "coal": 2 - }, - "1": { - "coal": 2 - }, - "2": { - "coal": 2 - }, - "3": { - "coal": 2 - }, - "4": { - "coal": 2 - } - } - } -} \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_train/2_agent.json b/tasks/cooking_tasks/require_collab_train/2_agent.json deleted file mode 100644 index 08953ca..0000000 --- a/tasks/cooking_tasks/require_collab_train/2_agent.json +++ /dev/null @@ -1,1615 +0,0 @@ -{ - "multiagent_cooking_2_1_cooked_chicken_1_golden_carrot": { - "conversation": "Let's work together to make cooked_chicken, golden_carrot.", - "agent_count": 2, - "target": { - "cooked_chicken": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" - }, - "initial_inventory": { - "0": { - "coal": 8 - }, - "1": { - "gold_ingot": 8 - } - } - }, - "multiagent_cooking_2_1_cooked_mutton_1_golden_carrot": { - "conversation": "Let's work together to make golden_carrot, cooked_mutton.", - "agent_count": 2, - "target": { - "golden_carrot": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" - }, - "initial_inventory": { - "0": { - "gold_ingot": 8 - }, - "1": { - "coal": 8 - } - } - }, - "multiagent_cooking_2_1_cookie_1_mushroom_stew": { - "conversation": "Let's work together to make cookie, mushroom_stew.", - "agent_count": 2, - "target": { - "cookie": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "1": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" - }, - "initial_inventory": { - "0": { - "cocoa_beans": 1 - }, - "1": { - "bowl": 1 - } - } - }, - "multiagent_cooking_2_1_cookie_1_golden_carrot": { - "conversation": "Let's work together to make golden_carrot, cookie.", - "agent_count": 2, - "target": { - "golden_carrot": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cookie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cookie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" - }, - "initial_inventory": { - "0": { - "gold_ingot": 8 - }, - "1": { - "cocoa_beans": 1 - } - } - }, - "multiagent_cooking_2_1_cooked_mutton_1_cooked_porkchop": { - "conversation": "Let's work together to make cooked_porkchop, cooked_mutton.", - "agent_count": 2, - "target": { - "cooked_porkchop": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" - }, - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": {} - } - }, - "multiagent_cooking_2_1_cookie_1_suspicious_stew": { - "conversation": "Let's work together to make suspicious_stew, cookie.", - "agent_count": 2, - "target": { - "suspicious_stew": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cookie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cookie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" - }, - "initial_inventory": { - "0": { - "bowl": 1, - "cocoa_beans": 1 - }, - "1": { - "dandelion": 1 - } - } - }, - "multiagent_cooking_2_1_mushroom_stew_1_suspicious_stew": { - "conversation": "Let's work together to make mushroom_stew, suspicious_stew.", - "agent_count": 2, - "target": { - "mushroom_stew": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" - }, - "initial_inventory": { - "0": { - "bowl": 2 - }, - "1": { - "dandelion": 1 - } - } - }, - "multiagent_cooking_2_1_cookie_1_pumpkin_pie": { - "conversation": "Let's work together to make pumpkin_pie, cookie.", - "agent_count": 2, - "target": { - "pumpkin_pie": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" - }, - "initial_inventory": { - "0": { - "egg": 1 - }, - "1": { - "cocoa_beans": 1 - } - } - }, - "multiagent_cooking_2_1_cooked_chicken_1_suspicious_stew": { - "conversation": "Let's work together to make suspicious_stew, cooked_chicken.", - "agent_count": 2, - "target": { - "suspicious_stew": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" - }, - "initial_inventory": { - "0": { - "bowl": 1, - "coal": 8 - }, - "1": { - "dandelion": 1 - } - } - }, - "multiagent_cooking_2_1_cooked_chicken_1_mushroom_stew": { - "conversation": "Let's work together to make mushroom_stew, cooked_chicken.", - "agent_count": 2, - "target": { - "mushroom_stew": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" - }, - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "coal": 8 - } - } - }, - "multiagent_cooking_2_1_cooked_rabbit_1_golden_carrot": { - "conversation": "Let's work together to make golden_carrot, cooked_rabbit.", - "agent_count": 2, - "target": { - "golden_carrot": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_rabbit. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_rabbit. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" - }, - "initial_inventory": { - "0": { - "gold_ingot": 8 - }, - "1": { - "coal": 8 - } - } - }, - "multiagent_cooking_2_1_golden_carrot_1_mushroom_stew": { - "conversation": "Let's work together to make golden_carrot, mushroom_stew.", - "agent_count": 2, - "target": { - "golden_carrot": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" - }, - "initial_inventory": { - "0": { - "gold_ingot": 8 - }, - "1": { - "bowl": 1 - } - } - }, - "multiagent_cooking_2_1_golden_carrot_1_pumpkin_pie": { - "conversation": "Let's work together to make pumpkin_pie, golden_carrot.", - "agent_count": 2, - "target": { - "pumpkin_pie": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" - }, - "initial_inventory": { - "0": { - "egg": 1 - }, - "1": { - "gold_ingot": 8 - } - } - }, - "multiagent_cooking_2_1_cooked_chicken_1_cooked_porkchop": { - "conversation": "Let's work together to make cooked_chicken, cooked_porkchop.", - "agent_count": 2, - "target": { - "cooked_chicken": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" - }, - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": {} - } - }, - "multiagent_cooking_2_1_beetroot_soup_1_cooked_porkchop": { - "conversation": "Let's work together to make beetroot_soup, cooked_porkchop.", - "agent_count": 2, - "target": { - "beetroot_soup": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" - }, - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "coal": 8 - } - } - }, - "multiagent_cooking_2_1_cooked_porkchop_1_mushroom_stew": { - "conversation": "Let's work together to make mushroom_stew, cooked_porkchop.", - "agent_count": 2, - "target": { - "mushroom_stew": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" - }, - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "coal": 8 - } - } - }, - "multiagent_cooking_2_1_cooked_porkchop_1_golden_carrot": { - "conversation": "Let's work together to make cooked_porkchop, golden_carrot.", - "agent_count": 2, - "target": { - "cooked_porkchop": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" - }, - "initial_inventory": { - "0": { - "coal": 8 - }, - "1": { - "gold_ingot": 8 - } - } - }, - "multiagent_cooking_2_1_cooked_porkchop_1_pumpkin_pie": { - "conversation": "Let's work together to make cooked_porkchop, pumpkin_pie.", - "agent_count": 2, - "target": { - "cooked_porkchop": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" - }, - "initial_inventory": { - "0": { - "coal": 8 - }, - "1": { - "egg": 1 - } - } - }, - "multiagent_cooking_2_1_cooked_mutton_1_suspicious_stew": { - "conversation": "Let's work together to make cooked_mutton, suspicious_stew.", - "agent_count": 2, - "target": { - "cooked_mutton": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 suspicious_stew. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 suspicious_stew. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" - }, - "initial_inventory": { - "0": { - "coal": 8, - "dandelion": 1 - }, - "1": { - "bowl": 1 - } - } - }, - "multiagent_cooking_2_1_mushroom_stew_1_pumpkin_pie": { - "conversation": "Let's work together to make pumpkin_pie, mushroom_stew.", - "agent_count": 2, - "target": { - "pumpkin_pie": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" - }, - "initial_inventory": { - "0": { - "egg": 1 - }, - "1": { - "bowl": 1 - } - } - }, - "multiagent_cooking_2_1_cooked_rabbit_1_mushroom_stew": { - "conversation": "Let's work together to make cooked_rabbit, mushroom_stew.", - "agent_count": 2, - "target": { - "cooked_rabbit": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" - }, - "initial_inventory": { - "0": { - "coal": 8 - }, - "1": { - "bowl": 1 - } - } - }, - "multiagent_cooking_2_1_cooked_chicken_1_cookie": { - "conversation": "Let's work together to make cookie, cooked_chicken.", - "agent_count": 2, - "target": { - "cookie": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_chicken. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_chicken. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" - }, - "initial_inventory": { - "0": { - "cocoa_beans": 1 - }, - "1": { - "coal": 8 - } - } - }, - "multiagent_cooking_2_1_cooked_chicken_1_pumpkin_pie": { - "conversation": "Let's work together to make pumpkin_pie, cooked_chicken.", - "agent_count": 2, - "target": { - "pumpkin_pie": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" - }, - "initial_inventory": { - "0": { - "egg": 1 - }, - "1": { - "coal": 8 - } - } - }, - "multiagent_cooking_2_1_cooked_mutton_1_mushroom_stew": { - "conversation": "Let's work together to make mushroom_stew, cooked_mutton.", - "agent_count": 2, - "target": { - "mushroom_stew": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" - }, - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "coal": 8 - } - } - }, - "multiagent_cooking_2_1_cooked_porkchop_1_cooked_rabbit": { - "conversation": "Let's work together to make cooked_rabbit, cooked_porkchop.", - "agent_count": 2, - "target": { - "cooked_rabbit": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" - }, - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": {} - } - }, - "multiagent_cooking_2_1_cooked_porkchop_1_suspicious_stew": { - "conversation": "Let's work together to make suspicious_stew, cooked_porkchop.", - "agent_count": 2, - "target": { - "suspicious_stew": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" - }, - "initial_inventory": { - "0": { - "bowl": 1, - "coal": 8 - }, - "1": { - "dandelion": 1 - } - } - }, - "multiagent_cooking_2_1_beetroot_soup_1_suspicious_stew": { - "conversation": "Let's work together to make suspicious_stew, beetroot_soup.", - "agent_count": 2, - "target": { - "suspicious_stew": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" - }, - "initial_inventory": { - "0": { - "bowl": 2 - }, - "1": { - "dandelion": 1 - } - } - }, - "multiagent_cooking_2_1_cooked_rabbit_1_cookie": { - "conversation": "Let's work together to make cookie, cooked_rabbit.", - "agent_count": 2, - "target": { - "cookie": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" - }, - "initial_inventory": { - "0": { - "cocoa_beans": 1 - }, - "1": { - "coal": 8 - } - } - }, - "multiagent_cooking_2_1_golden_carrot_1_suspicious_stew": { - "conversation": "Let's work together to make golden_carrot, suspicious_stew.", - "agent_count": 2, - "target": { - "golden_carrot": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" - }, - "initial_inventory": { - "0": { - "gold_ingot": 8, - "dandelion": 1 - }, - "1": { - "bowl": 1 - } - } - }, - "multiagent_cooking_2_1_pumpkin_pie_1_suspicious_stew": { - "conversation": "Let's work together to make suspicious_stew, pumpkin_pie.", - "agent_count": 2, - "target": { - "suspicious_stew": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" - }, - "initial_inventory": { - "0": { - "bowl": 1, - "egg": 1 - }, - "1": { - "dandelion": 1 - } - } - }, - "multiagent_cooking_2_1_beetroot_soup_1_cookie": { - "conversation": "Let's work together to make beetroot_soup, cookie.", - "agent_count": 2, - "target": { - "beetroot_soup": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" - }, - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "cocoa_beans": 1 - } - } - }, - "multiagent_cooking_2_1_beetroot_soup_1_cooked_mutton": { - "conversation": "Let's work together to make cooked_mutton, beetroot_soup.", - "agent_count": 2, - "target": { - "cooked_mutton": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" - }, - "initial_inventory": { - "0": { - "coal": 8 - }, - "1": { - "bowl": 1 - } - } - }, - "multiagent_cooking_2_1_beetroot_soup_1_pumpkin_pie": { - "conversation": "Let's work together to make beetroot_soup, pumpkin_pie.", - "agent_count": 2, - "target": { - "beetroot_soup": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" - }, - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "egg": 1 - } - } - }, - "multiagent_cooking_2_1_cooked_chicken_1_cooked_rabbit": { - "conversation": "Let's work together to make cooked_chicken, cooked_rabbit.", - "agent_count": 2, - "target": { - "cooked_chicken": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" - }, - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": {} - } - }, - "multiagent_cooking_2_1_cooked_porkchop_1_cookie": { - "conversation": "Let's work together to make cooked_porkchop, cookie.", - "agent_count": 2, - "target": { - "cooked_porkchop": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cookie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cookie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" - }, - "initial_inventory": { - "0": { - "coal": 8 - }, - "1": { - "cocoa_beans": 1 - } - } - }, - "multiagent_cooking_2_1_beetroot_soup_1_golden_carrot": { - "conversation": "Let's work together to make beetroot_soup, golden_carrot.", - "agent_count": 2, - "target": { - "beetroot_soup": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 golden_carrot. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 golden_carrot. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" - }, - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "gold_ingot": 8 - } - } - }, - "multiagent_cooking_2_1_cooked_rabbit_1_suspicious_stew": { - "conversation": "Let's work together to make cooked_rabbit, suspicious_stew.", - "agent_count": 2, - "target": { - "cooked_rabbit": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" - }, - "initial_inventory": { - "0": { - "coal": 8, - "dandelion": 1 - }, - "1": { - "bowl": 1 - } - } - }, - "multiagent_cooking_2_1_cooked_mutton_1_cooked_rabbit": { - "conversation": "Let's work together to make cooked_rabbit, cooked_mutton.", - "agent_count": 2, - "target": { - "cooked_rabbit": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_mutton. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_mutton. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" - }, - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": {} - } - }, - "multiagent_cooking_2_1_cooked_chicken_1_cooked_mutton": { - "conversation": "Let's work together to make cooked_mutton, cooked_chicken.", - "agent_count": 2, - "target": { - "cooked_mutton": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_chicken. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_chicken. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" - }, - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": {} - } - }, - "multiagent_cooking_2_1_beetroot_soup_1_cooked_rabbit": { - "conversation": "Let's work together to make beetroot_soup, cooked_rabbit.", - "agent_count": 2, - "target": { - "beetroot_soup": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_rabbit. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_rabbit. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" - }, - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "coal": 8 - } - } - }, - "multiagent_cooking_2_1_cooked_mutton_1_cookie": { - "conversation": "Let's work together to make cookie, cooked_mutton.", - "agent_count": 2, - "target": { - "cookie": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_mutton. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_mutton. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" - }, - "initial_inventory": { - "0": { - "cocoa_beans": 1 - }, - "1": { - "coal": 8 - } - } - }, - "multiagent_cooking_2_1_beetroot_soup_1_mushroom_stew": { - "conversation": "Let's work together to make mushroom_stew, beetroot_soup.", - "agent_count": 2, - "target": { - "mushroom_stew": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" - }, - "initial_inventory": { - "0": { - "bowl": 2 - }, - "1": {} - } - }, - "multiagent_cooking_2_1_cooked_rabbit_1_pumpkin_pie": { - "conversation": "Let's work together to make pumpkin_pie, cooked_rabbit.", - "agent_count": 2, - "target": { - "pumpkin_pie": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_rabbit. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_rabbit. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" - }, - "initial_inventory": { - "0": { - "egg": 1 - }, - "1": { - "coal": 8 - } - } - }, - "multiagent_cooking_2_1_beetroot_soup_1_cooked_chicken": { - "conversation": "Let's work together to make beetroot_soup, cooked_chicken.", - "agent_count": 2, - "target": { - "beetroot_soup": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" - }, - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "coal": 8 - } - } - }, - "multiagent_cooking_2_1_cooked_mutton_1_pumpkin_pie": { - "conversation": "Let's work together to make cooked_mutton, pumpkin_pie.", - "agent_count": 2, - "target": { - "cooked_mutton": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" - }, - "initial_inventory": { - "0": { - "coal": 8 - }, - "1": { - "egg": 1 - } - } - } -} \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_train/2_agent_blocked_access.json b/tasks/cooking_tasks/require_collab_train/2_agent_blocked_access.json deleted file mode 100644 index 0f0c229..0000000 --- a/tasks/cooking_tasks/require_collab_train/2_agent_blocked_access.json +++ /dev/null @@ -1,3046 +0,0 @@ -{ - "multiagent_cooking_1_cooked_porkchop_1_cooked_rabbit_blocked_access_0": { - "conversation": "Let's collaborate to make cooked_rabbit and cooked_porkchop.", - "agent_count": 2, - "target": { - "cooked_rabbit": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop. ", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": {} - } - }, - "multiagent_cooking_1_cooked_mutton_blocked_access_1": { - "conversation": "Let's work together to make cooked_mutton.", - "agent_count": 2, - "target": { - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "1": "Collaborate with agents around you to make 1 cooked_mutton. " - }, - "difficulty_metrics": { - "total_recipe_steps": 2, - "blocked_agents_count": 1, - "unique_target_items": 1, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy", - "initial_inventory": { - "0": { - "coal": 8 - }, - "1": {} - } - }, - "multiagent_cooking_1_cookie_1_mushroom_stew": { - "conversation": "Let's collaborate to make cookie and mushroom_stew.", - "agent_count": 2, - "target": { - "cookie": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "1": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "cocoa_beans": 1 - }, - "1": { - "bowl": 1 - } - } - }, - "multiagent_cooking_1_beetroot_soup_1_golden_carrot_blocked_access_1": { - "conversation": "Let's collaborate to make beetroot_soup and golden_carrot.", - "agent_count": 2, - "target": { - "beetroot_soup": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 golden_carrot. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 golden_carrot. " - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "gold_ingot": 8 - } - } - }, - "multiagent_cooking_1_beetroot_soup_1_cooked_mutton": { - "conversation": "Let's collaborate to make cooked_mutton and beetroot_soup.", - "agent_count": 2, - "target": { - "cooked_mutton": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 8 - }, - "1": { - "bowl": 1 - } - } - }, - "multiagent_cooking_1_cooked_porkchop": { - "conversation": "Let's work together to make cooked_porkchop.", - "agent_count": 2, - "target": { - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "1": "Collaborate with agents around you to make 1 cooked_porkchop. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 2, - "blocked_agents_count": 0, - "unique_target_items": 1, - "overall_difficulty_score": 2, - "difficulty_category": "easy" - }, - "difficulty": "easy", - "initial_inventory": { - "0": { - "coal": 8 - }, - "1": {} - } - }, - "multiagent_cooking_1_cooked_porkchop_1_pumpkin_pie": { - "conversation": "Let's collaborate to make pumpkin_pie and cooked_porkchop.", - "agent_count": 2, - "target": { - "pumpkin_pie": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_porkchop. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_porkchop. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "egg": 1 - }, - "1": { - "coal": 8 - } - } - }, - "multiagent_cooking_1_cooked_chicken_1_suspicious_stew": { - "conversation": "Let's collaborate to make cooked_chicken and suspicious_stew.", - "agent_count": 2, - "target": { - "cooked_chicken": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 8, - "dandelion": 1 - }, - "1": { - "bowl": 1 - } - } - }, - "multiagent_cooking_1_beetroot_soup_1_cooked_rabbit_blocked_access_0": { - "conversation": "Let's collaborate to make beetroot_soup and cooked_rabbit.", - "agent_count": 2, - "target": { - "beetroot_soup": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_rabbit. ", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_rabbit. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "coal": 8 - } - } - }, - "multiagent_cooking_1_cooked_chicken_1_cooked_rabbit_blocked_access_0_1": { - "conversation": "Let's collaborate to make cooked_rabbit and cooked_chicken.", - "agent_count": 2, - "target": { - "cooked_rabbit": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken. ", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken. " - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 2, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": {} - } - }, - "multiagent_cooking_1_cooked_mutton_1_cookie_blocked_access_1": { - "conversation": "Let's collaborate to make cookie and cooked_mutton.", - "agent_count": 2, - "target": { - "cookie": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_mutton. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_mutton. " - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "cocoa_beans": 1 - }, - "1": { - "coal": 8 - } - } - }, - "multiagent_cooking_1_beetroot_soup_1_mushroom_stew_blocked_access_0_1": { - "conversation": "Let's collaborate to make mushroom_stew and beetroot_soup.", - "agent_count": 2, - "target": { - "mushroom_stew": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup. ", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup. " - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 2, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "bowl": 2 - }, - "1": {} - } - }, - "multiagent_cooking_1_beetroot_soup_1_suspicious_stew": { - "conversation": "Let's collaborate to make suspicious_stew and beetroot_soup.", - "agent_count": 2, - "target": { - "suspicious_stew": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "bowl": 2 - }, - "1": { - "dandelion": 1 - } - } - }, - "multiagent_cooking_1_beetroot_soup_1_cooked_porkchop_blocked_access_0_1": { - "conversation": "Let's collaborate to make beetroot_soup and cooked_porkchop.", - "agent_count": 2, - "target": { - "beetroot_soup": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop. ", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop. " - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 2, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "coal": 8 - } - } - }, - "multiagent_cooking_1_beetroot_soup_1_pumpkin_pie_blocked_access_0": { - "conversation": "Let's collaborate to make beetroot_soup and pumpkin_pie.", - "agent_count": 2, - "target": { - "beetroot_soup": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie. ", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "egg": 1 - } - } - }, - "multiagent_cooking_1_beetroot_soup_1_mushroom_stew": { - "conversation": "Let's collaborate to make mushroom_stew and beetroot_soup.", - "agent_count": 2, - "target": { - "mushroom_stew": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "bowl": 2 - }, - "1": {} - } - }, - "multiagent_cooking_1_cookie_1_suspicious_stew": { - "conversation": "Let's collaborate to make cookie and suspicious_stew.", - "agent_count": 2, - "target": { - "cookie": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 suspicious_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "1": "Collaborate with agents around you to make 1 cookie, 1 suspicious_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "cocoa_beans": 1, - "dandelion": 1 - }, - "1": { - "bowl": 1 - } - } - }, - "multiagent_cooking_1_beetroot_soup_1_cookie": { - "conversation": "Let's collaborate to make beetroot_soup and cookie.", - "agent_count": 2, - "target": { - "beetroot_soup": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "cocoa_beans": 1 - } - } - }, - "multiagent_cooking_1_golden_carrot_1_pumpkin_pie_blocked_access_0": { - "conversation": "Let's collaborate to make pumpkin_pie and golden_carrot.", - "agent_count": 2, - "target": { - "pumpkin_pie": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot. ", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "egg": 1 - }, - "1": { - "gold_ingot": 8 - } - } - }, - "multiagent_cooking_1_golden_carrot_1_suspicious_stew_blocked_access_0_1": { - "conversation": "Let's collaborate to make suspicious_stew and golden_carrot.", - "agent_count": 2, - "target": { - "suspicious_stew": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 golden_carrot. ", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 golden_carrot. " - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 2, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "bowl": 1, - "gold_ingot": 8 - }, - "1": { - "dandelion": 1 - } - } - }, - "multiagent_cooking_1_cooked_porkchop_1_cooked_rabbit_blocked_access_0_1": { - "conversation": "Let's collaborate to make cooked_porkchop and cooked_rabbit.", - "agent_count": 2, - "target": { - "cooked_porkchop": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_rabbit. ", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_rabbit. " - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 2, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": {} - } - }, - "multiagent_cooking_1_cooked_porkchop_1_cookie_blocked_access_0": { - "conversation": "Let's collaborate to make cookie and cooked_porkchop.", - "agent_count": 2, - "target": { - "cookie": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop. ", - "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "cocoa_beans": 1 - }, - "1": { - "coal": 8 - } - } - }, - "multiagent_cooking_1_cooked_chicken_1_mushroom_stew": { - "conversation": "Let's collaborate to make mushroom_stew and cooked_chicken.", - "agent_count": 2, - "target": { - "mushroom_stew": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "coal": 8 - } - } - }, - "multiagent_cooking_1_cooked_porkchop_1_cooked_rabbit": { - "conversation": "Let's collaborate to make cooked_rabbit and cooked_porkchop.", - "agent_count": 2, - "target": { - "cooked_rabbit": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy", - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": {} - } - }, - "multiagent_cooking_1_cooked_chicken_1_mushroom_stew_blocked_access_1": { - "conversation": "Let's collaborate to make cooked_chicken and mushroom_stew.", - "agent_count": 2, - "target": { - "cooked_chicken": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 mushroom_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 mushroom_stew. " - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 8 - }, - "1": { - "bowl": 1 - } - } - }, - "multiagent_cooking_1_cookie_blocked_access_0_1": { - "conversation": "Let's work together to make cookie.", - "agent_count": 2, - "target": { - "cookie": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie. ", - "1": "Collaborate with agents around you to make 1 cookie. " - }, - "difficulty_metrics": { - "total_recipe_steps": 3, - "blocked_agents_count": 2, - "unique_target_items": 1, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "cocoa_beans": 1 - }, - "1": {} - } - }, - "multiagent_cooking_1_suspicious_stew_blocked_access_1": { - "conversation": "Let's work together to make suspicious_stew.", - "agent_count": 2, - "target": { - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "1": "Collaborate with agents around you to make 1 suspicious_stew. " - }, - "difficulty_metrics": { - "total_recipe_steps": 3, - "blocked_agents_count": 1, - "unique_target_items": 1, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy", - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "dandelion": 1 - } - } - }, - "multiagent_cooking_1_cooked_porkchop_1_suspicious_stew_blocked_access_0": { - "conversation": "Let's collaborate to make suspicious_stew and cooked_porkchop.", - "agent_count": 2, - "target": { - "suspicious_stew": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop. ", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "bowl": 1, - "coal": 8 - }, - "1": { - "dandelion": 1 - } - } - }, - "multiagent_cooking_1_cooked_rabbit_1_mushroom_stew_blocked_access_0_1": { - "conversation": "Let's collaborate to make cooked_rabbit and mushroom_stew.", - "agent_count": 2, - "target": { - "cooked_rabbit": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew. ", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew. " - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 2, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "coal": 8 - }, - "1": { - "bowl": 1 - } - } - }, - "multiagent_cooking_1_cooked_rabbit_1_cookie": { - "conversation": "Let's collaborate to make cooked_rabbit and cookie.", - "agent_count": 2, - "target": { - "cooked_rabbit": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cookie. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cookie. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 8 - }, - "1": { - "cocoa_beans": 1 - } - } - }, - "multiagent_cooking_1_cooked_mutton_blocked_access_0_1": { - "conversation": "Let's work together to make cooked_mutton.", - "agent_count": 2, - "target": { - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton. ", - "1": "Collaborate with agents around you to make 1 cooked_mutton. " - }, - "difficulty_metrics": { - "total_recipe_steps": 2, - "blocked_agents_count": 2, - "unique_target_items": 1, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 8 - }, - "1": {} - } - }, - "multiagent_cooking_1_cooked_mutton_1_mushroom_stew": { - "conversation": "Let's collaborate to make mushroom_stew and cooked_mutton.", - "agent_count": 2, - "target": { - "mushroom_stew": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "coal": 8 - } - } - }, - "multiagent_cooking_1_beetroot_soup_1_cooked_porkchop": { - "conversation": "Let's collaborate to make beetroot_soup and cooked_porkchop.", - "agent_count": 2, - "target": { - "beetroot_soup": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "coal": 8 - } - } - }, - "multiagent_cooking_1_cooked_chicken_1_cooked_rabbit_blocked_access_1": { - "conversation": "Let's collaborate to make cooked_chicken and cooked_rabbit.", - "agent_count": 2, - "target": { - "cooked_chicken": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit. " - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": {} - } - }, - "multiagent_cooking_1_cooked_chicken_1_cooked_porkchop": { - "conversation": "Let's collaborate to make cooked_porkchop and cooked_chicken.", - "agent_count": 2, - "target": { - "cooked_porkchop": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy", - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": {} - } - }, - "multiagent_cooking_1_suspicious_stew": { - "conversation": "Let's work together to make suspicious_stew.", - "agent_count": 2, - "target": { - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "1": "Collaborate with agents around you to make 1 suspicious_stew. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 3, - "blocked_agents_count": 0, - "unique_target_items": 1, - "overall_difficulty_score": 2, - "difficulty_category": "easy" - }, - "difficulty": "easy", - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "dandelion": 1 - } - } - }, - "multiagent_cooking_1_pumpkin_pie_1_suspicious_stew": { - "conversation": "Let's collaborate to make pumpkin_pie and suspicious_stew.", - "agent_count": 2, - "target": { - "pumpkin_pie": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "egg": 1, - "dandelion": 1 - }, - "1": { - "bowl": 1 - } - } - }, - "multiagent_cooking_1_cooked_chicken_1_mushroom_stew_blocked_access_0_1": { - "conversation": "Let's collaborate to make mushroom_stew and cooked_chicken.", - "agent_count": 2, - "target": { - "mushroom_stew": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken. ", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken. " - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 2, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "coal": 8 - } - } - }, - "multiagent_cooking_1_cookie": { - "conversation": "Let's work together to make cookie.", - "agent_count": 2, - "target": { - "cookie": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "1": "Collaborate with agents around you to make 1 cookie. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 3, - "blocked_agents_count": 0, - "unique_target_items": 1, - "overall_difficulty_score": 2, - "difficulty_category": "easy" - }, - "difficulty": "easy", - "initial_inventory": { - "0": { - "cocoa_beans": 1 - }, - "1": {} - } - }, - "multiagent_cooking_1_cookie_1_golden_carrot": { - "conversation": "Let's collaborate to make cookie and golden_carrot.", - "agent_count": 2, - "target": { - "cookie": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 golden_carrot. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "1": "Collaborate with agents around you to make 1 cookie, 1 golden_carrot. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "cocoa_beans": 1 - }, - "1": { - "gold_ingot": 8 - } - } - }, - "multiagent_cooking_1_beetroot_soup_1_golden_carrot": { - "conversation": "Let's collaborate to make golden_carrot and beetroot_soup.", - "agent_count": 2, - "target": { - "golden_carrot": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "gold_ingot": 8 - }, - "1": { - "bowl": 1 - } - } - }, - "multiagent_cooking_1_cooked_rabbit_1_suspicious_stew_blocked_access_1": { - "conversation": "Let's collaborate to make cooked_rabbit and suspicious_stew.", - "agent_count": 2, - "target": { - "cooked_rabbit": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew. " - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 8, - "dandelion": 1 - }, - "1": { - "bowl": 1 - } - } - }, - "multiagent_cooking_1_beetroot_soup_1_cookie_blocked_access_1": { - "conversation": "Let's collaborate to make beetroot_soup and cookie.", - "agent_count": 2, - "target": { - "beetroot_soup": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie. " - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "cocoa_beans": 1 - } - } - }, - "multiagent_cooking_1_cooked_mutton_blocked_access_0": { - "conversation": "Let's work together to make cooked_mutton.", - "agent_count": 2, - "target": { - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton. ", - "1": "Collaborate with agents around you to make 1 cooked_mutton. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 2, - "blocked_agents_count": 1, - "unique_target_items": 1, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy", - "initial_inventory": { - "0": { - "coal": 8 - }, - "1": {} - } - }, - "multiagent_cooking_1_cooked_mutton_1_suspicious_stew_blocked_access_1": { - "conversation": "Let's collaborate to make suspicious_stew and cooked_mutton.", - "agent_count": 2, - "target": { - "suspicious_stew": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton. " - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "bowl": 1, - "coal": 8 - }, - "1": { - "dandelion": 1 - } - } - }, - "multiagent_cooking_1_cooked_rabbit_1_golden_carrot": { - "conversation": "Let's collaborate to make cooked_rabbit and golden_carrot.", - "agent_count": 2, - "target": { - "cooked_rabbit": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 8 - }, - "1": { - "gold_ingot": 8 - } - } - }, - "multiagent_cooking_1_pumpkin_pie_blocked_access_1": { - "conversation": "Let's work together to make pumpkin_pie.", - "agent_count": 2, - "target": { - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "1": "Collaborate with agents around you to make 1 pumpkin_pie. " - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 1, - "unique_target_items": 1, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy", - "initial_inventory": { - "0": { - "egg": 1 - }, - "1": {} - } - }, - "multiagent_cooking_1_cooked_porkchop_blocked_access_1": { - "conversation": "Let's work together to make cooked_porkchop.", - "agent_count": 2, - "target": { - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "1": "Collaborate with agents around you to make 1 cooked_porkchop. " - }, - "difficulty_metrics": { - "total_recipe_steps": 2, - "blocked_agents_count": 1, - "unique_target_items": 1, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy", - "initial_inventory": { - "0": { - "coal": 8 - }, - "1": {} - } - }, - "multiagent_cooking_1_cooked_rabbit_1_pumpkin_pie_blocked_access_0_1": { - "conversation": "Let's collaborate to make cooked_rabbit and pumpkin_pie.", - "agent_count": 2, - "target": { - "cooked_rabbit": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie. ", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie. " - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 2, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "coal": 8 - }, - "1": { - "egg": 1 - } - } - }, - "multiagent_cooking_1_cooked_rabbit_blocked_access_0_1": { - "conversation": "Let's work together to make cooked_rabbit.", - "agent_count": 2, - "target": { - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit. ", - "1": "Collaborate with agents around you to make 1 cooked_rabbit. " - }, - "difficulty_metrics": { - "total_recipe_steps": 2, - "blocked_agents_count": 2, - "unique_target_items": 1, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 8 - }, - "1": {} - } - }, - "multiagent_cooking_1_cooked_mutton_1_cookie_blocked_access_0_1": { - "conversation": "Let's collaborate to make cooked_mutton and cookie.", - "agent_count": 2, - "target": { - "cooked_mutton": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cookie. ", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cookie. " - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 2, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "coal": 8 - }, - "1": { - "cocoa_beans": 1 - } - } - }, - "multiagent_cooking_1_golden_carrot_1_suspicious_stew": { - "conversation": "Let's collaborate to make golden_carrot and suspicious_stew.", - "agent_count": 2, - "target": { - "golden_carrot": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "gold_ingot": 8, - "dandelion": 1 - }, - "1": { - "bowl": 1 - } - } - }, - "multiagent_cooking_1_golden_carrot_1_pumpkin_pie_blocked_access_1": { - "conversation": "Let's collaborate to make pumpkin_pie and golden_carrot.", - "agent_count": 2, - "target": { - "pumpkin_pie": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot. " - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "egg": 1 - }, - "1": { - "gold_ingot": 8 - } - } - }, - "multiagent_cooking_1_cooked_mutton_1_cooked_porkchop_blocked_access_1": { - "conversation": "Let's collaborate to make cooked_porkchop and cooked_mutton.", - "agent_count": 2, - "target": { - "cooked_porkchop": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton. " - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": {} - } - }, - "multiagent_cooking_1_cooked_porkchop_1_golden_carrot": { - "conversation": "Let's collaborate to make golden_carrot and cooked_porkchop.", - "agent_count": 2, - "target": { - "golden_carrot": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_porkchop. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_porkchop. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "gold_ingot": 8 - }, - "1": { - "coal": 8 - } - } - }, - "multiagent_cooking_1_cooked_chicken_1_cooked_porkchop_blocked_access_1": { - "conversation": "Let's collaborate to make cooked_chicken and cooked_porkchop.", - "agent_count": 2, - "target": { - "cooked_chicken": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop. " - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": {} - } - }, - "multiagent_cooking_1_beetroot_soup_1_suspicious_stew_blocked_access_0_1": { - "conversation": "Let's collaborate to make suspicious_stew and beetroot_soup.", - "agent_count": 2, - "target": { - "suspicious_stew": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup. ", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup. " - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 2, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "bowl": 2 - }, - "1": { - "dandelion": 1 - } - } - }, - "multiagent_cooking_1_beetroot_soup_blocked_access_0": { - "conversation": "Let's work together to make beetroot_soup.", - "agent_count": 2, - "target": { - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup. ", - "1": "Collaborate with agents around you to make 1 beetroot_soup. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 3, - "blocked_agents_count": 1, - "unique_target_items": 1, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy", - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": {} - } - }, - "multiagent_cooking_1_cooked_mutton_1_cooked_rabbit": { - "conversation": "Let's collaborate to make cooked_rabbit and cooked_mutton.", - "agent_count": 2, - "target": { - "cooked_rabbit": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_mutton. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_mutton. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy", - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": {} - } - }, - "multiagent_cooking_1_beetroot_soup": { - "conversation": "Let's work together to make beetroot_soup.", - "agent_count": 2, - "target": { - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "1": "Collaborate with agents around you to make 1 beetroot_soup. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 3, - "blocked_agents_count": 0, - "unique_target_items": 1, - "overall_difficulty_score": 2, - "difficulty_category": "easy" - }, - "difficulty": "easy", - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": {} - } - }, - "multiagent_cooking_1_beetroot_soup_1_cooked_chicken_blocked_access_0": { - "conversation": "Let's collaborate to make beetroot_soup and cooked_chicken.", - "agent_count": 2, - "target": { - "beetroot_soup": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_chicken. ", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "coal": 8 - } - } - }, - "multiagent_cooking_1_cooked_chicken_1_cooked_mutton_blocked_access_0": { - "conversation": "Let's collaborate to make cooked_chicken and cooked_mutton.", - "agent_count": 2, - "target": { - "cooked_chicken": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_mutton. ", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_mutton. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": {} - } - }, - "multiagent_cooking_1_beetroot_soup_1_cooked_mutton_blocked_access_0_1": { - "conversation": "Let's collaborate to make cooked_mutton and beetroot_soup.", - "agent_count": 2, - "target": { - "cooked_mutton": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup. ", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup. " - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 2, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "coal": 8 - }, - "1": { - "bowl": 1 - } - } - }, - "multiagent_cooking_1_cookie_blocked_access_0": { - "conversation": "Let's work together to make cookie.", - "agent_count": 2, - "target": { - "cookie": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie. ", - "1": "Collaborate with agents around you to make 1 cookie. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 3, - "blocked_agents_count": 1, - "unique_target_items": 1, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy", - "initial_inventory": { - "0": { - "cocoa_beans": 1 - }, - "1": {} - } - }, - "multiagent_cooking_1_cooked_rabbit_1_suspicious_stew_blocked_access_0": { - "conversation": "Let's collaborate to make suspicious_stew and cooked_rabbit.", - "agent_count": 2, - "target": { - "suspicious_stew": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_rabbit. ", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_rabbit. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "bowl": 1, - "coal": 8 - }, - "1": { - "dandelion": 1 - } - } - }, - "multiagent_cooking_1_cooked_mutton_1_cookie": { - "conversation": "Let's collaborate to make cookie and cooked_mutton.", - "agent_count": 2, - "target": { - "cookie": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_mutton. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_mutton. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "cocoa_beans": 1 - }, - "1": { - "coal": 8 - } - } - }, - "multiagent_cooking_1_cooked_mutton_1_cooked_porkchop": { - "conversation": "Let's collaborate to make cooked_mutton and cooked_porkchop.", - "agent_count": 2, - "target": { - "cooked_mutton": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy", - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": {} - } - }, - "multiagent_cooking_1_cooked_chicken_1_cooked_mutton_blocked_access_1": { - "conversation": "Let's collaborate to make cooked_mutton and cooked_chicken.", - "agent_count": 2, - "target": { - "cooked_mutton": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_chicken. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_chicken. " - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": {} - } - }, - "multiagent_cooking_1_mushroom_stew_1_suspicious_stew": { - "conversation": "Let's collaborate to make suspicious_stew and mushroom_stew.", - "agent_count": 2, - "target": { - "suspicious_stew": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 mushroom_stew. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 mushroom_stew. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "bowl": 2 - }, - "1": { - "dandelion": 1 - } - } - }, - "multiagent_cooking_1_beetroot_soup_1_cooked_rabbit_blocked_access_1": { - "conversation": "Let's collaborate to make cooked_rabbit and beetroot_soup.", - "agent_count": 2, - "target": { - "cooked_rabbit": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup. " - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 8 - }, - "1": { - "bowl": 1 - } - } - } -} \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_train/2_agent_cooking_train_tasks.json b/tasks/cooking_tasks/require_collab_train/2_agent_cooking_train_tasks.json deleted file mode 100644 index 1a2c00b..0000000 --- a/tasks/cooking_tasks/require_collab_train/2_agent_cooking_train_tasks.json +++ /dev/null @@ -1,1615 +0,0 @@ -{ - "multiagent_cooking_2_1_cooked_chicken_1_golden_carrot": { - "conversation": "Let's work together to make cooked_chicken, golden_carrot.", - "agent_count": 2, - "target": { - "cooked_chicken": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" - }, - "initial_inventory": { - "0": { - "coal": 8 - }, - "1": { - "gold_ingots": 8 - } - } - }, - "multiagent_cooking_2_1_cooked_mutton_1_golden_carrot": { - "conversation": "Let's work together to make golden_carrot, cooked_mutton.", - "agent_count": 2, - "target": { - "golden_carrot": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" - }, - "initial_inventory": { - "0": { - "gold_ingots": 8 - }, - "1": { - "coal": 8 - } - } - }, - "multiagent_cooking_2_1_cookie_1_mushroom_stew": { - "conversation": "Let's work together to make cookie, mushroom_stew.", - "agent_count": 2, - "target": { - "cookie": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "1": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" - }, - "initial_inventory": { - "0": { - "cocoa_beans": 1 - }, - "1": { - "bowl": 1 - } - } - }, - "multiagent_cooking_2_1_cookie_1_golden_carrot": { - "conversation": "Let's work together to make golden_carrot, cookie.", - "agent_count": 2, - "target": { - "golden_carrot": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cookie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cookie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" - }, - "initial_inventory": { - "0": { - "gold_ingots": 8 - }, - "1": { - "cocoa_beans": 1 - } - } - }, - "multiagent_cooking_2_1_cooked_mutton_1_cooked_porkchop": { - "conversation": "Let's work together to make cooked_porkchop, cooked_mutton.", - "agent_count": 2, - "target": { - "cooked_porkchop": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" - }, - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": {} - } - }, - "multiagent_cooking_2_1_cookie_1_suspicious_stew": { - "conversation": "Let's work together to make suspicious_stew, cookie.", - "agent_count": 2, - "target": { - "suspicious_stew": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cookie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cookie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" - }, - "initial_inventory": { - "0": { - "bowl": 1, - "cocoa_beans": 1 - }, - "1": { - "dandelion": 1 - } - } - }, - "multiagent_cooking_2_1_mushroom_stew_1_suspicious_stew": { - "conversation": "Let's work together to make mushroom_stew, suspicious_stew.", - "agent_count": 2, - "target": { - "mushroom_stew": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" - }, - "initial_inventory": { - "0": { - "bowl": 2 - }, - "1": { - "dandelion": 1 - } - } - }, - "multiagent_cooking_2_1_cookie_1_pumpkin_pie": { - "conversation": "Let's work together to make pumpkin_pie, cookie.", - "agent_count": 2, - "target": { - "pumpkin_pie": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" - }, - "initial_inventory": { - "0": { - "egg": 1 - }, - "1": { - "cocoa_beans": 1 - } - } - }, - "multiagent_cooking_2_1_cooked_chicken_1_suspicious_stew": { - "conversation": "Let's work together to make suspicious_stew, cooked_chicken.", - "agent_count": 2, - "target": { - "suspicious_stew": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" - }, - "initial_inventory": { - "0": { - "bowl": 1, - "coal": 8 - }, - "1": { - "dandelion": 1 - } - } - }, - "multiagent_cooking_2_1_cooked_chicken_1_mushroom_stew": { - "conversation": "Let's work together to make mushroom_stew, cooked_chicken.", - "agent_count": 2, - "target": { - "mushroom_stew": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" - }, - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "coal": 8 - } - } - }, - "multiagent_cooking_2_1_cooked_rabbit_1_golden_carrot": { - "conversation": "Let's work together to make golden_carrot, cooked_rabbit.", - "agent_count": 2, - "target": { - "golden_carrot": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_rabbit. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_rabbit. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" - }, - "initial_inventory": { - "0": { - "gold_ingots": 8 - }, - "1": { - "coal": 8 - } - } - }, - "multiagent_cooking_2_1_golden_carrot_1_mushroom_stew": { - "conversation": "Let's work together to make golden_carrot, mushroom_stew.", - "agent_count": 2, - "target": { - "golden_carrot": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" - }, - "initial_inventory": { - "0": { - "gold_ingots": 8 - }, - "1": { - "bowl": 1 - } - } - }, - "multiagent_cooking_2_1_golden_carrot_1_pumpkin_pie": { - "conversation": "Let's work together to make pumpkin_pie, golden_carrot.", - "agent_count": 2, - "target": { - "pumpkin_pie": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" - }, - "initial_inventory": { - "0": { - "egg": 1 - }, - "1": { - "gold_ingots": 8 - } - } - }, - "multiagent_cooking_2_1_cooked_chicken_1_cooked_porkchop": { - "conversation": "Let's work together to make cooked_chicken, cooked_porkchop.", - "agent_count": 2, - "target": { - "cooked_chicken": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" - }, - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": {} - } - }, - "multiagent_cooking_2_1_beetroot_soup_1_cooked_porkchop": { - "conversation": "Let's work together to make beetroot_soup, cooked_porkchop.", - "agent_count": 2, - "target": { - "beetroot_soup": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" - }, - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "coal": 8 - } - } - }, - "multiagent_cooking_2_1_cooked_porkchop_1_mushroom_stew": { - "conversation": "Let's work together to make mushroom_stew, cooked_porkchop.", - "agent_count": 2, - "target": { - "mushroom_stew": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" - }, - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "coal": 8 - } - } - }, - "multiagent_cooking_2_1_cooked_porkchop_1_golden_carrot": { - "conversation": "Let's work together to make cooked_porkchop, golden_carrot.", - "agent_count": 2, - "target": { - "cooked_porkchop": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" - }, - "initial_inventory": { - "0": { - "coal": 8 - }, - "1": { - "gold_ingots": 8 - } - } - }, - "multiagent_cooking_2_1_cooked_porkchop_1_pumpkin_pie": { - "conversation": "Let's work together to make cooked_porkchop, pumpkin_pie.", - "agent_count": 2, - "target": { - "cooked_porkchop": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" - }, - "initial_inventory": { - "0": { - "coal": 8 - }, - "1": { - "egg": 1 - } - } - }, - "multiagent_cooking_2_1_cooked_mutton_1_suspicious_stew": { - "conversation": "Let's work together to make cooked_mutton, suspicious_stew.", - "agent_count": 2, - "target": { - "cooked_mutton": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 suspicious_stew. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 suspicious_stew. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" - }, - "initial_inventory": { - "0": { - "coal": 8, - "dandelion": 1 - }, - "1": { - "bowl": 1 - } - } - }, - "multiagent_cooking_2_1_mushroom_stew_1_pumpkin_pie": { - "conversation": "Let's work together to make pumpkin_pie, mushroom_stew.", - "agent_count": 2, - "target": { - "pumpkin_pie": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" - }, - "initial_inventory": { - "0": { - "egg": 1 - }, - "1": { - "bowl": 1 - } - } - }, - "multiagent_cooking_2_1_cooked_rabbit_1_mushroom_stew": { - "conversation": "Let's work together to make cooked_rabbit, mushroom_stew.", - "agent_count": 2, - "target": { - "cooked_rabbit": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" - }, - "initial_inventory": { - "0": { - "coal": 8 - }, - "1": { - "bowl": 1 - } - } - }, - "multiagent_cooking_2_1_cooked_chicken_1_cookie": { - "conversation": "Let's work together to make cookie, cooked_chicken.", - "agent_count": 2, - "target": { - "cookie": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_chicken. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_chicken. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" - }, - "initial_inventory": { - "0": { - "cocoa_beans": 1 - }, - "1": { - "coal": 8 - } - } - }, - "multiagent_cooking_2_1_cooked_chicken_1_pumpkin_pie": { - "conversation": "Let's work together to make pumpkin_pie, cooked_chicken.", - "agent_count": 2, - "target": { - "pumpkin_pie": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" - }, - "initial_inventory": { - "0": { - "egg": 1 - }, - "1": { - "coal": 8 - } - } - }, - "multiagent_cooking_2_1_cooked_mutton_1_mushroom_stew": { - "conversation": "Let's work together to make mushroom_stew, cooked_mutton.", - "agent_count": 2, - "target": { - "mushroom_stew": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" - }, - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "coal": 8 - } - } - }, - "multiagent_cooking_2_1_cooked_porkchop_1_cooked_rabbit": { - "conversation": "Let's work together to make cooked_rabbit, cooked_porkchop.", - "agent_count": 2, - "target": { - "cooked_rabbit": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" - }, - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": {} - } - }, - "multiagent_cooking_2_1_cooked_porkchop_1_suspicious_stew": { - "conversation": "Let's work together to make suspicious_stew, cooked_porkchop.", - "agent_count": 2, - "target": { - "suspicious_stew": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" - }, - "initial_inventory": { - "0": { - "bowl": 1, - "coal": 8 - }, - "1": { - "dandelion": 1 - } - } - }, - "multiagent_cooking_2_1_beetroot_soup_1_suspicious_stew": { - "conversation": "Let's work together to make suspicious_stew, beetroot_soup.", - "agent_count": 2, - "target": { - "suspicious_stew": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" - }, - "initial_inventory": { - "0": { - "bowl": 2 - }, - "1": { - "dandelion": 1 - } - } - }, - "multiagent_cooking_2_1_cooked_rabbit_1_cookie": { - "conversation": "Let's work together to make cookie, cooked_rabbit.", - "agent_count": 2, - "target": { - "cookie": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" - }, - "initial_inventory": { - "0": { - "cocoa_beans": 1 - }, - "1": { - "coal": 8 - } - } - }, - "multiagent_cooking_2_1_golden_carrot_1_suspicious_stew": { - "conversation": "Let's work together to make golden_carrot, suspicious_stew.", - "agent_count": 2, - "target": { - "golden_carrot": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" - }, - "initial_inventory": { - "0": { - "gold_ingots": 8, - "dandelion": 1 - }, - "1": { - "bowl": 1 - } - } - }, - "multiagent_cooking_2_1_pumpkin_pie_1_suspicious_stew": { - "conversation": "Let's work together to make suspicious_stew, pumpkin_pie.", - "agent_count": 2, - "target": { - "suspicious_stew": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" - }, - "initial_inventory": { - "0": { - "bowl": 1, - "egg": 1 - }, - "1": { - "dandelion": 1 - } - } - }, - "multiagent_cooking_2_1_beetroot_soup_1_cookie": { - "conversation": "Let's work together to make beetroot_soup, cookie.", - "agent_count": 2, - "target": { - "beetroot_soup": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" - }, - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "cocoa_beans": 1 - } - } - }, - "multiagent_cooking_2_1_beetroot_soup_1_cooked_mutton": { - "conversation": "Let's work together to make cooked_mutton, beetroot_soup.", - "agent_count": 2, - "target": { - "cooked_mutton": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" - }, - "initial_inventory": { - "0": { - "coal": 8 - }, - "1": { - "bowl": 1 - } - } - }, - "multiagent_cooking_2_1_beetroot_soup_1_pumpkin_pie": { - "conversation": "Let's work together to make beetroot_soup, pumpkin_pie.", - "agent_count": 2, - "target": { - "beetroot_soup": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" - }, - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "egg": 1 - } - } - }, - "multiagent_cooking_2_1_cooked_chicken_1_cooked_rabbit": { - "conversation": "Let's work together to make cooked_chicken, cooked_rabbit.", - "agent_count": 2, - "target": { - "cooked_chicken": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" - }, - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": {} - } - }, - "multiagent_cooking_2_1_cooked_porkchop_1_cookie": { - "conversation": "Let's work together to make cooked_porkchop, cookie.", - "agent_count": 2, - "target": { - "cooked_porkchop": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cookie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cookie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" - }, - "initial_inventory": { - "0": { - "coal": 8 - }, - "1": { - "cocoa_beans": 1 - } - } - }, - "multiagent_cooking_2_1_beetroot_soup_1_golden_carrot": { - "conversation": "Let's work together to make beetroot_soup, golden_carrot.", - "agent_count": 2, - "target": { - "beetroot_soup": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 golden_carrot. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 golden_carrot. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" - }, - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "gold_ingots": 8 - } - } - }, - "multiagent_cooking_2_1_cooked_rabbit_1_suspicious_stew": { - "conversation": "Let's work together to make cooked_rabbit, suspicious_stew.", - "agent_count": 2, - "target": { - "cooked_rabbit": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" - }, - "initial_inventory": { - "0": { - "coal": 8, - "dandelion": 1 - }, - "1": { - "bowl": 1 - } - } - }, - "multiagent_cooking_2_1_cooked_mutton_1_cooked_rabbit": { - "conversation": "Let's work together to make cooked_rabbit, cooked_mutton.", - "agent_count": 2, - "target": { - "cooked_rabbit": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_mutton. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_mutton. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" - }, - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": {} - } - }, - "multiagent_cooking_2_1_cooked_chicken_1_cooked_mutton": { - "conversation": "Let's work together to make cooked_mutton, cooked_chicken.", - "agent_count": 2, - "target": { - "cooked_mutton": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_chicken. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_chicken. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" - }, - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": {} - } - }, - "multiagent_cooking_2_1_beetroot_soup_1_cooked_rabbit": { - "conversation": "Let's work together to make beetroot_soup, cooked_rabbit.", - "agent_count": 2, - "target": { - "beetroot_soup": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_rabbit. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_rabbit. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" - }, - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "coal": 8 - } - } - }, - "multiagent_cooking_2_1_cooked_mutton_1_cookie": { - "conversation": "Let's work together to make cookie, cooked_mutton.", - "agent_count": 2, - "target": { - "cookie": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_mutton. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_mutton. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" - }, - "initial_inventory": { - "0": { - "cocoa_beans": 1 - }, - "1": { - "coal": 8 - } - } - }, - "multiagent_cooking_2_1_beetroot_soup_1_mushroom_stew": { - "conversation": "Let's work together to make mushroom_stew, beetroot_soup.", - "agent_count": 2, - "target": { - "mushroom_stew": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" - }, - "initial_inventory": { - "0": { - "bowl": 2 - }, - "1": {} - } - }, - "multiagent_cooking_2_1_cooked_rabbit_1_pumpkin_pie": { - "conversation": "Let's work together to make pumpkin_pie, cooked_rabbit.", - "agent_count": 2, - "target": { - "pumpkin_pie": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_rabbit. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_rabbit. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" - }, - "initial_inventory": { - "0": { - "egg": 1 - }, - "1": { - "coal": 8 - } - } - }, - "multiagent_cooking_2_1_beetroot_soup_1_cooked_chicken": { - "conversation": "Let's work together to make beetroot_soup, cooked_chicken.", - "agent_count": 2, - "target": { - "beetroot_soup": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" - }, - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "coal": 8 - } - } - }, - "multiagent_cooking_2_1_cooked_mutton_1_pumpkin_pie": { - "conversation": "Let's work together to make cooked_mutton, pumpkin_pie.", - "agent_count": 2, - "target": { - "cooked_mutton": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" - }, - "initial_inventory": { - "0": { - "coal": 8 - }, - "1": { - "egg": 1 - } - } - } -} \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_train/3_agent.json b/tasks/cooking_tasks/require_collab_train/3_agent.json deleted file mode 100644 index d017c45..0000000 --- a/tasks/cooking_tasks/require_collab_train/3_agent.json +++ /dev/null @@ -1,3729 +0,0 @@ -{ - "multiagent_cooking_3_1_cooked_mutton_1_golden_carrot_1_pumpkin_pie_blocked_access_0": { - "conversation": "Let's work together to make golden_carrot, cooked_mutton, pumpkin_pie.", - "agent_count": 3, - "target": { - "golden_carrot": 1, - "cooked_mutton": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton, 1 pumpkin_pie. ", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton, 1 pumpkin_pie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton, 1 pumpkin_pie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 9, - "blocked_agents_count": 1, - "unique_target_items": 3, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "gold_ingot": 8 - }, - "1": { - "coal": 8 - }, - "2": { - "egg": 1 - } - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_cooked_rabbit_1_mushroom_stew_blocked_access_0_1_2": { - "conversation": "Let's work together to make mushroom_stew, cooked_chicken, cooked_rabbit.", - "agent_count": 3, - "target": { - "mushroom_stew": 1, - "cooked_chicken": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken, 1 cooked_rabbit. ", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken, 1 cooked_rabbit. ", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken, 1 cooked_rabbit. " - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 3, - "unique_target_items": 3, - "overall_difficulty_score": 8, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "coal": 16 - }, - "2": {} - } - }, - "multiagent_cooking_3_1_cookie_1_suspicious_stew_blocked_access_1": { - "conversation": "Let's work together to make cookie, suspicious_stew.", - "agent_count": 3, - "target": { - "cookie": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 suspicious_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "1": "Collaborate with agents around you to make 1 cookie, 1 suspicious_stew. ", - "2": "Collaborate with agents around you to make 1 cookie, 1 suspicious_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "cocoa_beans": 1 - }, - "1": { - "bowl": 1 - }, - "2": { - "dandelion": 1 - } - } - }, - "multiagent_cooking_3_1_cookie_1_golden_carrot_1_suspicious_stew_blocked_access_1": { - "conversation": "Let's work together to make golden_carrot, cookie, suspicious_stew.", - "agent_count": 3, - "target": { - "golden_carrot": 1, - "cookie": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cookie, 1 suspicious_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cookie, 1 suspicious_stew. ", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 cookie, 1 suspicious_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 9, - "blocked_agents_count": 1, - "unique_target_items": 3, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "gold_ingot": 8, - "dandelion": 1 - }, - "1": { - "cocoa_beans": 1 - }, - "2": { - "bowl": 1 - } - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_cookie_1_pumpkin_pie": { - "conversation": "Let's work together to make cooked_chicken, cookie, pumpkin_pie.", - "agent_count": 3, - "target": { - "cooked_chicken": 1, - "cookie": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cookie, 1 pumpkin_pie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cookie, 1 pumpkin_pie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 cookie, 1 pumpkin_pie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 9, - "blocked_agents_count": 0, - "unique_target_items": 3, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "coal": 8 - }, - "1": { - "cocoa_beans": 1 - }, - "2": { - "egg": 1 - } - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_cooked_porkchop_1_golden_carrot_blocked_access_0_1_2": { - "conversation": "Let's work together to make golden_carrot, cooked_porkchop, beetroot_soup.", - "agent_count": 3, - "target": { - "golden_carrot": 1, - "cooked_porkchop": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_porkchop, 1 beetroot_soup. ", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_porkchop, 1 beetroot_soup. ", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_porkchop, 1 beetroot_soup. " - }, - "difficulty_metrics": { - "total_recipe_steps": 8, - "blocked_agents_count": 3, - "unique_target_items": 3, - "overall_difficulty_score": 8, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "gold_ingot": 8 - }, - "1": { - "coal": 8 - }, - "2": { - "bowl": 1 - } - } - }, - "multiagent_cooking_3_1_cooked_rabbit_1_pumpkin_pie_1_suspicious_stew": { - "conversation": "Let's work together to make cooked_rabbit, suspicious_stew, pumpkin_pie.", - "agent_count": 3, - "target": { - "cooked_rabbit": 1, - "suspicious_stew": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew, 1 pumpkin_pie. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew, 1 pumpkin_pie. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew, 1 pumpkin_pie. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 9, - "blocked_agents_count": 0, - "unique_target_items": 3, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "coal": 8, - "egg": 1 - }, - "1": { - "bowl": 1 - }, - "2": { - "dandelion": 1 - } - } - }, - "multiagent_cooking_3_1_cooked_porkchop_1_cooked_rabbit_1_pumpkin_pie_blocked_access_1": { - "conversation": "Let's work together to make cooked_porkchop, pumpkin_pie, cooked_rabbit.", - "agent_count": 3, - "target": { - "cooked_porkchop": 1, - "pumpkin_pie": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie, 1 cooked_rabbit. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie, 1 cooked_rabbit. ", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie, 1 cooked_rabbit. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 8, - "blocked_agents_count": 1, - "unique_target_items": 3, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": { - "egg": 1 - }, - "2": {} - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_golden_carrot_blocked_access_2": { - "conversation": "Let's work together to make cooked_chicken, golden_carrot.", - "agent_count": 3, - "target": { - "cooked_chicken": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [ - "2" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot. " - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 8 - }, - "1": { - "gold_ingot": 8 - }, - "2": {} - } - }, - "multiagent_cooking_3_1_cooked_mutton_1_cooked_rabbit_1_mushroom_stew_blocked_access_0_1_2": { - "conversation": "Let's work together to make cooked_rabbit, mushroom_stew, cooked_mutton.", - "agent_count": 3, - "target": { - "cooked_rabbit": 1, - "mushroom_stew": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew, 1 cooked_mutton. ", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew, 1 cooked_mutton. ", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew, 1 cooked_mutton. " - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 3, - "unique_target_items": 3, - "overall_difficulty_score": 8, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": { - "bowl": 1 - }, - "2": {} - } - }, - "multiagent_cooking_3_1_cooked_porkchop_1_mushroom_stew_1_pumpkin_pie": { - "conversation": "Let's work together to make pumpkin_pie, mushroom_stew, cooked_porkchop.", - "agent_count": 3, - "target": { - "pumpkin_pie": 1, - "mushroom_stew": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 cooked_porkchop. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 cooked_porkchop. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 cooked_porkchop. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 9, - "blocked_agents_count": 0, - "unique_target_items": 3, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "egg": 1 - }, - "1": { - "bowl": 1 - }, - "2": { - "coal": 8 - } - } - }, - "multiagent_cooking_3_1_cooked_porkchop_1_mushroom_stew_1_suspicious_stew": { - "conversation": "Let's work together to make suspicious_stew, mushroom_stew, cooked_porkchop.", - "agent_count": 3, - "target": { - "suspicious_stew": 1, - "mushroom_stew": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 mushroom_stew, 1 cooked_porkchop. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 mushroom_stew, 1 cooked_porkchop. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 mushroom_stew, 1 cooked_porkchop. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 8, - "blocked_agents_count": 0, - "unique_target_items": 3, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "bowl": 2 - }, - "1": { - "dandelion": 1 - }, - "2": { - "coal": 8 - } - } - }, - "multiagent_cooking_3_1_cookie_1_mushroom_stew_1_suspicious_stew_blocked_access_0_1_2": { - "conversation": "Let's work together to make mushroom_stew, cookie, suspicious_stew.", - "agent_count": 3, - "target": { - "mushroom_stew": 1, - "cookie": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cookie, 1 suspicious_stew. ", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cookie, 1 suspicious_stew. ", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cookie, 1 suspicious_stew. " - }, - "difficulty_metrics": { - "total_recipe_steps": 9, - "blocked_agents_count": 3, - "unique_target_items": 3, - "overall_difficulty_score": 9, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "bowl": 2 - }, - "1": { - "cocoa_beans": 1 - }, - "2": { - "dandelion": 1 - } - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_cooked_mutton_1_mushroom_stew_blocked_access_0": { - "conversation": "Let's work together to make cooked_chicken, mushroom_stew, cooked_mutton.", - "agent_count": 3, - "target": { - "cooked_chicken": 1, - "mushroom_stew": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 mushroom_stew, 1 cooked_mutton. ", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 mushroom_stew, 1 cooked_mutton. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 mushroom_stew, 1 cooked_mutton. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 1, - "unique_target_items": 3, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": { - "bowl": 1 - }, - "2": {} - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_cooked_mutton_1_cooked_porkchop_blocked_access_0": { - "conversation": "Let's work together to make cooked_porkchop, cooked_mutton, beetroot_soup.", - "agent_count": 3, - "target": { - "cooked_porkchop": 1, - "cooked_mutton": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton, 1 beetroot_soup. ", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton, 1 beetroot_soup. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton, 1 beetroot_soup. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 1, - "unique_target_items": 3, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": { - "bowl": 1 - }, - "2": {} - } - }, - "multiagent_cooking_3_1_cooked_rabbit_1_golden_carrot_1_suspicious_stew": { - "conversation": "Let's work together to make suspicious_stew, cooked_rabbit, golden_carrot.", - "agent_count": 3, - "target": { - "suspicious_stew": 1, - "cooked_rabbit": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_rabbit, 1 golden_carrot. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_rabbit, 1 golden_carrot. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_rabbit, 1 golden_carrot. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 8, - "blocked_agents_count": 0, - "unique_target_items": 3, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "bowl": 1, - "gold_ingot": 8 - }, - "1": { - "dandelion": 1 - }, - "2": { - "coal": 8 - } - } - }, - "multiagent_cooking_3_1_cooked_mutton_1_cooked_rabbit_1_golden_carrot": { - "conversation": "Let's work together to make golden_carrot, cooked_rabbit, cooked_mutton.", - "agent_count": 3, - "target": { - "golden_carrot": 1, - "cooked_rabbit": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_rabbit, 1 cooked_mutton. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_rabbit, 1 cooked_mutton. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_rabbit, 1 cooked_mutton. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 0, - "unique_target_items": 3, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "gold_ingot": 8 - }, - "1": { - "coal": 16 - }, - "2": {} - } - }, - "multiagent_cooking_3_1_cooked_porkchop_1_pumpkin_pie_blocked_access_0_1_2": { - "conversation": "Let's work together to make cooked_porkchop, pumpkin_pie.", - "agent_count": 3, - "target": { - "cooked_porkchop": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie. ", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie. ", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie. " - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 3, - "unique_target_items": 2, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "coal": 8 - }, - "1": { - "egg": 1 - }, - "2": {} - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_cooked_mutton_1_mushroom_stew_blocked_access_1": { - "conversation": "Let's work together to make beetroot_soup, cooked_mutton, mushroom_stew.", - "agent_count": 3, - "target": { - "beetroot_soup": 1, - "cooked_mutton": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 mushroom_stew. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 mushroom_stew. ", - "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 mushroom_stew. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 8, - "blocked_agents_count": 1, - "unique_target_items": 3, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "bowl": 2 - }, - "1": { - "coal": 8 - }, - "2": {} - } - }, - "multiagent_cooking_3_1_cooked_mutton_1_cooked_porkchop_1_pumpkin_pie_blocked_access_0": { - "conversation": "Let's work together to make cooked_mutton, cooked_porkchop, pumpkin_pie.", - "agent_count": 3, - "target": { - "cooked_mutton": 1, - "cooked_porkchop": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 pumpkin_pie. ", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 pumpkin_pie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 pumpkin_pie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 8, - "blocked_agents_count": 1, - "unique_target_items": 3, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": { - "egg": 1 - }, - "2": {} - } - }, - "multiagent_cooking_3_1_golden_carrot_1_mushroom_stew_1_suspicious_stew_blocked_access_0": { - "conversation": "Let's work together to make suspicious_stew, golden_carrot, mushroom_stew.", - "agent_count": 3, - "target": { - "suspicious_stew": 1, - "golden_carrot": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 golden_carrot, 1 mushroom_stew. ", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 golden_carrot, 1 mushroom_stew. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 golden_carrot, 1 mushroom_stew. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 9, - "blocked_agents_count": 1, - "unique_target_items": 3, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "bowl": 2 - }, - "1": { - "dandelion": 1 - }, - "2": { - "gold_ingot": 8 - } - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_cooked_porkchop_1_suspicious_stew_blocked_access_1": { - "conversation": "Let's work together to make cooked_porkchop, suspicious_stew, beetroot_soup.", - "agent_count": 3, - "target": { - "cooked_porkchop": 1, - "suspicious_stew": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 beetroot_soup. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 beetroot_soup. ", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 beetroot_soup. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 8, - "blocked_agents_count": 1, - "unique_target_items": 3, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "coal": 8 - }, - "1": { - "bowl": 2 - }, - "2": { - "dandelion": 1 - } - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_golden_carrot_1_pumpkin_pie_blocked_access_0_1_2": { - "conversation": "Let's work together to make cooked_chicken, golden_carrot, pumpkin_pie.", - "agent_count": 3, - "target": { - "cooked_chicken": 1, - "golden_carrot": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 pumpkin_pie. ", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 pumpkin_pie. ", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 pumpkin_pie. " - }, - "difficulty_metrics": { - "total_recipe_steps": 9, - "blocked_agents_count": 3, - "unique_target_items": 3, - "overall_difficulty_score": 9, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "coal": 8 - }, - "1": { - "gold_ingot": 8 - }, - "2": { - "egg": 1 - } - } - }, - "multiagent_cooking_3_1_cooked_rabbit_1_mushroom_stew_blocked_access_2": { - "conversation": "Let's work together to make mushroom_stew, cooked_rabbit.", - "agent_count": 3, - "target": { - "mushroom_stew": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [ - "2" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_rabbit. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_rabbit. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_rabbit. " - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "coal": 8 - }, - "2": {} - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_cooked_porkchop_1_mushroom_stew_blocked_access_0": { - "conversation": "Let's work together to make mushroom_stew, cooked_porkchop, cooked_chicken.", - "agent_count": 3, - "target": { - "mushroom_stew": 1, - "cooked_porkchop": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop, 1 cooked_chicken. ", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop, 1 cooked_chicken. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop, 1 cooked_chicken. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 1, - "unique_target_items": 3, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "coal": 16 - }, - "2": {} - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_cooked_rabbit_blocked_access_0_1_2": { - "conversation": "Let's work together to make cooked_rabbit, cooked_chicken.", - "agent_count": 3, - "target": { - "cooked_rabbit": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken. ", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken. ", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken. " - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 3, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": {}, - "2": {} - } - }, - "multiagent_cooking_3_1_cooked_mutton_1_cooked_porkchop_blocked_access_0_1_2": { - "conversation": "Let's work together to make cooked_porkchop, cooked_mutton.", - "agent_count": 3, - "target": { - "cooked_porkchop": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton. ", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton. ", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton. " - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 3, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": {}, - "2": {} - } - }, - "multiagent_cooking_3_1_mushroom_stew_1_pumpkin_pie_1_suspicious_stew": { - "conversation": "Let's work together to make mushroom_stew, suspicious_stew, pumpkin_pie.", - "agent_count": 3, - "target": { - "mushroom_stew": 1, - "suspicious_stew": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 pumpkin_pie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 pumpkin_pie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 pumpkin_pie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 10, - "blocked_agents_count": 0, - "unique_target_items": 3, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "bowl": 2 - }, - "1": { - "dandelion": 1 - }, - "2": { - "egg": 1 - } - } - }, - "multiagent_cooking_3_1_cooked_porkchop_1_pumpkin_pie": { - "conversation": "Let's work together to make cooked_porkchop, pumpkin_pie.", - "agent_count": 3, - "target": { - "cooked_porkchop": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 8 - }, - "1": { - "egg": 1 - }, - "2": {} - } - }, - "multiagent_cooking_3_1_cooked_porkchop_1_suspicious_stew_blocked_access_1": { - "conversation": "Let's work together to make suspicious_stew, cooked_porkchop.", - "agent_count": 3, - "target": { - "suspicious_stew": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop. ", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "dandelion": 1 - }, - "2": { - "coal": 8 - } - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_cooked_chicken_1_cooked_rabbit_blocked_access_2": { - "conversation": "Let's work together to make beetroot_soup, cooked_rabbit, cooked_chicken.", - "agent_count": 3, - "target": { - "beetroot_soup": 1, - "cooked_rabbit": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [ - "2" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_rabbit, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_rabbit, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_rabbit, 1 cooked_chicken. " - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 1, - "unique_target_items": 3, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "coal": 16 - }, - "2": {} - } - }, - "multiagent_cooking_3_1_cooked_porkchop_1_golden_carrot_1_pumpkin_pie_blocked_access_2": { - "conversation": "Let's work together to make golden_carrot, pumpkin_pie, cooked_porkchop.", - "agent_count": 3, - "target": { - "golden_carrot": 1, - "pumpkin_pie": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [ - "2" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie, 1 cooked_porkchop. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie, 1 cooked_porkchop. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie, 1 cooked_porkchop. " - }, - "difficulty_metrics": { - "total_recipe_steps": 9, - "blocked_agents_count": 1, - "unique_target_items": 3, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "gold_ingot": 8 - }, - "1": { - "egg": 1 - }, - "2": { - "coal": 8 - } - } - }, - "multiagent_cooking_3_1_cooked_rabbit_1_pumpkin_pie_1_suspicious_stew_blocked_access_2": { - "conversation": "Let's work together to make suspicious_stew, cooked_rabbit, pumpkin_pie.", - "agent_count": 3, - "target": { - "suspicious_stew": 1, - "cooked_rabbit": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [ - "2" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_rabbit, 1 pumpkin_pie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_rabbit, 1 pumpkin_pie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_rabbit, 1 pumpkin_pie. " - }, - "difficulty_metrics": { - "total_recipe_steps": 9, - "blocked_agents_count": 1, - "unique_target_items": 3, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "bowl": 1, - "egg": 1 - }, - "1": { - "dandelion": 1 - }, - "2": { - "coal": 8 - } - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_cooked_chicken_1_cooked_porkchop": { - "conversation": "Let's work together to make cooked_chicken, cooked_porkchop, beetroot_soup.", - "agent_count": 3, - "target": { - "cooked_chicken": 1, - "cooked_porkchop": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop, 1 beetroot_soup. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop, 1 beetroot_soup. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop, 1 beetroot_soup. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 0, - "unique_target_items": 3, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": { - "bowl": 1 - }, - "2": {} - } - }, - "multiagent_cooking_3_1_golden_carrot_1_mushroom_stew_blocked_access_0_1_2": { - "conversation": "Let's work together to make golden_carrot, mushroom_stew.", - "agent_count": 3, - "target": { - "golden_carrot": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew. ", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew. ", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew. " - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 3, - "unique_target_items": 2, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "gold_ingot": 8 - }, - "1": { - "bowl": 1 - }, - "2": {} - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_cooked_porkchop_1_cooked_rabbit": { - "conversation": "Let's work together to make cooked_porkchop, cooked_chicken, cooked_rabbit.", - "agent_count": 3, - "target": { - "cooked_porkchop": 1, - "cooked_chicken": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 cooked_rabbit. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 cooked_rabbit. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 cooked_rabbit. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 0, - "unique_target_items": 3, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 24 - }, - "1": {}, - "2": {} - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_cooked_chicken_1_cooked_porkchop_blocked_access_0": { - "conversation": "Let's work together to make beetroot_soup, cooked_chicken, cooked_porkchop.", - "agent_count": 3, - "target": { - "beetroot_soup": 1, - "cooked_chicken": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_chicken, 1 cooked_porkchop. ", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_chicken, 1 cooked_porkchop. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_chicken, 1 cooked_porkchop. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 1, - "unique_target_items": 3, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "coal": 16 - }, - "2": {} - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_cookie": { - "conversation": "Let's work together to make beetroot_soup, cookie.", - "agent_count": 3, - "target": { - "beetroot_soup": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "cocoa_beans": 1 - }, - "2": {} - } - }, - "multiagent_cooking_3_1_cooked_mutton_1_cookie_1_mushroom_stew_blocked_access_0_1_2": { - "conversation": "Let's work together to make cooked_mutton, cookie, mushroom_stew.", - "agent_count": 3, - "target": { - "cooked_mutton": 1, - "cookie": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cookie, 1 mushroom_stew. ", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cookie, 1 mushroom_stew. ", - "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 cookie, 1 mushroom_stew. " - }, - "difficulty_metrics": { - "total_recipe_steps": 8, - "blocked_agents_count": 3, - "unique_target_items": 3, - "overall_difficulty_score": 8, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "coal": 8 - }, - "1": { - "cocoa_beans": 1 - }, - "2": { - "bowl": 1 - } - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_cooked_rabbit": { - "conversation": "Let's work together to make cooked_rabbit, cooked_chicken.", - "agent_count": 3, - "target": { - "cooked_rabbit": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy", - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": {}, - "2": {} - } - }, - "multiagent_cooking_3_1_cooked_mutton_1_cooked_porkchop_1_cookie": { - "conversation": "Let's work together to make cooked_mutton, cooked_porkchop, cookie.", - "agent_count": 3, - "target": { - "cooked_mutton": 1, - "cooked_porkchop": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 cookie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 cookie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 cookie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 0, - "unique_target_items": 3, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": { - "cocoa_beans": 1 - }, - "2": {} - } - }, - "multiagent_cooking_3_1_cooked_porkchop_1_golden_carrot_1_pumpkin_pie_blocked_access_0_1_2": { - "conversation": "Let's work together to make golden_carrot, cooked_porkchop, pumpkin_pie.", - "agent_count": 3, - "target": { - "golden_carrot": 1, - "cooked_porkchop": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_porkchop, 1 pumpkin_pie. ", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_porkchop, 1 pumpkin_pie. ", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_porkchop, 1 pumpkin_pie. " - }, - "difficulty_metrics": { - "total_recipe_steps": 9, - "blocked_agents_count": 3, - "unique_target_items": 3, - "overall_difficulty_score": 9, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "gold_ingot": 8 - }, - "1": { - "coal": 8 - }, - "2": { - "egg": 1 - } - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_pumpkin_pie_blocked_access_0_1_2": { - "conversation": "Let's work together to make beetroot_soup, pumpkin_pie.", - "agent_count": 3, - "target": { - "beetroot_soup": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie. ", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie. ", - "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie. " - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 3, - "unique_target_items": 2, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "egg": 1 - }, - "2": {} - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_cooked_porkchop_1_suspicious_stew": { - "conversation": "Let's work together to make cooked_porkchop, cooked_chicken, suspicious_stew.", - "agent_count": 3, - "target": { - "cooked_porkchop": 1, - "cooked_chicken": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 suspicious_stew. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 suspicious_stew. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 suspicious_stew. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 0, - "unique_target_items": 3, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": { - "bowl": 1 - }, - "2": { - "dandelion": 1 - } - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_cooked_porkchop": { - "conversation": "Let's work together to make cooked_porkchop, cooked_chicken.", - "agent_count": 3, - "target": { - "cooked_porkchop": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy", - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": {}, - "2": {} - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_cooked_mutton_1_suspicious_stew_blocked_access_2": { - "conversation": "Let's work together to make suspicious_stew, cooked_chicken, cooked_mutton.", - "agent_count": 3, - "target": { - "suspicious_stew": 1, - "cooked_chicken": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [ - "2" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_mutton. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_mutton. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_mutton. " - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 1, - "unique_target_items": 3, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "dandelion": 1 - }, - "2": { - "coal": 16 - } - } - }, - "multiagent_cooking_3_1_cooked_rabbit_1_pumpkin_pie_blocked_access_0": { - "conversation": "Let's work together to make pumpkin_pie, cooked_rabbit.", - "agent_count": 3, - "target": { - "pumpkin_pie": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_rabbit. ", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_rabbit. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_rabbit. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "egg": 1 - }, - "1": { - "coal": 8 - }, - "2": {} - } - }, - "multiagent_cooking_3_1_golden_carrot_1_pumpkin_pie_1_suspicious_stew": { - "conversation": "Let's work together to make golden_carrot, pumpkin_pie, suspicious_stew.", - "agent_count": 3, - "target": { - "golden_carrot": 1, - "pumpkin_pie": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie, 1 suspicious_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie, 1 suspicious_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie, 1 suspicious_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 10, - "blocked_agents_count": 0, - "unique_target_items": 3, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "gold_ingot": 8, - "dandelion": 1 - }, - "1": { - "egg": 1 - }, - "2": { - "bowl": 1 - } - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_cooked_porkchop_1_suspicious_stew_blocked_access_2": { - "conversation": "Let's work together to make cooked_chicken, suspicious_stew, cooked_porkchop.", - "agent_count": 3, - "target": { - "cooked_chicken": 1, - "suspicious_stew": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [ - "2" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew, 1 cooked_porkchop. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew, 1 cooked_porkchop. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew, 1 cooked_porkchop. " - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 1, - "unique_target_items": 3, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": { - "bowl": 1 - }, - "2": { - "dandelion": 1 - } - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_cookie_blocked_access_2": { - "conversation": "Let's work together to make cooked_chicken, cookie.", - "agent_count": 3, - "target": { - "cooked_chicken": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [ - "2" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cookie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cookie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 cookie. " - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 8 - }, - "1": { - "cocoa_beans": 1 - }, - "2": {} - } - }, - "multiagent_cooking_3_1_cooked_rabbit_1_mushroom_stew": { - "conversation": "Let's work together to make mushroom_stew, cooked_rabbit.", - "agent_count": 3, - "target": { - "mushroom_stew": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_rabbit. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_rabbit. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_rabbit. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "coal": 8 - }, - "2": {} - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_pumpkin_pie_blocked_access_0_1_2": { - "conversation": "Let's work together to make pumpkin_pie, cooked_chicken.", - "agent_count": 3, - "target": { - "pumpkin_pie": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken. ", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken. ", - "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken. " - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 3, - "unique_target_items": 2, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "egg": 1 - }, - "1": { - "coal": 8 - }, - "2": {} - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_cooked_mutton_1_cooked_porkchop": { - "conversation": "Let's work together to make beetroot_soup, cooked_porkchop, cooked_mutton.", - "agent_count": 3, - "target": { - "beetroot_soup": 1, - "cooked_porkchop": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop, 1 cooked_mutton. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop, 1 cooked_mutton. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop, 1 cooked_mutton. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 0, - "unique_target_items": 3, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "coal": 16 - }, - "2": {} - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_cooked_chicken_1_golden_carrot": { - "conversation": "Let's work together to make cooked_chicken, golden_carrot, beetroot_soup.", - "agent_count": 3, - "target": { - "cooked_chicken": 1, - "golden_carrot": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 beetroot_soup. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 beetroot_soup. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 beetroot_soup. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 8, - "blocked_agents_count": 0, - "unique_target_items": 3, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 8 - }, - "1": { - "gold_ingot": 8 - }, - "2": { - "bowl": 1 - } - } - }, - "multiagent_cooking_3_1_cooked_mutton_1_pumpkin_pie_blocked_access_1": { - "conversation": "Let's work together to make cooked_mutton, pumpkin_pie.", - "agent_count": 3, - "target": { - "cooked_mutton": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie. ", - "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 8 - }, - "1": { - "egg": 1 - }, - "2": {} - } - }, - "multiagent_cooking_3_1_cooked_rabbit_1_golden_carrot_1_mushroom_stew_blocked_access_2": { - "conversation": "Let's work together to make cooked_rabbit, mushroom_stew, golden_carrot.", - "agent_count": 3, - "target": { - "cooked_rabbit": 1, - "mushroom_stew": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [ - "2" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew, 1 golden_carrot. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew, 1 golden_carrot. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew, 1 golden_carrot. " - }, - "difficulty_metrics": { - "total_recipe_steps": 8, - "blocked_agents_count": 1, - "unique_target_items": 3, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "coal": 8 - }, - "1": { - "bowl": 1 - }, - "2": { - "gold_ingot": 8 - } - } - }, - "multiagent_cooking_3_1_cooked_mutton_1_cooked_rabbit_1_cookie_blocked_access_0_1_2": { - "conversation": "Let's work together to make cookie, cooked_mutton, cooked_rabbit.", - "agent_count": 3, - "target": { - "cookie": 1, - "cooked_mutton": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_mutton, 1 cooked_rabbit. ", - "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_mutton, 1 cooked_rabbit. ", - "2": "Collaborate with agents around you to make 1 cookie, 1 cooked_mutton, 1 cooked_rabbit. " - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 3, - "unique_target_items": 3, - "overall_difficulty_score": 8, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "cocoa_beans": 1 - }, - "1": { - "coal": 16 - }, - "2": {} - } - }, - "multiagent_cooking_3_1_cooked_porkchop_1_mushroom_stew_1_pumpkin_pie_blocked_access_0": { - "conversation": "Let's work together to make pumpkin_pie, cooked_porkchop, mushroom_stew.", - "agent_count": 3, - "target": { - "pumpkin_pie": 1, - "cooked_porkchop": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_porkchop, 1 mushroom_stew. ", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_porkchop, 1 mushroom_stew. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_porkchop, 1 mushroom_stew. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 9, - "blocked_agents_count": 1, - "unique_target_items": 3, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "egg": 1 - }, - "1": { - "coal": 8 - }, - "2": { - "bowl": 1 - } - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_golden_carrot_1_suspicious_stew_blocked_access_2": { - "conversation": "Let's work together to make golden_carrot, suspicious_stew, cooked_chicken.", - "agent_count": 3, - "target": { - "golden_carrot": 1, - "suspicious_stew": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [ - "2" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_chicken. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_chicken. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_chicken. " - }, - "difficulty_metrics": { - "total_recipe_steps": 8, - "blocked_agents_count": 1, - "unique_target_items": 3, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "gold_ingot": 8, - "coal": 8 - }, - "1": { - "bowl": 1 - }, - "2": { - "dandelion": 1 - } - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_cookie_1_golden_carrot": { - "conversation": "Let's work together to make golden_carrot, cooked_chicken, cookie.", - "agent_count": 3, - "target": { - "golden_carrot": 1, - "cooked_chicken": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_chicken, 1 cookie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_chicken, 1 cookie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_chicken, 1 cookie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 8, - "blocked_agents_count": 0, - "unique_target_items": 3, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "gold_ingot": 8 - }, - "1": { - "coal": 8 - }, - "2": { - "cocoa_beans": 1 - } - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_cooked_chicken_1_cookie": { - "conversation": "Let's work together to make cooked_chicken, beetroot_soup, cookie.", - "agent_count": 3, - "target": { - "cooked_chicken": 1, - "beetroot_soup": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 beetroot_soup, 1 cookie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 beetroot_soup, 1 cookie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 beetroot_soup, 1 cookie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 8, - "blocked_agents_count": 0, - "unique_target_items": 3, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 8 - }, - "1": { - "bowl": 1 - }, - "2": { - "cocoa_beans": 1 - } - } - }, - "multiagent_cooking_3_1_cooked_mutton_1_cooked_porkchop_1_golden_carrot": { - "conversation": "Let's work together to make cooked_mutton, cooked_porkchop, golden_carrot.", - "agent_count": 3, - "target": { - "cooked_mutton": 1, - "cooked_porkchop": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 golden_carrot. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 golden_carrot. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 golden_carrot. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 0, - "unique_target_items": 3, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": { - "gold_ingot": 8 - }, - "2": {} - } - }, - "multiagent_cooking_3_1_cooked_rabbit_1_pumpkin_pie": { - "conversation": "Let's work together to make cooked_rabbit, pumpkin_pie.", - "agent_count": 3, - "target": { - "cooked_rabbit": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 8 - }, - "1": { - "egg": 1 - }, - "2": {} - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_cookie_1_suspicious_stew": { - "conversation": "Let's work together to make cooked_chicken, suspicious_stew, cookie.", - "agent_count": 3, - "target": { - "cooked_chicken": 1, - "suspicious_stew": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew, 1 cookie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew, 1 cookie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew, 1 cookie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 8, - "blocked_agents_count": 0, - "unique_target_items": 3, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 8, - "cocoa_beans": 1 - }, - "1": { - "bowl": 1 - }, - "2": { - "dandelion": 1 - } - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_cooked_chicken_1_pumpkin_pie": { - "conversation": "Let's work together to make pumpkin_pie, beetroot_soup, cooked_chicken.", - "agent_count": 3, - "target": { - "pumpkin_pie": 1, - "beetroot_soup": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 beetroot_soup, 1 cooked_chicken. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 beetroot_soup, 1 cooked_chicken. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 beetroot_soup, 1 cooked_chicken. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 9, - "blocked_agents_count": 0, - "unique_target_items": 3, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "egg": 1 - }, - "1": { - "bowl": 1 - }, - "2": { - "coal": 8 - } - } - }, - "multiagent_cooking_3_1_cooked_mutton_1_cooked_rabbit_1_suspicious_stew_blocked_access_2": { - "conversation": "Let's work together to make cooked_mutton, suspicious_stew, cooked_rabbit.", - "agent_count": 3, - "target": { - "cooked_mutton": 1, - "suspicious_stew": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [ - "2" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 suspicious_stew, 1 cooked_rabbit. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 suspicious_stew, 1 cooked_rabbit. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 suspicious_stew, 1 cooked_rabbit. " - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 1, - "unique_target_items": 3, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": { - "bowl": 1 - }, - "2": { - "dandelion": 1 - } - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_pumpkin_pie": { - "conversation": "Let's work together to make beetroot_soup, pumpkin_pie.", - "agent_count": 3, - "target": { - "beetroot_soup": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "egg": 1 - }, - "2": {} - } - }, - "multiagent_cooking_3_1_cooked_mutton_1_cookie": { - "conversation": "Let's work together to make cooked_mutton, cookie.", - "agent_count": 3, - "target": { - "cooked_mutton": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cookie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cookie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 cookie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 8 - }, - "1": { - "cocoa_beans": 1 - }, - "2": {} - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_cooked_mutton_1_suspicious_stew": { - "conversation": "Let's work together to make cooked_mutton, suspicious_stew, beetroot_soup.", - "agent_count": 3, - "target": { - "cooked_mutton": 1, - "suspicious_stew": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 suspicious_stew, 1 beetroot_soup. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 suspicious_stew, 1 beetroot_soup. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 suspicious_stew, 1 beetroot_soup. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 8, - "blocked_agents_count": 0, - "unique_target_items": 3, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "coal": 8 - }, - "1": { - "bowl": 2 - }, - "2": { - "dandelion": 1 - } - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_cooked_porkchop_1_golden_carrot_blocked_access_1": { - "conversation": "Let's work together to make cooked_chicken, golden_carrot, cooked_porkchop.", - "agent_count": 3, - "target": { - "cooked_chicken": 1, - "golden_carrot": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cooked_porkchop. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cooked_porkchop. ", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cooked_porkchop. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 1, - "unique_target_items": 3, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": { - "gold_ingot": 8 - }, - "2": {} - } - } -} \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_train/3_agent_cooking_train_tasks.json b/tasks/cooking_tasks/require_collab_train/3_agent_cooking_train_tasks.json deleted file mode 100644 index 84e6b88..0000000 --- a/tasks/cooking_tasks/require_collab_train/3_agent_cooking_train_tasks.json +++ /dev/null @@ -1,4293 +0,0 @@ -{ - "multiagent_cooking_3_1_golden_carrot_1_pumpkin_pie_1_suspicious_stew": { - "conversation": "Let's work together to make suspicious_stew, pumpkin_pie, golden_carrot.", - "agent_count": 3, - "target": { - "suspicious_stew": 1, - "pumpkin_pie": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie, 1 golden_carrot. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie, 1 golden_carrot. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie, 1 golden_carrot. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" - }, - "initial_inventory": { - "0": { - "bowl": 1, - "gold_ingots": 8 - }, - "1": { - "dandelion": 1 - }, - "2": { - "egg": 1 - } - } - }, - "multiagent_cooking_3_1_cooked_mutton_1_cooked_rabbit_1_cookie": { - "conversation": "Let's work together to make cooked_mutton, cooked_rabbit, cookie.", - "agent_count": 3, - "target": { - "cooked_mutton": 1, - "cooked_rabbit": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 cookie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 cookie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 cookie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" - }, - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": { - "cocoa_beans": 1 - }, - "2": {} - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_cooked_porkchop_1_suspicious_stew": { - "conversation": "Let's work together to make cooked_porkchop, suspicious_stew, beetroot_soup.", - "agent_count": 3, - "target": { - "cooked_porkchop": 1, - "suspicious_stew": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 beetroot_soup. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 beetroot_soup. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 beetroot_soup. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" - }, - "initial_inventory": { - "0": { - "coal": 8 - }, - "1": { - "bowl": 2 - }, - "2": { - "dandelion": 1 - } - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_cooked_rabbit": { - "conversation": "Let's work together to make cooked_chicken, cooked_rabbit.", - "agent_count": 3, - "target": { - "cooked_chicken": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" - }, - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": {}, - "2": {} - } - }, - "multiagent_cooking_3_1_cooked_mutton_1_suspicious_stew": { - "conversation": "Let's work together to make suspicious_stew, cooked_mutton.", - "agent_count": 3, - "target": { - "suspicious_stew": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" - }, - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "dandelion": 1 - }, - "2": { - "coal": 8 - } - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_cooked_mutton_1_pumpkin_pie": { - "conversation": "Let's work together to make pumpkin_pie, cooked_chicken, cooked_mutton.", - "agent_count": 3, - "target": { - "pumpkin_pie": 1, - "cooked_chicken": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken, 1 cooked_mutton. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken, 1 cooked_mutton. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken, 1 cooked_mutton. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" - }, - "initial_inventory": { - "0": { - "egg": 1 - }, - "1": { - "coal": 16 - }, - "2": {} - } - }, - "multiagent_cooking_3_1_cooked_porkchop_1_suspicious_stew": { - "conversation": "Let's work together to make suspicious_stew, cooked_porkchop.", - "agent_count": 3, - "target": { - "suspicious_stew": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" - }, - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "dandelion": 1 - }, - "2": { - "coal": 8 - } - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_cooked_chicken_1_suspicious_stew": { - "conversation": "Let's work together to make beetroot_soup, suspicious_stew, cooked_chicken.", - "agent_count": 3, - "target": { - "beetroot_soup": 1, - "suspicious_stew": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 suspicious_stew, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 suspicious_stew, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 suspicious_stew, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" - }, - "initial_inventory": { - "0": { - "bowl": 2 - }, - "1": { - "dandelion": 1 - }, - "2": { - "coal": 8 - } - } - }, - "multiagent_cooking_3_1_cooked_porkchop_1_cookie_1_suspicious_stew": { - "conversation": "Let's work together to make cookie, cooked_porkchop, suspicious_stew.", - "agent_count": 3, - "target": { - "cookie": 1, - "cooked_porkchop": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop, 1 suspicious_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop, 1 suspicious_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "2": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop, 1 suspicious_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" - }, - "initial_inventory": { - "0": { - "cocoa_beans": 1, - "dandelion": 1 - }, - "1": { - "coal": 8 - }, - "2": { - "bowl": 1 - } - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_pumpkin_pie_1_suspicious_stew": { - "conversation": "Let's work together to make suspicious_stew, pumpkin_pie, beetroot_soup.", - "agent_count": 3, - "target": { - "suspicious_stew": 1, - "pumpkin_pie": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie, 1 beetroot_soup. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie, 1 beetroot_soup. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie, 1 beetroot_soup. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" - }, - "initial_inventory": { - "0": { - "bowl": 2 - }, - "1": { - "dandelion": 1 - }, - "2": { - "egg": 1 - } - } - }, - "multiagent_cooking_3_1_cookie_1_mushroom_stew": { - "conversation": "Let's work together to make mushroom_stew, cookie.", - "agent_count": 3, - "target": { - "mushroom_stew": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cookie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cookie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cookie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" - }, - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "cocoa_beans": 1 - }, - "2": {} - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_cooked_mutton_1_golden_carrot": { - "conversation": "Let's work together to make beetroot_soup, cooked_mutton, golden_carrot.", - "agent_count": 3, - "target": { - "beetroot_soup": 1, - "cooked_mutton": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 golden_carrot. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 golden_carrot. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 golden_carrot. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" - }, - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "coal": 8 - }, - "2": { - "gold_ingots": 8 - } - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_cooked_mutton_1_suspicious_stew": { - "conversation": "Let's work together to make suspicious_stew, cooked_mutton, cooked_chicken.", - "agent_count": 3, - "target": { - "suspicious_stew": 1, - "cooked_mutton": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton, 1 cooked_chicken. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton, 1 cooked_chicken. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton, 1 cooked_chicken. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" - }, - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "dandelion": 1 - }, - "2": { - "coal": 16 - } - } - }, - "multiagent_cooking_3_1_cooked_porkchop_1_golden_carrot_1_pumpkin_pie": { - "conversation": "Let's work together to make pumpkin_pie, golden_carrot, cooked_porkchop.", - "agent_count": 3, - "target": { - "pumpkin_pie": 1, - "golden_carrot": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot, 1 cooked_porkchop. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot, 1 cooked_porkchop. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot, 1 cooked_porkchop. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" - }, - "initial_inventory": { - "0": { - "egg": 1 - }, - "1": { - "gold_ingots": 8 - }, - "2": { - "coal": 8 - } - } - }, - "multiagent_cooking_3_1_cooked_rabbit_1_cookie_1_pumpkin_pie": { - "conversation": "Let's work together to make cooked_rabbit, pumpkin_pie, cookie.", - "agent_count": 3, - "target": { - "cooked_rabbit": 1, - "pumpkin_pie": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie, 1 cookie. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie, 1 cookie. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie, 1 cookie. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" - }, - "initial_inventory": { - "0": { - "coal": 8 - }, - "1": { - "egg": 1 - }, - "2": { - "cocoa_beans": 1 - } - } - }, - "multiagent_cooking_3_1_golden_carrot_1_mushroom_stew": { - "conversation": "Let's work together to make golden_carrot, mushroom_stew.", - "agent_count": 3, - "target": { - "golden_carrot": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" - }, - "initial_inventory": { - "0": { - "gold_ingots": 8 - }, - "1": { - "bowl": 1 - }, - "2": {} - } - }, - "multiagent_cooking_3_1_cooked_porkchop_1_cookie": { - "conversation": "Let's work together to make cookie, cooked_porkchop.", - "agent_count": 3, - "target": { - "cookie": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "2": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" - }, - "initial_inventory": { - "0": { - "cocoa_beans": 1 - }, - "1": { - "coal": 8 - }, - "2": {} - } - }, - "multiagent_cooking_3_1_cooked_porkchop_1_mushroom_stew_1_pumpkin_pie": { - "conversation": "Let's work together to make cooked_porkchop, mushroom_stew, pumpkin_pie.", - "agent_count": 3, - "target": { - "cooked_porkchop": 1, - "mushroom_stew": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" - }, - "initial_inventory": { - "0": { - "coal": 8 - }, - "1": { - "bowl": 1 - }, - "2": { - "egg": 1 - } - } - }, - "multiagent_cooking_3_1_cooked_rabbit_1_suspicious_stew": { - "conversation": "Let's work together to make cooked_rabbit, suspicious_stew.", - "agent_count": 3, - "target": { - "cooked_rabbit": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" - }, - "initial_inventory": { - "0": { - "coal": 8 - }, - "1": { - "bowl": 1 - }, - "2": { - "dandelion": 1 - } - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_pumpkin_pie": { - "conversation": "Let's work together to make pumpkin_pie, cooked_chicken.", - "agent_count": 3, - "target": { - "pumpkin_pie": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" - }, - "initial_inventory": { - "0": { - "egg": 1 - }, - "1": { - "coal": 8 - }, - "2": {} - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_cooked_porkchop_1_mushroom_stew": { - "conversation": "Let's work together to make mushroom_stew, beetroot_soup, cooked_porkchop.", - "agent_count": 3, - "target": { - "mushroom_stew": 1, - "beetroot_soup": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 cooked_porkchop. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 cooked_porkchop. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 cooked_porkchop. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" - }, - "initial_inventory": { - "0": { - "bowl": 2 - }, - "1": { - "coal": 8 - }, - "2": {} - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_cooked_porkchop_1_pumpkin_pie": { - "conversation": "Let's work together to make cooked_porkchop, pumpkin_pie, beetroot_soup.", - "agent_count": 3, - "target": { - "cooked_porkchop": 1, - "pumpkin_pie": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie, 1 beetroot_soup. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie, 1 beetroot_soup. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie, 1 beetroot_soup. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" - }, - "initial_inventory": { - "0": { - "coal": 8 - }, - "1": { - "egg": 1 - }, - "2": { - "bowl": 1 - } - } - }, - "multiagent_cooking_3_1_cooked_mutton_1_golden_carrot_1_pumpkin_pie": { - "conversation": "Let's work together to make pumpkin_pie, golden_carrot, cooked_mutton.", - "agent_count": 3, - "target": { - "pumpkin_pie": 1, - "golden_carrot": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot, 1 cooked_mutton. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot, 1 cooked_mutton. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot, 1 cooked_mutton. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" - }, - "initial_inventory": { - "0": { - "egg": 1 - }, - "1": { - "gold_ingots": 8 - }, - "2": { - "coal": 8 - } - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_cooked_mutton_1_golden_carrot": { - "conversation": "Let's work together to make golden_carrot, cooked_mutton, cooked_chicken.", - "agent_count": 3, - "target": { - "golden_carrot": 1, - "cooked_mutton": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton, 1 cooked_chicken. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton, 1 cooked_chicken. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton, 1 cooked_chicken. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" - }, - "initial_inventory": { - "0": { - "gold_ingots": 8 - }, - "1": { - "coal": 16 - }, - "2": {} - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_cooked_porkchop": { - "conversation": "Let's work together to make cooked_porkchop, cooked_chicken.", - "agent_count": 3, - "target": { - "cooked_porkchop": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" - }, - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": {}, - "2": {} - } - }, - "multiagent_cooking_3_1_cooked_mutton_1_pumpkin_pie": { - "conversation": "Let's work together to make cooked_mutton, pumpkin_pie.", - "agent_count": 3, - "target": { - "cooked_mutton": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" - }, - "initial_inventory": { - "0": { - "coal": 8 - }, - "1": { - "egg": 1 - }, - "2": {} - } - }, - "multiagent_cooking_3_1_cooked_mutton_1_mushroom_stew": { - "conversation": "Let's work together to make mushroom_stew, cooked_mutton.", - "agent_count": 3, - "target": { - "mushroom_stew": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" - }, - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "coal": 8 - }, - "2": {} - } - }, - "multiagent_cooking_3_1_golden_carrot_1_mushroom_stew_1_suspicious_stew": { - "conversation": "Let's work together to make suspicious_stew, mushroom_stew, golden_carrot.", - "agent_count": 3, - "target": { - "suspicious_stew": 1, - "mushroom_stew": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 mushroom_stew, 1 golden_carrot. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 mushroom_stew, 1 golden_carrot. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 mushroom_stew, 1 golden_carrot. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" - }, - "initial_inventory": { - "0": { - "bowl": 2 - }, - "1": { - "dandelion": 1 - }, - "2": { - "gold_ingots": 8 - } - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_cookie": { - "conversation": "Let's work together to make cookie, beetroot_soup.", - "agent_count": 3, - "target": { - "cookie": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 beetroot_soup. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "1": "Collaborate with agents around you to make 1 cookie, 1 beetroot_soup. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "2": "Collaborate with agents around you to make 1 cookie, 1 beetroot_soup. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" - }, - "initial_inventory": { - "0": { - "cocoa_beans": 1 - }, - "1": { - "bowl": 1 - }, - "2": {} - } - }, - "multiagent_cooking_3_1_cooked_porkchop_1_cooked_rabbit_1_suspicious_stew": { - "conversation": "Let's work together to make cooked_rabbit, cooked_porkchop, suspicious_stew.", - "agent_count": 3, - "target": { - "cooked_rabbit": 1, - "cooked_porkchop": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 suspicious_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 suspicious_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 suspicious_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" - }, - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": { - "bowl": 1 - }, - "2": { - "dandelion": 1 - } - } - }, - "multiagent_cooking_3_1_cookie_1_pumpkin_pie": { - "conversation": "Let's work together to make cookie, pumpkin_pie.", - "agent_count": 3, - "target": { - "cookie": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 pumpkin_pie. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "1": "Collaborate with agents around you to make 1 cookie, 1 pumpkin_pie. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "2": "Collaborate with agents around you to make 1 cookie, 1 pumpkin_pie. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" - }, - "initial_inventory": { - "0": { - "cocoa_beans": 1 - }, - "1": { - "egg": 1 - }, - "2": {} - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_cookie_1_pumpkin_pie": { - "conversation": "Let's work together to make cookie, pumpkin_pie, cooked_chicken.", - "agent_count": 3, - "target": { - "cookie": 1, - "pumpkin_pie": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 pumpkin_pie, 1 cooked_chicken. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "1": "Collaborate with agents around you to make 1 cookie, 1 pumpkin_pie, 1 cooked_chicken. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "2": "Collaborate with agents around you to make 1 cookie, 1 pumpkin_pie, 1 cooked_chicken. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" - }, - "initial_inventory": { - "0": { - "cocoa_beans": 1 - }, - "1": { - "egg": 1 - }, - "2": { - "coal": 8 - } - } - }, - "multiagent_cooking_3_1_cooked_mutton_1_mushroom_stew_1_suspicious_stew": { - "conversation": "Let's work together to make cooked_mutton, suspicious_stew, mushroom_stew.", - "agent_count": 3, - "target": { - "cooked_mutton": 1, - "suspicious_stew": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 suspicious_stew, 1 mushroom_stew. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 suspicious_stew, 1 mushroom_stew. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 suspicious_stew, 1 mushroom_stew. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" - }, - "initial_inventory": { - "0": { - "coal": 8 - }, - "1": { - "bowl": 2 - }, - "2": { - "dandelion": 1 - } - } - }, - "multiagent_cooking_3_1_cooked_rabbit_1_golden_carrot": { - "conversation": "Let's work together to make cooked_rabbit, golden_carrot.", - "agent_count": 3, - "target": { - "cooked_rabbit": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" - }, - "initial_inventory": { - "0": { - "coal": 8 - }, - "1": { - "gold_ingots": 8 - }, - "2": {} - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_golden_carrot_1_suspicious_stew": { - "conversation": "Let's work together to make golden_carrot, suspicious_stew, beetroot_soup.", - "agent_count": 3, - "target": { - "golden_carrot": 1, - "suspicious_stew": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 beetroot_soup. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 beetroot_soup. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 beetroot_soup. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" - }, - "initial_inventory": { - "0": { - "gold_ingots": 8 - }, - "1": { - "bowl": 2 - }, - "2": { - "dandelion": 1 - } - } - }, - "multiagent_cooking_3_1_cooked_rabbit_1_mushroom_stew": { - "conversation": "Let's work together to make cooked_rabbit, mushroom_stew.", - "agent_count": 3, - "target": { - "cooked_rabbit": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" - }, - "initial_inventory": { - "0": { - "coal": 8 - }, - "1": { - "bowl": 1 - }, - "2": {} - } - }, - "multiagent_cooking_3_1_golden_carrot_1_pumpkin_pie": { - "conversation": "Let's work together to make golden_carrot, pumpkin_pie.", - "agent_count": 3, - "target": { - "golden_carrot": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" - }, - "initial_inventory": { - "0": { - "gold_ingots": 8 - }, - "1": { - "egg": 1 - }, - "2": {} - } - }, - "multiagent_cooking_3_1_cooked_mutton_1_golden_carrot_1_mushroom_stew": { - "conversation": "Let's work together to make mushroom_stew, cooked_mutton, golden_carrot.", - "agent_count": 3, - "target": { - "mushroom_stew": 1, - "cooked_mutton": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 golden_carrot. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 golden_carrot. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 golden_carrot. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" - }, - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "coal": 8 - }, - "2": { - "gold_ingots": 8 - } - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_cookie_1_golden_carrot": { - "conversation": "Let's work together to make cookie, cooked_chicken, golden_carrot.", - "agent_count": 3, - "target": { - "cookie": 1, - "cooked_chicken": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_chicken, 1 golden_carrot. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_chicken, 1 golden_carrot. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "2": "Collaborate with agents around you to make 1 cookie, 1 cooked_chicken, 1 golden_carrot. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" - }, - "initial_inventory": { - "0": { - "cocoa_beans": 1 - }, - "1": { - "coal": 8 - }, - "2": { - "gold_ingots": 8 - } - } - }, - "multiagent_cooking_3_1_cooked_mutton_1_cooked_rabbit_1_golden_carrot": { - "conversation": "Let's work together to make cooked_mutton, cooked_rabbit, golden_carrot.", - "agent_count": 3, - "target": { - "cooked_mutton": 1, - "cooked_rabbit": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 golden_carrot. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 golden_carrot. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 golden_carrot. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" - }, - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": { - "gold_ingots": 8 - }, - "2": {} - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_cooked_chicken": { - "conversation": "Let's work together to make beetroot_soup, cooked_chicken.", - "agent_count": 3, - "target": { - "beetroot_soup": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" - }, - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "coal": 8 - }, - "2": {} - } - }, - "multiagent_cooking_3_1_golden_carrot_1_suspicious_stew": { - "conversation": "Let's work together to make golden_carrot, suspicious_stew.", - "agent_count": 3, - "target": { - "golden_carrot": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" - }, - "initial_inventory": { - "0": { - "gold_ingots": 8 - }, - "1": { - "bowl": 1 - }, - "2": { - "dandelion": 1 - } - } - }, - "multiagent_cooking_3_1_cooked_rabbit_1_golden_carrot_1_pumpkin_pie": { - "conversation": "Let's work together to make cooked_rabbit, pumpkin_pie, golden_carrot.", - "agent_count": 3, - "target": { - "cooked_rabbit": 1, - "pumpkin_pie": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie, 1 golden_carrot. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie, 1 golden_carrot. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie, 1 golden_carrot. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" - }, - "initial_inventory": { - "0": { - "coal": 8 - }, - "1": { - "egg": 1 - }, - "2": { - "gold_ingots": 8 - } - } - }, - "multiagent_cooking_3_1_cooked_porkchop_1_cookie_1_pumpkin_pie": { - "conversation": "Let's work together to make cooked_porkchop, cookie, pumpkin_pie.", - "agent_count": 3, - "target": { - "cooked_porkchop": 1, - "cookie": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cookie, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cookie, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cookie, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" - }, - "initial_inventory": { - "0": { - "coal": 8 - }, - "1": { - "cocoa_beans": 1 - }, - "2": { - "egg": 1 - } - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_cooked_rabbit": { - "conversation": "Let's work together to make cooked_rabbit, beetroot_soup.", - "agent_count": 3, - "target": { - "cooked_rabbit": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" - }, - "initial_inventory": { - "0": { - "coal": 8 - }, - "1": { - "bowl": 1 - }, - "2": {} - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_cooked_porkchop_1_cookie": { - "conversation": "Let's work together to make cookie, beetroot_soup, cooked_porkchop.", - "agent_count": 3, - "target": { - "cookie": 1, - "beetroot_soup": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 beetroot_soup, 1 cooked_porkchop. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "1": "Collaborate with agents around you to make 1 cookie, 1 beetroot_soup, 1 cooked_porkchop. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "2": "Collaborate with agents around you to make 1 cookie, 1 beetroot_soup, 1 cooked_porkchop. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" - }, - "initial_inventory": { - "0": { - "cocoa_beans": 1 - }, - "1": { - "bowl": 1 - }, - "2": { - "coal": 8 - } - } - }, - "multiagent_cooking_3_1_cooked_porkchop_1_cookie_1_golden_carrot": { - "conversation": "Let's work together to make cooked_porkchop, cookie, golden_carrot.", - "agent_count": 3, - "target": { - "cooked_porkchop": 1, - "cookie": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cookie, 1 golden_carrot. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cookie, 1 golden_carrot. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cookie, 1 golden_carrot. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" - }, - "initial_inventory": { - "0": { - "coal": 8 - }, - "1": { - "cocoa_beans": 1 - }, - "2": { - "gold_ingots": 8 - } - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_cooked_chicken_1_cooked_porkchop": { - "conversation": "Let's work together to make cooked_porkchop, beetroot_soup, cooked_chicken.", - "agent_count": 3, - "target": { - "cooked_porkchop": 1, - "beetroot_soup": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 beetroot_soup, 1 cooked_chicken. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 beetroot_soup, 1 cooked_chicken. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 beetroot_soup, 1 cooked_chicken. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" - }, - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": { - "bowl": 1 - }, - "2": {} - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_golden_carrot_1_pumpkin_pie": { - "conversation": "Let's work together to make cooked_chicken, golden_carrot, pumpkin_pie.", - "agent_count": 3, - "target": { - "cooked_chicken": 1, - "golden_carrot": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 pumpkin_pie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 pumpkin_pie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 pumpkin_pie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" - }, - "initial_inventory": { - "0": { - "coal": 8 - }, - "1": { - "gold_ingots": 8 - }, - "2": { - "egg": 1 - } - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_cooked_rabbit_1_mushroom_stew": { - "conversation": "Let's work together to make cooked_chicken, cooked_rabbit, mushroom_stew.", - "agent_count": 3, - "target": { - "cooked_chicken": 1, - "cooked_rabbit": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 mushroom_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 mushroom_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 mushroom_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" - }, - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": { - "bowl": 1 - }, - "2": {} - } - }, - "multiagent_cooking_3_1_cooked_porkchop_1_cooked_rabbit": { - "conversation": "Let's work together to make cooked_porkchop, cooked_rabbit.", - "agent_count": 3, - "target": { - "cooked_porkchop": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_rabbit. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_rabbit. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_rabbit. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" - }, - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": {}, - "2": {} - } - }, - "multiagent_cooking_3_1_cookie_1_golden_carrot": { - "conversation": "Let's work together to make cookie, golden_carrot.", - "agent_count": 3, - "target": { - "cookie": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 golden_carrot. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "1": "Collaborate with agents around you to make 1 cookie, 1 golden_carrot. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "2": "Collaborate with agents around you to make 1 cookie, 1 golden_carrot. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" - }, - "initial_inventory": { - "0": { - "cocoa_beans": 1 - }, - "1": { - "gold_ingots": 8 - }, - "2": {} - } - }, - "multiagent_cooking_3_1_cooked_rabbit_1_mushroom_stew_1_suspicious_stew": { - "conversation": "Let's work together to make mushroom_stew, suspicious_stew, cooked_rabbit.", - "agent_count": 3, - "target": { - "mushroom_stew": 1, - "suspicious_stew": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 cooked_rabbit. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 cooked_rabbit. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 cooked_rabbit. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" - }, - "initial_inventory": { - "0": { - "bowl": 2 - }, - "1": { - "dandelion": 1 - }, - "2": { - "coal": 8 - } - } - }, - "multiagent_cooking_3_1_cooked_porkchop_1_golden_carrot_1_mushroom_stew": { - "conversation": "Let's work together to make cooked_porkchop, golden_carrot, mushroom_stew.", - "agent_count": 3, - "target": { - "cooked_porkchop": 1, - "golden_carrot": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot, 1 mushroom_stew. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot, 1 mushroom_stew. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot, 1 mushroom_stew. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" - }, - "initial_inventory": { - "0": { - "coal": 8 - }, - "1": { - "gold_ingots": 8 - }, - "2": { - "bowl": 1 - } - } - }, - "multiagent_cooking_3_1_golden_carrot_1_mushroom_stew_1_pumpkin_pie": { - "conversation": "Let's work together to make mushroom_stew, golden_carrot, pumpkin_pie.", - "agent_count": 3, - "target": { - "mushroom_stew": 1, - "golden_carrot": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 pumpkin_pie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 pumpkin_pie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 pumpkin_pie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" - }, - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "gold_ingots": 8 - }, - "2": { - "egg": 1 - } - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_cooked_rabbit_1_cookie": { - "conversation": "Let's work together to make beetroot_soup, cooked_rabbit, cookie.", - "agent_count": 3, - "target": { - "beetroot_soup": 1, - "cooked_rabbit": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_rabbit, 1 cookie. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_rabbit, 1 cookie. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_rabbit, 1 cookie. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" - }, - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "coal": 8 - }, - "2": { - "cocoa_beans": 1 - } - } - }, - "multiagent_cooking_3_1_cooked_porkchop_1_mushroom_stew": { - "conversation": "Let's work together to make cooked_porkchop, mushroom_stew.", - "agent_count": 3, - "target": { - "cooked_porkchop": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" - }, - "initial_inventory": { - "0": { - "coal": 8 - }, - "1": { - "bowl": 1 - }, - "2": {} - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_cookie_1_mushroom_stew": { - "conversation": "Let's work together to make mushroom_stew, cookie, cooked_chicken.", - "agent_count": 3, - "target": { - "mushroom_stew": 1, - "cookie": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cookie, 1 cooked_chicken. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cookie, 1 cooked_chicken. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cookie, 1 cooked_chicken. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" - }, - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "cocoa_beans": 1 - }, - "2": { - "coal": 8 - } - } - }, - "multiagent_cooking_3_1_cooked_porkchop_1_golden_carrot_1_suspicious_stew": { - "conversation": "Let's work together to make suspicious_stew, cooked_porkchop, golden_carrot.", - "agent_count": 3, - "target": { - "suspicious_stew": 1, - "cooked_porkchop": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop, 1 golden_carrot. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop, 1 golden_carrot. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop, 1 golden_carrot. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" - }, - "initial_inventory": { - "0": { - "bowl": 1, - "gold_ingots": 8 - }, - "1": { - "dandelion": 1 - }, - "2": { - "coal": 8 - } - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_mushroom_stew": { - "conversation": "Let's work together to make beetroot_soup, mushroom_stew.", - "agent_count": 3, - "target": { - "beetroot_soup": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 mushroom_stew. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 mushroom_stew. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 mushroom_stew. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" - }, - "initial_inventory": { - "0": { - "bowl": 2 - }, - "1": {}, - "2": {} - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_cooked_mutton_1_cookie": { - "conversation": "Let's work together to make beetroot_soup, cookie, cooked_mutton.", - "agent_count": 3, - "target": { - "beetroot_soup": 1, - "cookie": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie, 1 cooked_mutton. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie, 1 cooked_mutton. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie, 1 cooked_mutton. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" - }, - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "cocoa_beans": 1 - }, - "2": { - "coal": 8 - } - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_cooked_chicken_1_mushroom_stew": { - "conversation": "Let's work together to make mushroom_stew, beetroot_soup, cooked_chicken.", - "agent_count": 3, - "target": { - "mushroom_stew": 1, - "beetroot_soup": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 cooked_chicken. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 cooked_chicken. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 cooked_chicken. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" - }, - "initial_inventory": { - "0": { - "bowl": 2 - }, - "1": { - "coal": 8 - }, - "2": {} - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_cooked_mutton_1_cooked_porkchop": { - "conversation": "Let's work together to make cooked_chicken, cooked_porkchop, cooked_mutton.", - "agent_count": 3, - "target": { - "cooked_chicken": 1, - "cooked_porkchop": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop, 1 cooked_mutton. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop, 1 cooked_mutton. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop, 1 cooked_mutton. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" - }, - "initial_inventory": { - "0": { - "coal": 24 - }, - "1": {}, - "2": {} - } - }, - "multiagent_cooking_3_1_cooked_mutton_1_golden_carrot": { - "conversation": "Let's work together to make golden_carrot, cooked_mutton.", - "agent_count": 3, - "target": { - "golden_carrot": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" - }, - "initial_inventory": { - "0": { - "gold_ingots": 8 - }, - "1": { - "coal": 8 - }, - "2": {} - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_cookie": { - "conversation": "Let's work together to make cooked_chicken, cookie.", - "agent_count": 3, - "target": { - "cooked_chicken": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cookie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cookie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 cookie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" - }, - "initial_inventory": { - "0": { - "coal": 8 - }, - "1": { - "cocoa_beans": 1 - }, - "2": {} - } - }, - "multiagent_cooking_3_1_cookie_1_pumpkin_pie_1_suspicious_stew": { - "conversation": "Let's work together to make suspicious_stew, pumpkin_pie, cookie.", - "agent_count": 3, - "target": { - "suspicious_stew": 1, - "pumpkin_pie": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie, 1 cookie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie, 1 cookie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie, 1 cookie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" - }, - "initial_inventory": { - "0": { - "bowl": 1, - "cocoa_beans": 1 - }, - "1": { - "dandelion": 1 - }, - "2": { - "egg": 1 - } - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_cooked_mutton": { - "conversation": "Let's work together to make beetroot_soup, cooked_mutton.", - "agent_count": 3, - "target": { - "beetroot_soup": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" - }, - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "coal": 8 - }, - "2": {} - } - }, - "multiagent_cooking_3_1_cooked_mutton_1_cooked_porkchop_1_cooked_rabbit": { - "conversation": "Let's work together to make cooked_mutton, cooked_porkchop, cooked_rabbit.", - "agent_count": 3, - "target": { - "cooked_mutton": 1, - "cooked_porkchop": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 cooked_rabbit. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 cooked_rabbit. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 cooked_rabbit. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" - }, - "initial_inventory": { - "0": { - "coal": 24 - }, - "1": {}, - "2": {} - } - }, - "multiagent_cooking_3_1_cooked_rabbit_1_golden_carrot_1_mushroom_stew": { - "conversation": "Let's work together to make cooked_rabbit, golden_carrot, mushroom_stew.", - "agent_count": 3, - "target": { - "cooked_rabbit": 1, - "golden_carrot": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot, 1 mushroom_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot, 1 mushroom_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot, 1 mushroom_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" - }, - "initial_inventory": { - "0": { - "coal": 8 - }, - "1": { - "gold_ingots": 8 - }, - "2": { - "bowl": 1 - } - } - }, - "multiagent_cooking_3_1_cooked_porkchop_1_golden_carrot": { - "conversation": "Let's work together to make cooked_porkchop, golden_carrot.", - "agent_count": 3, - "target": { - "cooked_porkchop": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" - }, - "initial_inventory": { - "0": { - "coal": 8 - }, - "1": { - "gold_ingots": 8 - }, - "2": {} - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_suspicious_stew": { - "conversation": "Let's work together to make suspicious_stew, beetroot_soup.", - "agent_count": 3, - "target": { - "suspicious_stew": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" - }, - "initial_inventory": { - "0": { - "bowl": 2 - }, - "1": { - "dandelion": 1 - }, - "2": {} - } - }, - "multiagent_cooking_3_1_cooked_porkchop_1_pumpkin_pie": { - "conversation": "Let's work together to make cooked_porkchop, pumpkin_pie.", - "agent_count": 3, - "target": { - "cooked_porkchop": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" - }, - "initial_inventory": { - "0": { - "coal": 8 - }, - "1": { - "egg": 1 - }, - "2": {} - } - }, - "multiagent_cooking_3_1_cooked_porkchop_1_cooked_rabbit_1_cookie": { - "conversation": "Let's work together to make cooked_porkchop, cooked_rabbit, cookie.", - "agent_count": 3, - "target": { - "cooked_porkchop": 1, - "cooked_rabbit": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_rabbit, 1 cookie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_rabbit, 1 cookie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_rabbit, 1 cookie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" - }, - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": { - "cocoa_beans": 1 - }, - "2": {} - } - }, - "multiagent_cooking_3_1_mushroom_stew_1_suspicious_stew": { - "conversation": "Let's work together to make mushroom_stew, suspicious_stew.", - "agent_count": 3, - "target": { - "mushroom_stew": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" - }, - "initial_inventory": { - "0": { - "bowl": 2 - }, - "1": { - "dandelion": 1 - }, - "2": {} - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_golden_carrot": { - "conversation": "Let's work together to make golden_carrot, beetroot_soup.", - "agent_count": 3, - "target": { - "golden_carrot": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" - }, - "initial_inventory": { - "0": { - "gold_ingots": 8 - }, - "1": { - "bowl": 1 - }, - "2": {} - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_cooked_chicken_1_cooked_mutton": { - "conversation": "Let's work together to make cooked_mutton, cooked_chicken, beetroot_soup.", - "agent_count": 3, - "target": { - "cooked_mutton": 1, - "cooked_chicken": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_chicken, 1 beetroot_soup. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_chicken, 1 beetroot_soup. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_chicken, 1 beetroot_soup. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" - }, - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": { - "bowl": 1 - }, - "2": {} - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_mushroom_stew": { - "conversation": "Let's work together to make mushroom_stew, cooked_chicken.", - "agent_count": 3, - "target": { - "mushroom_stew": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" - }, - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "coal": 8 - }, - "2": {} - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_cooked_mutton_1_cooked_rabbit": { - "conversation": "Let's work together to make cooked_rabbit, beetroot_soup, cooked_mutton.", - "agent_count": 3, - "target": { - "cooked_rabbit": 1, - "beetroot_soup": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup, 1 cooked_mutton. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup, 1 cooked_mutton. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup, 1 cooked_mutton. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" - }, - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": { - "bowl": 1 - }, - "2": {} - } - }, - "multiagent_cooking_3_1_cooked_rabbit_1_cookie": { - "conversation": "Let's work together to make cooked_rabbit, cookie.", - "agent_count": 3, - "target": { - "cooked_rabbit": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cookie. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cookie. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cookie. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" - }, - "initial_inventory": { - "0": { - "coal": 8 - }, - "1": { - "cocoa_beans": 1 - }, - "2": {} - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_cooked_porkchop_1_cooked_rabbit": { - "conversation": "Let's work together to make cooked_rabbit, beetroot_soup, cooked_porkchop.", - "agent_count": 3, - "target": { - "cooked_rabbit": 1, - "beetroot_soup": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup, 1 cooked_porkchop. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup, 1 cooked_porkchop. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup, 1 cooked_porkchop. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" - }, - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": { - "bowl": 1 - }, - "2": {} - } - }, - "multiagent_cooking_3_1_cooked_mutton_1_cooked_rabbit_1_mushroom_stew": { - "conversation": "Let's work together to make cooked_mutton, mushroom_stew, cooked_rabbit.", - "agent_count": 3, - "target": { - "cooked_mutton": 1, - "mushroom_stew": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 cooked_rabbit. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 cooked_rabbit. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 cooked_rabbit. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" - }, - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": { - "bowl": 1 - }, - "2": {} - } - }, - "multiagent_cooking_3_1_cooked_mutton_1_cookie_1_suspicious_stew": { - "conversation": "Let's work together to make cooked_mutton, cookie, suspicious_stew.", - "agent_count": 3, - "target": { - "cooked_mutton": 1, - "cookie": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cookie, 1 suspicious_stew. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cookie, 1 suspicious_stew. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 cookie, 1 suspicious_stew. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" - }, - "initial_inventory": { - "0": { - "coal": 8, - "dandelion": 1 - }, - "1": { - "cocoa_beans": 1 - }, - "2": { - "bowl": 1 - } - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_cooked_porkchop_1_cookie": { - "conversation": "Let's work together to make cookie, cooked_porkchop, cooked_chicken.", - "agent_count": 3, - "target": { - "cookie": 1, - "cooked_porkchop": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop, 1 cooked_chicken. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop, 1 cooked_chicken. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "2": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop, 1 cooked_chicken. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" - }, - "initial_inventory": { - "0": { - "cocoa_beans": 1 - }, - "1": { - "coal": 16 - }, - "2": {} - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_golden_carrot": { - "conversation": "Let's work together to make cooked_chicken, golden_carrot.", - "agent_count": 3, - "target": { - "cooked_chicken": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" - }, - "initial_inventory": { - "0": { - "coal": 8 - }, - "1": { - "gold_ingots": 8 - }, - "2": {} - } - }, - "multiagent_cooking_3_1_cooked_rabbit_1_mushroom_stew_1_pumpkin_pie": { - "conversation": "Let's work together to make mushroom_stew, pumpkin_pie, cooked_rabbit.", - "agent_count": 3, - "target": { - "mushroom_stew": 1, - "pumpkin_pie": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 pumpkin_pie, 1 cooked_rabbit. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 pumpkin_pie, 1 cooked_rabbit. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 pumpkin_pie, 1 cooked_rabbit. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" - }, - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "egg": 1 - }, - "2": { - "coal": 8 - } - } - }, - "multiagent_cooking_3_1_cooked_porkchop_1_pumpkin_pie_1_suspicious_stew": { - "conversation": "Let's work together to make pumpkin_pie, suspicious_stew, cooked_porkchop.", - "agent_count": 3, - "target": { - "pumpkin_pie": 1, - "suspicious_stew": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew, 1 cooked_porkchop. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew, 1 cooked_porkchop. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew, 1 cooked_porkchop. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" - }, - "initial_inventory": { - "0": { - "egg": 1, - "coal": 8 - }, - "1": { - "bowl": 1 - }, - "2": { - "dandelion": 1 - } - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_pumpkin_pie": { - "conversation": "Let's work together to make pumpkin_pie, beetroot_soup.", - "agent_count": 3, - "target": { - "pumpkin_pie": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 beetroot_soup. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 beetroot_soup. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 beetroot_soup. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" - }, - "initial_inventory": { - "0": { - "egg": 1 - }, - "1": { - "bowl": 1 - }, - "2": {} - } - }, - "multiagent_cooking_3_1_cooked_mutton_1_cooked_porkchop_1_cookie": { - "conversation": "Let's work together to make cookie, cooked_porkchop, cooked_mutton.", - "agent_count": 3, - "target": { - "cookie": 1, - "cooked_porkchop": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop, 1 cooked_mutton. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop, 1 cooked_mutton. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "2": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop, 1 cooked_mutton. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" - }, - "initial_inventory": { - "0": { - "cocoa_beans": 1 - }, - "1": { - "coal": 16 - }, - "2": {} - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_pumpkin_pie_1_suspicious_stew": { - "conversation": "Let's work together to make suspicious_stew, pumpkin_pie, cooked_chicken.", - "agent_count": 3, - "target": { - "suspicious_stew": 1, - "pumpkin_pie": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie, 1 cooked_chicken. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie, 1 cooked_chicken. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie, 1 cooked_chicken. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" - }, - "initial_inventory": { - "0": { - "bowl": 1, - "coal": 8 - }, - "1": { - "dandelion": 1 - }, - "2": { - "egg": 1 - } - } - }, - "multiagent_cooking_3_1_cooked_mutton_1_cookie_1_pumpkin_pie": { - "conversation": "Let's work together to make cooked_mutton, pumpkin_pie, cookie.", - "agent_count": 3, - "target": { - "cooked_mutton": 1, - "pumpkin_pie": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie, 1 cookie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie, 1 cookie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie, 1 cookie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" - }, - "initial_inventory": { - "0": { - "coal": 8 - }, - "1": { - "egg": 1 - }, - "2": { - "cocoa_beans": 1 - } - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_cooked_mutton_1_cooked_rabbit": { - "conversation": "Let's work together to make cooked_chicken, cooked_rabbit, cooked_mutton.", - "agent_count": 3, - "target": { - "cooked_chicken": 1, - "cooked_rabbit": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 cooked_mutton. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 cooked_mutton. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 cooked_mutton. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" - }, - "initial_inventory": { - "0": { - "coal": 24 - }, - "1": {}, - "2": {} - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_cooked_rabbit_1_pumpkin_pie": { - "conversation": "Let's work together to make cooked_chicken, cooked_rabbit, pumpkin_pie.", - "agent_count": 3, - "target": { - "cooked_chicken": 1, - "cooked_rabbit": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 pumpkin_pie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 pumpkin_pie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 pumpkin_pie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" - }, - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": { - "egg": 1 - }, - "2": {} - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_cooked_rabbit_1_suspicious_stew": { - "conversation": "Let's work together to make cooked_rabbit, cooked_chicken, suspicious_stew.", - "agent_count": 3, - "target": { - "cooked_rabbit": 1, - "cooked_chicken": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken, 1 suspicious_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken, 1 suspicious_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken, 1 suspicious_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" - }, - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": { - "bowl": 1 - }, - "2": { - "dandelion": 1 - } - } - }, - "multiagent_cooking_3_1_cookie_1_golden_carrot_1_suspicious_stew": { - "conversation": "Let's work together to make golden_carrot, suspicious_stew, cookie.", - "agent_count": 3, - "target": { - "golden_carrot": 1, - "suspicious_stew": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cookie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cookie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cookie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" - }, - "initial_inventory": { - "0": { - "gold_ingots": 8, - "cocoa_beans": 1 - }, - "1": { - "bowl": 1 - }, - "2": { - "dandelion": 1 - } - } - }, - "multiagent_cooking_3_1_cooked_mutton_1_cookie_1_golden_carrot": { - "conversation": "Let's work together to make cookie, golden_carrot, cooked_mutton.", - "agent_count": 3, - "target": { - "cookie": 1, - "golden_carrot": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 golden_carrot, 1 cooked_mutton. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "1": "Collaborate with agents around you to make 1 cookie, 1 golden_carrot, 1 cooked_mutton. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "2": "Collaborate with agents around you to make 1 cookie, 1 golden_carrot, 1 cooked_mutton. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" - }, - "initial_inventory": { - "0": { - "cocoa_beans": 1 - }, - "1": { - "gold_ingots": 8 - }, - "2": { - "coal": 8 - } - } - }, - "multiagent_cooking_3_1_cooked_mutton_1_cooked_rabbit": { - "conversation": "Let's work together to make cooked_rabbit, cooked_mutton.", - "agent_count": 3, - "target": { - "cooked_rabbit": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_mutton. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_mutton. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_mutton. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" - }, - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": {}, - "2": {} - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_mushroom_stew_1_pumpkin_pie": { - "conversation": "Let's work together to make mushroom_stew, beetroot_soup, pumpkin_pie.", - "agent_count": 3, - "target": { - "mushroom_stew": 1, - "beetroot_soup": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 pumpkin_pie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 pumpkin_pie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 pumpkin_pie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" - }, - "initial_inventory": { - "0": { - "bowl": 2 - }, - "1": { - "egg": 1 - }, - "2": {} - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_cooked_mutton_1_suspicious_stew": { - "conversation": "Let's work together to make suspicious_stew, beetroot_soup, cooked_mutton.", - "agent_count": 3, - "target": { - "suspicious_stew": 1, - "beetroot_soup": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup, 1 cooked_mutton. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup, 1 cooked_mutton. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup, 1 cooked_mutton. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" - }, - "initial_inventory": { - "0": { - "bowl": 2 - }, - "1": { - "dandelion": 1 - }, - "2": { - "coal": 8 - } - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_cooked_porkchop": { - "conversation": "Let's work together to make beetroot_soup, cooked_porkchop.", - "agent_count": 3, - "target": { - "beetroot_soup": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" - }, - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "coal": 8 - }, - "2": {} - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_suspicious_stew": { - "conversation": "Let's work together to make cooked_chicken, suspicious_stew.", - "agent_count": 3, - "target": { - "cooked_chicken": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" - }, - "initial_inventory": { - "0": { - "coal": 8 - }, - "1": { - "bowl": 1 - }, - "2": { - "dandelion": 1 - } - } - } -} \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_train/4_agent.json b/tasks/cooking_tasks/require_collab_train/4_agent.json deleted file mode 100644 index 70b49ca..0000000 --- a/tasks/cooking_tasks/require_collab_train/4_agent.json +++ /dev/null @@ -1,4410 +0,0 @@ -{ - "multiagent_cooking_4_1_beetroot_soup_1_golden_carrot_1_pumpkin_pie_blocked_access_1_3": { - "conversation": "Let's work together to make golden_carrot, pumpkin_pie, beetroot_soup.", - "agent_count": 4, - "target": { - "golden_carrot": 1, - "pumpkin_pie": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [ - "3", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie, 1 beetroot_soup. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie, 1 beetroot_soup. ", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie, 1 beetroot_soup. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "3": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie, 1 beetroot_soup. " - }, - "difficulty_metrics": { - "total_recipe_steps": 10, - "blocked_agents_count": 2, - "unique_target_items": 3, - "overall_difficulty_score": 8, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "gold_ingot": 8 - }, - "1": { - "egg": 1 - }, - "2": { - "bowl": 1 - }, - "3": {} - } - }, - "multiagent_cooking_4_1_cooked_chicken_1_cooked_porkchop_1_golden_carrot_1_pumpkin_pie": { - "conversation": "Let's work together to make cooked_porkchop, golden_carrot, cooked_chicken, pumpkin_pie.", - "agent_count": 4, - "target": { - "cooked_porkchop": 1, - "golden_carrot": 1, - "cooked_chicken": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot, 1 cooked_chicken, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot, 1 cooked_chicken, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot, 1 cooked_chicken, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "3": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot, 1 cooked_chicken, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 11, - "blocked_agents_count": 0, - "unique_target_items": 4, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": { - "gold_ingot": 8 - }, - "2": { - "egg": 1 - }, - "3": {} - } - }, - "multiagent_cooking_4_1_cooked_chicken_1_cookie_1_mushroom_stew_1_pumpkin_pie_blocked_access_1_3": { - "conversation": "Let's work together to make pumpkin_pie, cookie, mushroom_stew, cooked_chicken.", - "agent_count": 4, - "target": { - "pumpkin_pie": 1, - "cookie": 1, - "mushroom_stew": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [ - "3", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 mushroom_stew, 1 cooked_chicken. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 mushroom_stew, 1 cooked_chicken. ", - "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 mushroom_stew, 1 cooked_chicken. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 mushroom_stew, 1 cooked_chicken. " - }, - "difficulty_metrics": { - "total_recipe_steps": 12, - "blocked_agents_count": 2, - "unique_target_items": 4, - "overall_difficulty_score": 9, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "egg": 1 - }, - "1": { - "cocoa_beans": 1 - }, - "2": { - "bowl": 1 - }, - "3": { - "coal": 8 - } - } - }, - "multiagent_cooking_4_1_beetroot_soup_1_cooked_chicken_1_golden_carrot_1_suspicious_stew": { - "conversation": "Let's work together to make golden_carrot, beetroot_soup, cooked_chicken, suspicious_stew.", - "agent_count": 4, - "target": { - "golden_carrot": 1, - "beetroot_soup": 1, - "cooked_chicken": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup, 1 cooked_chicken, 1 suspicious_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup, 1 cooked_chicken, 1 suspicious_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup, 1 cooked_chicken, 1 suspicious_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "3": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup, 1 cooked_chicken, 1 suspicious_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 11, - "blocked_agents_count": 0, - "unique_target_items": 4, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "gold_ingot": 8 - }, - "1": { - "bowl": 2 - }, - "2": { - "coal": 8 - }, - "3": { - "dandelion": 1 - } - } - }, - "multiagent_cooking_4_1_cooked_chicken_1_cooked_porkchop_1_golden_carrot_1_pumpkin_pie_blocked_access_0_2": { - "conversation": "Let's work together to make pumpkin_pie, cooked_chicken, cooked_porkchop, golden_carrot.", - "agent_count": 4, - "target": { - "pumpkin_pie": 1, - "cooked_chicken": 1, - "cooked_porkchop": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [ - "2", - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken, 1 cooked_porkchop, 1 golden_carrot. ", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken, 1 cooked_porkchop, 1 golden_carrot. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken, 1 cooked_porkchop, 1 golden_carrot. ", - "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken, 1 cooked_porkchop, 1 golden_carrot. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 11, - "blocked_agents_count": 2, - "unique_target_items": 4, - "overall_difficulty_score": 9, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "egg": 1 - }, - "1": { - "coal": 16 - }, - "2": { - "gold_ingot": 8 - }, - "3": {} - } - }, - "multiagent_cooking_4_1_beetroot_soup_1_cookie_1_pumpkin_pie_blocked_access_2_3": { - "conversation": "Let's work together to make pumpkin_pie, cookie, beetroot_soup.", - "agent_count": 4, - "target": { - "pumpkin_pie": 1, - "cookie": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [ - "2", - "3" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 beetroot_soup. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 beetroot_soup. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 beetroot_soup. ", - "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 beetroot_soup. " - }, - "difficulty_metrics": { - "total_recipe_steps": 10, - "blocked_agents_count": 2, - "unique_target_items": 3, - "overall_difficulty_score": 8, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "egg": 1 - }, - "1": { - "cocoa_beans": 1 - }, - "2": { - "bowl": 1 - }, - "3": {} - } - }, - "multiagent_cooking_4_1_cookie_1_mushroom_stew_1_pumpkin_pie_1_suspicious_stew": { - "conversation": "Let's work together to make mushroom_stew, cookie, pumpkin_pie, suspicious_stew.", - "agent_count": 4, - "target": { - "mushroom_stew": 1, - "cookie": 1, - "pumpkin_pie": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cookie, 1 pumpkin_pie, 1 suspicious_stew. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cookie, 1 pumpkin_pie, 1 suspicious_stew. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cookie, 1 pumpkin_pie, 1 suspicious_stew. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 cookie, 1 pumpkin_pie, 1 suspicious_stew. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 13, - "blocked_agents_count": 0, - "unique_target_items": 4, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "bowl": 2 - }, - "1": { - "cocoa_beans": 1 - }, - "2": { - "egg": 1 - }, - "3": { - "dandelion": 1 - } - } - }, - "multiagent_cooking_4_1_cooked_porkchop_1_golden_carrot_1_suspicious_stew_blocked_access_0_1_2_3": { - "conversation": "Let's work together to make golden_carrot, suspicious_stew, cooked_porkchop.", - "agent_count": 4, - "target": { - "golden_carrot": 1, - "suspicious_stew": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2", - "3" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_porkchop. ", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_porkchop. ", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_porkchop. ", - "3": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_porkchop. " - }, - "difficulty_metrics": { - "total_recipe_steps": 8, - "blocked_agents_count": 4, - "unique_target_items": 3, - "overall_difficulty_score": 9, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "gold_ingot": 8 - }, - "1": { - "bowl": 1 - }, - "2": { - "dandelion": 1 - }, - "3": { - "coal": 8 - } - } - }, - "multiagent_cooking_4_1_cooked_mutton_1_mushroom_stew_1_pumpkin_pie_1_suspicious_stew": { - "conversation": "Let's work together to make pumpkin_pie, suspicious_stew, cooked_mutton, mushroom_stew.", - "agent_count": 4, - "target": { - "pumpkin_pie": 1, - "suspicious_stew": 1, - "cooked_mutton": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew, 1 cooked_mutton, 1 mushroom_stew. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew, 1 cooked_mutton, 1 mushroom_stew. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew, 1 cooked_mutton, 1 mushroom_stew. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew, 1 cooked_mutton, 1 mushroom_stew. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 12, - "blocked_agents_count": 0, - "unique_target_items": 4, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "egg": 1 - }, - "1": { - "bowl": 2 - }, - "2": { - "dandelion": 1 - }, - "3": { - "coal": 8 - } - } - }, - "multiagent_cooking_4_1_beetroot_soup_1_cooked_chicken_1_mushroom_stew_1_pumpkin_pie_blocked_access_2_3": { - "conversation": "Let's work together to make mushroom_stew, cooked_chicken, beetroot_soup, pumpkin_pie.", - "agent_count": 4, - "target": { - "mushroom_stew": 1, - "cooked_chicken": 1, - "beetroot_soup": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [ - "3", - "2" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken, 1 beetroot_soup, 1 pumpkin_pie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken, 1 beetroot_soup, 1 pumpkin_pie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken, 1 beetroot_soup, 1 pumpkin_pie. ", - "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken, 1 beetroot_soup, 1 pumpkin_pie. " - }, - "difficulty_metrics": { - "total_recipe_steps": 12, - "blocked_agents_count": 2, - "unique_target_items": 4, - "overall_difficulty_score": 9, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "bowl": 2 - }, - "1": { - "coal": 8 - }, - "2": { - "egg": 1 - }, - "3": {} - } - }, - "multiagent_cooking_4_1_cooked_chicken_1_cooked_porkchop_1_golden_carrot_1_suspicious_stew": { - "conversation": "Let's work together to make cooked_chicken, cooked_porkchop, golden_carrot, suspicious_stew.", - "agent_count": 4, - "target": { - "cooked_chicken": 1, - "cooked_porkchop": 1, - "golden_carrot": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop, 1 golden_carrot, 1 suspicious_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop, 1 golden_carrot, 1 suspicious_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop, 1 golden_carrot, 1 suspicious_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop, 1 golden_carrot, 1 suspicious_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 10, - "blocked_agents_count": 0, - "unique_target_items": 4, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": { - "gold_ingot": 8 - }, - "2": { - "bowl": 1 - }, - "3": { - "dandelion": 1 - } - } - }, - "multiagent_cooking_4_1_cooked_porkchop_1_cookie_1_suspicious_stew": { - "conversation": "Let's work together to make cookie, cooked_porkchop, suspicious_stew.", - "agent_count": 4, - "target": { - "cookie": 1, - "cooked_porkchop": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop, 1 suspicious_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop, 1 suspicious_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "2": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop, 1 suspicious_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "3": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop, 1 suspicious_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 8, - "blocked_agents_count": 0, - "unique_target_items": 3, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "cocoa_beans": 1 - }, - "1": { - "coal": 8 - }, - "2": { - "bowl": 1 - }, - "3": { - "dandelion": 1 - } - } - }, - "multiagent_cooking_4_1_cooked_mutton_1_cookie_1_suspicious_stew": { - "conversation": "Let's work together to make suspicious_stew, cooked_mutton, cookie.", - "agent_count": 4, - "target": { - "suspicious_stew": 1, - "cooked_mutton": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton, 1 cookie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton, 1 cookie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton, 1 cookie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton, 1 cookie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 8, - "blocked_agents_count": 0, - "unique_target_items": 3, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "dandelion": 1 - }, - "2": { - "coal": 8 - }, - "3": { - "cocoa_beans": 1 - } - } - }, - "multiagent_cooking_4_1_cooked_mutton_1_cooked_porkchop_1_suspicious_stew_blocked_access_1_3": { - "conversation": "Let's work together to make suspicious_stew, cooked_porkchop, cooked_mutton.", - "agent_count": 4, - "target": { - "suspicious_stew": 1, - "cooked_porkchop": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [ - "3", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop, 1 cooked_mutton. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop, 1 cooked_mutton. ", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop, 1 cooked_mutton. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop, 1 cooked_mutton. " - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 2, - "unique_target_items": 3, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "dandelion": 1 - }, - "2": { - "coal": 16 - }, - "3": {} - } - }, - "multiagent_cooking_4_1_cooked_chicken_1_cooked_mutton_1_cooked_rabbit_1_cookie": { - "conversation": "Let's work together to make cooked_chicken, cooked_mutton, cookie, cooked_rabbit.", - "agent_count": 4, - "target": { - "cooked_chicken": 1, - "cooked_mutton": 1, - "cookie": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_mutton, 1 cookie, 1 cooked_rabbit. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_mutton, 1 cookie, 1 cooked_rabbit. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_mutton, 1 cookie, 1 cooked_rabbit. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_mutton, 1 cookie, 1 cooked_rabbit. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 9, - "blocked_agents_count": 0, - "unique_target_items": 4, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "coal": 24 - }, - "1": { - "cocoa_beans": 1 - }, - "2": {}, - "3": {} - } - }, - "multiagent_cooking_4_1_beetroot_soup_1_cooked_porkchop_1_pumpkin_pie_1_suspicious_stew_blocked_access_0_1": { - "conversation": "Let's work together to make suspicious_stew, cooked_porkchop, pumpkin_pie, beetroot_soup.", - "agent_count": 4, - "target": { - "suspicious_stew": 1, - "cooked_porkchop": 1, - "pumpkin_pie": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [ - "1", - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop, 1 pumpkin_pie, 1 beetroot_soup. ", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop, 1 pumpkin_pie, 1 beetroot_soup. ", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop, 1 pumpkin_pie, 1 beetroot_soup. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop, 1 pumpkin_pie, 1 beetroot_soup. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 12, - "blocked_agents_count": 2, - "unique_target_items": 4, - "overall_difficulty_score": 9, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "bowl": 2 - }, - "1": { - "dandelion": 1 - }, - "2": { - "coal": 8 - }, - "3": { - "egg": 1 - } - } - }, - "multiagent_cooking_4_1_beetroot_soup_1_cookie_1_golden_carrot_1_pumpkin_pie": { - "conversation": "Let's work together to make golden_carrot, beetroot_soup, pumpkin_pie, cookie.", - "agent_count": 4, - "target": { - "golden_carrot": 1, - "beetroot_soup": 1, - "pumpkin_pie": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup, 1 pumpkin_pie, 1 cookie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup, 1 pumpkin_pie, 1 cookie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup, 1 pumpkin_pie, 1 cookie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "3": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup, 1 pumpkin_pie, 1 cookie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 13, - "blocked_agents_count": 0, - "unique_target_items": 4, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "gold_ingot": 8 - }, - "1": { - "bowl": 1 - }, - "2": { - "egg": 1 - }, - "3": { - "cocoa_beans": 1 - } - } - }, - "multiagent_cooking_4_1_cooked_mutton_1_cookie_1_pumpkin_pie_1_suspicious_stew": { - "conversation": "Let's work together to make cooked_mutton, suspicious_stew, cookie, pumpkin_pie.", - "agent_count": 4, - "target": { - "cooked_mutton": 1, - "suspicious_stew": 1, - "cookie": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 suspicious_stew, 1 cookie, 1 pumpkin_pie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 suspicious_stew, 1 cookie, 1 pumpkin_pie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 suspicious_stew, 1 cookie, 1 pumpkin_pie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "3": "Collaborate with agents around you to make 1 cooked_mutton, 1 suspicious_stew, 1 cookie, 1 pumpkin_pie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 12, - "blocked_agents_count": 0, - "unique_target_items": 4, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "coal": 8, - "egg": 1 - }, - "1": { - "bowl": 1 - }, - "2": { - "dandelion": 1 - }, - "3": { - "cocoa_beans": 1 - } - } - }, - "multiagent_cooking_4_1_cooked_rabbit_1_golden_carrot_1_mushroom_stew": { - "conversation": "Let's work together to make golden_carrot, mushroom_stew, cooked_rabbit.", - "agent_count": 4, - "target": { - "golden_carrot": 1, - "mushroom_stew": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew, 1 cooked_rabbit. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew, 1 cooked_rabbit. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew, 1 cooked_rabbit. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "3": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew, 1 cooked_rabbit. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 8, - "blocked_agents_count": 0, - "unique_target_items": 3, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "gold_ingot": 8 - }, - "1": { - "bowl": 1 - }, - "2": { - "coal": 8 - }, - "3": {} - } - }, - "multiagent_cooking_4_1_cooked_chicken_1_mushroom_stew_1_suspicious_stew_blocked_access_0_3": { - "conversation": "Let's work together to make cooked_chicken, mushroom_stew, suspicious_stew.", - "agent_count": 4, - "target": { - "cooked_chicken": 1, - "mushroom_stew": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [ - "3", - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 mushroom_stew, 1 suspicious_stew. ", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 mushroom_stew, 1 suspicious_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 mushroom_stew, 1 suspicious_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 mushroom_stew, 1 suspicious_stew. " - }, - "difficulty_metrics": { - "total_recipe_steps": 8, - "blocked_agents_count": 2, - "unique_target_items": 3, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "coal": 8 - }, - "1": { - "bowl": 2 - }, - "2": { - "dandelion": 1 - }, - "3": {} - } - }, - "multiagent_cooking_4_1_cooked_chicken_1_cookie_1_pumpkin_pie": { - "conversation": "Let's work together to make pumpkin_pie, cooked_chicken, cookie.", - "agent_count": 4, - "target": { - "pumpkin_pie": 1, - "cooked_chicken": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken, 1 cookie. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken, 1 cookie. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken, 1 cookie. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken, 1 cookie. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 9, - "blocked_agents_count": 0, - "unique_target_items": 3, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "egg": 1 - }, - "1": { - "coal": 8 - }, - "2": { - "cocoa_beans": 1 - }, - "3": {} - } - }, - "multiagent_cooking_4_1_cooked_chicken_1_cooked_mutton_1_cookie_1_golden_carrot": { - "conversation": "Let's work together to make cooked_mutton, golden_carrot, cooked_chicken, cookie.", - "agent_count": 4, - "target": { - "cooked_mutton": 1, - "golden_carrot": 1, - "cooked_chicken": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 golden_carrot, 1 cooked_chicken, 1 cookie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 golden_carrot, 1 cooked_chicken, 1 cookie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 golden_carrot, 1 cooked_chicken, 1 cookie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "3": "Collaborate with agents around you to make 1 cooked_mutton, 1 golden_carrot, 1 cooked_chicken, 1 cookie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 10, - "blocked_agents_count": 0, - "unique_target_items": 4, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": { - "gold_ingot": 8 - }, - "2": { - "cocoa_beans": 1 - }, - "3": {} - } - }, - "multiagent_cooking_4_1_cooked_mutton_1_cooked_porkchop_1_suspicious_stew_blocked_access_0_3": { - "conversation": "Let's work together to make cooked_porkchop, suspicious_stew, cooked_mutton.", - "agent_count": 4, - "target": { - "cooked_porkchop": 1, - "suspicious_stew": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [ - "0", - "3" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 cooked_mutton. ", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 cooked_mutton. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 cooked_mutton. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "3": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 cooked_mutton. " - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 2, - "unique_target_items": 3, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": { - "bowl": 1 - }, - "2": { - "dandelion": 1 - }, - "3": {} - } - }, - "multiagent_cooking_4_1_beetroot_soup_1_cooked_rabbit_1_golden_carrot_1_mushroom_stew_blocked_access_0_3": { - "conversation": "Let's work together to make mushroom_stew, cooked_rabbit, beetroot_soup, golden_carrot.", - "agent_count": 4, - "target": { - "mushroom_stew": 1, - "cooked_rabbit": 1, - "beetroot_soup": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [ - "3", - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_rabbit, 1 beetroot_soup, 1 golden_carrot. ", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_rabbit, 1 beetroot_soup, 1 golden_carrot. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_rabbit, 1 beetroot_soup, 1 golden_carrot. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_rabbit, 1 beetroot_soup, 1 golden_carrot. " - }, - "difficulty_metrics": { - "total_recipe_steps": 11, - "blocked_agents_count": 2, - "unique_target_items": 4, - "overall_difficulty_score": 9, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "bowl": 2 - }, - "1": { - "coal": 8 - }, - "2": { - "gold_ingot": 8 - }, - "3": {} - } - }, - "multiagent_cooking_4_1_cooked_porkchop_1_cooked_rabbit_1_cookie_1_pumpkin_pie": { - "conversation": "Let's work together to make cookie, cooked_rabbit, cooked_porkchop, pumpkin_pie.", - "agent_count": 4, - "target": { - "cookie": 1, - "cooked_rabbit": 1, - "cooked_porkchop": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit, 1 cooked_porkchop, 1 pumpkin_pie. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit, 1 cooked_porkchop, 1 pumpkin_pie. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "2": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit, 1 cooked_porkchop, 1 pumpkin_pie. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "3": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit, 1 cooked_porkchop, 1 pumpkin_pie. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 11, - "blocked_agents_count": 0, - "unique_target_items": 4, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "cocoa_beans": 1 - }, - "1": { - "coal": 16 - }, - "2": { - "egg": 1 - }, - "3": {} - } - }, - "multiagent_cooking_4_1_cooked_chicken_1_cooked_porkchop_1_cooked_rabbit_1_suspicious_stew": { - "conversation": "Let's work together to make cooked_rabbit, cooked_porkchop, cooked_chicken, suspicious_stew.", - "agent_count": 4, - "target": { - "cooked_rabbit": 1, - "cooked_porkchop": 1, - "cooked_chicken": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 cooked_chicken, 1 suspicious_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 cooked_chicken, 1 suspicious_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 cooked_chicken, 1 suspicious_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "3": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 cooked_chicken, 1 suspicious_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 9, - "blocked_agents_count": 0, - "unique_target_items": 4, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "coal": 24 - }, - "1": { - "bowl": 1 - }, - "2": { - "dandelion": 1 - }, - "3": {} - } - }, - "multiagent_cooking_4_1_cooked_porkchop_1_golden_carrot_1_mushroom_stew_1_suspicious_stew": { - "conversation": "Let's work together to make cooked_porkchop, suspicious_stew, mushroom_stew, golden_carrot.", - "agent_count": 4, - "target": { - "cooked_porkchop": 1, - "suspicious_stew": 1, - "mushroom_stew": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 mushroom_stew, 1 golden_carrot. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 mushroom_stew, 1 golden_carrot. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 mushroom_stew, 1 golden_carrot. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "3": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 mushroom_stew, 1 golden_carrot. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 11, - "blocked_agents_count": 0, - "unique_target_items": 4, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "coal": 8 - }, - "1": { - "bowl": 2 - }, - "2": { - "dandelion": 1 - }, - "3": { - "gold_ingot": 8 - } - } - }, - "multiagent_cooking_4_1_cookie_1_mushroom_stew_1_suspicious_stew_blocked_access_0_1_2_3": { - "conversation": "Let's work together to make cookie, mushroom_stew, suspicious_stew.", - "agent_count": 4, - "target": { - "cookie": 1, - "mushroom_stew": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2", - "3" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew, 1 suspicious_stew. ", - "1": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew, 1 suspicious_stew. ", - "2": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew, 1 suspicious_stew. ", - "3": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew, 1 suspicious_stew. " - }, - "difficulty_metrics": { - "total_recipe_steps": 9, - "blocked_agents_count": 4, - "unique_target_items": 3, - "overall_difficulty_score": 10, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "cocoa_beans": 1 - }, - "1": { - "bowl": 2 - }, - "2": { - "dandelion": 1 - }, - "3": {} - } - }, - "multiagent_cooking_4_1_cooked_mutton_1_golden_carrot_1_mushroom_stew_1_pumpkin_pie_blocked_access_0_1_2_3": { - "conversation": "Let's work together to make mushroom_stew, golden_carrot, cooked_mutton, pumpkin_pie.", - "agent_count": 4, - "target": { - "mushroom_stew": 1, - "golden_carrot": 1, - "cooked_mutton": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2", - "3" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 cooked_mutton, 1 pumpkin_pie. ", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 cooked_mutton, 1 pumpkin_pie. ", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 cooked_mutton, 1 pumpkin_pie. ", - "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 cooked_mutton, 1 pumpkin_pie. " - }, - "difficulty_metrics": { - "total_recipe_steps": 12, - "blocked_agents_count": 4, - "unique_target_items": 4, - "overall_difficulty_score": 11, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "gold_ingot": 8 - }, - "2": { - "coal": 8 - }, - "3": { - "egg": 1 - } - } - }, - "multiagent_cooking_4_1_cooked_mutton_1_cooked_rabbit_1_mushroom_stew_1_suspicious_stew": { - "conversation": "Let's work together to make mushroom_stew, suspicious_stew, cooked_mutton, cooked_rabbit.", - "agent_count": 4, - "target": { - "mushroom_stew": 1, - "suspicious_stew": 1, - "cooked_mutton": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 cooked_mutton, 1 cooked_rabbit. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 cooked_mutton, 1 cooked_rabbit. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 cooked_mutton, 1 cooked_rabbit. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 cooked_mutton, 1 cooked_rabbit. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 10, - "blocked_agents_count": 0, - "unique_target_items": 4, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "bowl": 2 - }, - "1": { - "dandelion": 1 - }, - "2": { - "coal": 16 - }, - "3": {} - } - }, - "multiagent_cooking_4_1_beetroot_soup_1_cooked_chicken_1_cooked_porkchop_1_cookie": { - "conversation": "Let's work together to make beetroot_soup, cookie, cooked_porkchop, cooked_chicken.", - "agent_count": 4, - "target": { - "beetroot_soup": 1, - "cookie": 1, - "cooked_porkchop": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie, 1 cooked_porkchop, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie, 1 cooked_porkchop, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie, 1 cooked_porkchop, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "3": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie, 1 cooked_porkchop, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 10, - "blocked_agents_count": 0, - "unique_target_items": 4, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "cocoa_beans": 1 - }, - "2": { - "coal": 16 - }, - "3": {} - } - }, - "multiagent_cooking_4_1_cooked_mutton_1_cooked_porkchop_1_golden_carrot_1_pumpkin_pie_blocked_access_0_3": { - "conversation": "Let's work together to make golden_carrot, pumpkin_pie, cooked_porkchop, cooked_mutton.", - "agent_count": 4, - "target": { - "golden_carrot": 1, - "pumpkin_pie": 1, - "cooked_porkchop": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [ - "3", - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie, 1 cooked_porkchop, 1 cooked_mutton. ", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie, 1 cooked_porkchop, 1 cooked_mutton. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie, 1 cooked_porkchop, 1 cooked_mutton. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "3": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie, 1 cooked_porkchop, 1 cooked_mutton. " - }, - "difficulty_metrics": { - "total_recipe_steps": 11, - "blocked_agents_count": 2, - "unique_target_items": 4, - "overall_difficulty_score": 9, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "gold_ingot": 8 - }, - "1": { - "egg": 1 - }, - "2": { - "coal": 16 - }, - "3": {} - } - }, - "multiagent_cooking_4_1_cooked_rabbit_1_cookie_1_golden_carrot_1_mushroom_stew": { - "conversation": "Let's work together to make cooked_rabbit, cookie, golden_carrot, mushroom_stew.", - "agent_count": 4, - "target": { - "cooked_rabbit": 1, - "cookie": 1, - "golden_carrot": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cookie, 1 golden_carrot, 1 mushroom_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cookie, 1 golden_carrot, 1 mushroom_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cookie, 1 golden_carrot, 1 mushroom_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "3": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cookie, 1 golden_carrot, 1 mushroom_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 11, - "blocked_agents_count": 0, - "unique_target_items": 4, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "coal": 8 - }, - "1": { - "cocoa_beans": 1 - }, - "2": { - "gold_ingot": 8 - }, - "3": { - "bowl": 1 - } - } - }, - "multiagent_cooking_4_1_cooked_mutton_1_cookie_1_golden_carrot_1_pumpkin_pie_blocked_access_1_3": { - "conversation": "Let's work together to make pumpkin_pie, cookie, golden_carrot, cooked_mutton.", - "agent_count": 4, - "target": { - "pumpkin_pie": 1, - "cookie": 1, - "golden_carrot": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [ - "3", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 golden_carrot, 1 cooked_mutton. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 golden_carrot, 1 cooked_mutton. ", - "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 golden_carrot, 1 cooked_mutton. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 golden_carrot, 1 cooked_mutton. " - }, - "difficulty_metrics": { - "total_recipe_steps": 12, - "blocked_agents_count": 2, - "unique_target_items": 4, - "overall_difficulty_score": 9, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "egg": 1 - }, - "1": { - "cocoa_beans": 1 - }, - "2": { - "gold_ingot": 8 - }, - "3": { - "coal": 8 - } - } - }, - "multiagent_cooking_4_1_beetroot_soup_1_cooked_mutton_1_cooked_rabbit_blocked_access_1_3": { - "conversation": "Let's work together to make cooked_mutton, beetroot_soup, cooked_rabbit.", - "agent_count": 4, - "target": { - "cooked_mutton": 1, - "beetroot_soup": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [ - "3", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup, 1 cooked_rabbit. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup, 1 cooked_rabbit. ", - "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup, 1 cooked_rabbit. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "3": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup, 1 cooked_rabbit. " - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 2, - "unique_target_items": 3, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": { - "bowl": 1 - }, - "2": {}, - "3": {} - } - }, - "multiagent_cooking_4_1_cooked_chicken_1_cooked_porkchop_1_pumpkin_pie_1_suspicious_stew_blocked_access_1_3": { - "conversation": "Let's work together to make suspicious_stew, cooked_chicken, cooked_porkchop, pumpkin_pie.", - "agent_count": 4, - "target": { - "suspicious_stew": 1, - "cooked_chicken": 1, - "cooked_porkchop": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [ - "1", - "3" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_porkchop, 1 pumpkin_pie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_porkchop, 1 pumpkin_pie. ", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_porkchop, 1 pumpkin_pie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_porkchop, 1 pumpkin_pie. " - }, - "difficulty_metrics": { - "total_recipe_steps": 11, - "blocked_agents_count": 2, - "unique_target_items": 4, - "overall_difficulty_score": 9, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "dandelion": 1 - }, - "2": { - "coal": 16 - }, - "3": { - "egg": 1 - } - } - }, - "multiagent_cooking_4_1_cooked_chicken_1_cooked_porkchop_1_mushroom_stew_1_suspicious_stew_blocked_access_0_1_2_3": { - "conversation": "Let's work together to make cooked_porkchop, cooked_chicken, suspicious_stew, mushroom_stew.", - "agent_count": 4, - "target": { - "cooked_porkchop": 1, - "cooked_chicken": 1, - "suspicious_stew": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2", - "3" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 suspicious_stew, 1 mushroom_stew. ", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 suspicious_stew, 1 mushroom_stew. ", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 suspicious_stew, 1 mushroom_stew. ", - "3": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 suspicious_stew, 1 mushroom_stew. " - }, - "difficulty_metrics": { - "total_recipe_steps": 10, - "blocked_agents_count": 4, - "unique_target_items": 4, - "overall_difficulty_score": 11, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": { - "bowl": 2 - }, - "2": { - "dandelion": 1 - }, - "3": {} - } - }, - "multiagent_cooking_4_1_cooked_porkchop_1_golden_carrot_1_suspicious_stew_blocked_access_2_3": { - "conversation": "Let's work together to make golden_carrot, suspicious_stew, cooked_porkchop.", - "agent_count": 4, - "target": { - "golden_carrot": 1, - "suspicious_stew": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [ - "3", - "2" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_porkchop. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_porkchop. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_porkchop. ", - "3": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_porkchop. " - }, - "difficulty_metrics": { - "total_recipe_steps": 8, - "blocked_agents_count": 2, - "unique_target_items": 3, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "gold_ingot": 8 - }, - "1": { - "bowl": 1 - }, - "2": { - "dandelion": 1 - }, - "3": { - "coal": 8 - } - } - }, - "multiagent_cooking_4_1_cooked_mutton_1_cooked_rabbit_1_cookie": { - "conversation": "Let's work together to make cookie, cooked_rabbit, cooked_mutton.", - "agent_count": 4, - "target": { - "cookie": 1, - "cooked_rabbit": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit, 1 cooked_mutton. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit, 1 cooked_mutton. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "2": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit, 1 cooked_mutton. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "3": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit, 1 cooked_mutton. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 0, - "unique_target_items": 3, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "cocoa_beans": 1 - }, - "1": { - "coal": 16 - }, - "2": {}, - "3": {} - } - }, - "multiagent_cooking_4_1_cookie_1_pumpkin_pie_1_suspicious_stew": { - "conversation": "Let's work together to make cookie, pumpkin_pie, suspicious_stew.", - "agent_count": 4, - "target": { - "cookie": 1, - "pumpkin_pie": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 pumpkin_pie, 1 suspicious_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "1": "Collaborate with agents around you to make 1 cookie, 1 pumpkin_pie, 1 suspicious_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "2": "Collaborate with agents around you to make 1 cookie, 1 pumpkin_pie, 1 suspicious_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "3": "Collaborate with agents around you to make 1 cookie, 1 pumpkin_pie, 1 suspicious_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 10, - "blocked_agents_count": 0, - "unique_target_items": 3, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "cocoa_beans": 1 - }, - "1": { - "egg": 1 - }, - "2": { - "bowl": 1 - }, - "3": { - "dandelion": 1 - } - } - }, - "multiagent_cooking_4_1_cookie_1_golden_carrot_1_pumpkin_pie_blocked_access_0_1_2_3": { - "conversation": "Let's work together to make cookie, golden_carrot, pumpkin_pie.", - "agent_count": 4, - "target": { - "cookie": 1, - "golden_carrot": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2", - "3" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 golden_carrot, 1 pumpkin_pie. ", - "1": "Collaborate with agents around you to make 1 cookie, 1 golden_carrot, 1 pumpkin_pie. ", - "2": "Collaborate with agents around you to make 1 cookie, 1 golden_carrot, 1 pumpkin_pie. ", - "3": "Collaborate with agents around you to make 1 cookie, 1 golden_carrot, 1 pumpkin_pie. " - }, - "difficulty_metrics": { - "total_recipe_steps": 10, - "blocked_agents_count": 4, - "unique_target_items": 3, - "overall_difficulty_score": 10, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "cocoa_beans": 1 - }, - "1": { - "gold_ingot": 8 - }, - "2": { - "egg": 1 - }, - "3": {} - } - }, - "multiagent_cooking_4_1_cooked_chicken_1_cooked_porkchop_1_suspicious_stew_blocked_access_0_1_2_3": { - "conversation": "Let's work together to make suspicious_stew, cooked_chicken, cooked_porkchop.", - "agent_count": 4, - "target": { - "suspicious_stew": 1, - "cooked_chicken": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2", - "3" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_porkchop. ", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_porkchop. ", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_porkchop. ", - "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_porkchop. " - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 4, - "unique_target_items": 3, - "overall_difficulty_score": 9, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "dandelion": 1 - }, - "2": { - "coal": 16 - }, - "3": {} - } - }, - "multiagent_cooking_4_1_beetroot_soup_1_cooked_chicken_1_golden_carrot_blocked_access_2_3": { - "conversation": "Let's work together to make golden_carrot, cooked_chicken, beetroot_soup.", - "agent_count": 4, - "target": { - "golden_carrot": 1, - "cooked_chicken": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [ - "3", - "2" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_chicken, 1 beetroot_soup. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_chicken, 1 beetroot_soup. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_chicken, 1 beetroot_soup. ", - "3": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_chicken, 1 beetroot_soup. " - }, - "difficulty_metrics": { - "total_recipe_steps": 8, - "blocked_agents_count": 2, - "unique_target_items": 3, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "gold_ingot": 8 - }, - "1": { - "coal": 8 - }, - "2": { - "bowl": 1 - }, - "3": {} - } - }, - "multiagent_cooking_4_1_beetroot_soup_1_cooked_chicken_1_cooked_mutton_1_cooked_porkchop_blocked_access_0_2": { - "conversation": "Let's work together to make beetroot_soup, cooked_mutton, cooked_chicken, cooked_porkchop.", - "agent_count": 4, - "target": { - "beetroot_soup": 1, - "cooked_mutton": 1, - "cooked_chicken": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [ - "0", - "2" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 cooked_chicken, 1 cooked_porkchop. ", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 cooked_chicken, 1 cooked_porkchop. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 cooked_chicken, 1 cooked_porkchop. ", - "3": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 cooked_chicken, 1 cooked_porkchop. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 9, - "blocked_agents_count": 2, - "unique_target_items": 4, - "overall_difficulty_score": 9, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "coal": 24 - }, - "2": {}, - "3": {} - } - }, - "multiagent_cooking_4_1_cooked_mutton_1_mushroom_stew_1_pumpkin_pie_blocked_access_0_1_2_3": { - "conversation": "Let's work together to make mushroom_stew, cooked_mutton, pumpkin_pie.", - "agent_count": 4, - "target": { - "mushroom_stew": 1, - "cooked_mutton": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2", - "3" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 pumpkin_pie. ", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 pumpkin_pie. ", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 pumpkin_pie. ", - "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 pumpkin_pie. " - }, - "difficulty_metrics": { - "total_recipe_steps": 9, - "blocked_agents_count": 4, - "unique_target_items": 3, - "overall_difficulty_score": 10, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "coal": 8 - }, - "2": { - "egg": 1 - }, - "3": {} - } - }, - "multiagent_cooking_4_1_beetroot_soup_1_cooked_mutton_1_cooked_rabbit_1_golden_carrot": { - "conversation": "Let's work together to make cooked_rabbit, beetroot_soup, cooked_mutton, golden_carrot.", - "agent_count": 4, - "target": { - "cooked_rabbit": 1, - "beetroot_soup": 1, - "cooked_mutton": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup, 1 cooked_mutton, 1 golden_carrot. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup, 1 cooked_mutton, 1 golden_carrot. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup, 1 cooked_mutton, 1 golden_carrot. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "3": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup, 1 cooked_mutton, 1 golden_carrot. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 10, - "blocked_agents_count": 0, - "unique_target_items": 4, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": { - "bowl": 1 - }, - "2": { - "gold_ingot": 8 - }, - "3": {} - } - }, - "multiagent_cooking_4_1_cooked_rabbit_1_mushroom_stew_1_pumpkin_pie_1_suspicious_stew_blocked_access_0_1_2_3": { - "conversation": "Let's work together to make pumpkin_pie, cooked_rabbit, suspicious_stew, mushroom_stew.", - "agent_count": 4, - "target": { - "pumpkin_pie": 1, - "cooked_rabbit": 1, - "suspicious_stew": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2", - "3" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_rabbit, 1 suspicious_stew, 1 mushroom_stew. ", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_rabbit, 1 suspicious_stew, 1 mushroom_stew. ", - "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_rabbit, 1 suspicious_stew, 1 mushroom_stew. ", - "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_rabbit, 1 suspicious_stew, 1 mushroom_stew. " - }, - "difficulty_metrics": { - "total_recipe_steps": 12, - "blocked_agents_count": 4, - "unique_target_items": 4, - "overall_difficulty_score": 11, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "egg": 1 - }, - "1": { - "coal": 8 - }, - "2": { - "bowl": 2 - }, - "3": { - "dandelion": 1 - } - } - }, - "multiagent_cooking_4_1_cooked_chicken_1_cooked_rabbit_1_suspicious_stew": { - "conversation": "Let's work together to make suspicious_stew, cooked_chicken, cooked_rabbit.", - "agent_count": 4, - "target": { - "suspicious_stew": 1, - "cooked_chicken": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_rabbit. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_rabbit. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_rabbit. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_rabbit. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 0, - "unique_target_items": 3, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "dandelion": 1 - }, - "2": { - "coal": 16 - }, - "3": {} - } - }, - "multiagent_cooking_4_1_beetroot_soup_1_cooked_mutton_1_cookie_1_suspicious_stew_blocked_access_1_3": { - "conversation": "Let's work together to make cookie, beetroot_soup, cooked_mutton, suspicious_stew.", - "agent_count": 4, - "target": { - "cookie": 1, - "beetroot_soup": 1, - "cooked_mutton": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [ - "1", - "3" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 beetroot_soup, 1 cooked_mutton, 1 suspicious_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "1": "Collaborate with agents around you to make 1 cookie, 1 beetroot_soup, 1 cooked_mutton, 1 suspicious_stew. ", - "2": "Collaborate with agents around you to make 1 cookie, 1 beetroot_soup, 1 cooked_mutton, 1 suspicious_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "3": "Collaborate with agents around you to make 1 cookie, 1 beetroot_soup, 1 cooked_mutton, 1 suspicious_stew. " - }, - "difficulty_metrics": { - "total_recipe_steps": 11, - "blocked_agents_count": 2, - "unique_target_items": 4, - "overall_difficulty_score": 9, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "cocoa_beans": 1 - }, - "1": { - "bowl": 2 - }, - "2": { - "coal": 8 - }, - "3": { - "dandelion": 1 - } - } - }, - "multiagent_cooking_4_1_cooked_chicken_1_cooked_porkchop_1_cookie_1_golden_carrot_blocked_access_2_3": { - "conversation": "Let's work together to make golden_carrot, cooked_chicken, cookie, cooked_porkchop.", - "agent_count": 4, - "target": { - "golden_carrot": 1, - "cooked_chicken": 1, - "cookie": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [ - "2", - "3" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_chicken, 1 cookie, 1 cooked_porkchop. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_chicken, 1 cookie, 1 cooked_porkchop. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_chicken, 1 cookie, 1 cooked_porkchop. ", - "3": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_chicken, 1 cookie, 1 cooked_porkchop. " - }, - "difficulty_metrics": { - "total_recipe_steps": 10, - "blocked_agents_count": 2, - "unique_target_items": 4, - "overall_difficulty_score": 9, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "gold_ingot": 8 - }, - "1": { - "coal": 16 - }, - "2": { - "cocoa_beans": 1 - }, - "3": {} - } - }, - "multiagent_cooking_4_1_cooked_chicken_1_cooked_mutton_1_cooked_rabbit_blocked_access_1_3": { - "conversation": "Let's work together to make cooked_chicken, cooked_mutton, cooked_rabbit.", - "agent_count": 4, - "target": { - "cooked_chicken": 1, - "cooked_mutton": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [ - "1", - "3" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_mutton, 1 cooked_rabbit. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_mutton, 1 cooked_rabbit. ", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_mutton, 1 cooked_rabbit. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_mutton, 1 cooked_rabbit. " - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 2, - "unique_target_items": 3, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "coal": 24 - }, - "1": {}, - "2": {}, - "3": {} - } - }, - "multiagent_cooking_4_1_cooked_chicken_1_cooked_porkchop_1_golden_carrot_blocked_access_2_3": { - "conversation": "Let's work together to make cooked_porkchop, cooked_chicken, golden_carrot.", - "agent_count": 4, - "target": { - "cooked_porkchop": 1, - "cooked_chicken": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [ - "2", - "3" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 golden_carrot. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 golden_carrot. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 golden_carrot. ", - "3": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 golden_carrot. " - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 2, - "unique_target_items": 3, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": { - "gold_ingot": 8 - }, - "2": {}, - "3": {} - } - }, - "multiagent_cooking_4_1_beetroot_soup_1_cooked_mutton_1_cooked_porkchop_1_golden_carrot": { - "conversation": "Let's work together to make cooked_mutton, golden_carrot, cooked_porkchop, beetroot_soup.", - "agent_count": 4, - "target": { - "cooked_mutton": 1, - "golden_carrot": 1, - "cooked_porkchop": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 golden_carrot, 1 cooked_porkchop, 1 beetroot_soup. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 golden_carrot, 1 cooked_porkchop, 1 beetroot_soup. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 golden_carrot, 1 cooked_porkchop, 1 beetroot_soup. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "3": "Collaborate with agents around you to make 1 cooked_mutton, 1 golden_carrot, 1 cooked_porkchop, 1 beetroot_soup. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 10, - "blocked_agents_count": 0, - "unique_target_items": 4, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": { - "gold_ingot": 8 - }, - "2": { - "bowl": 1 - }, - "3": {} - } - }, - "multiagent_cooking_4_1_cooked_mutton_1_cooked_porkchop_1_suspicious_stew_blocked_access_0_1": { - "conversation": "Let's work together to make cooked_mutton, cooked_porkchop, suspicious_stew.", - "agent_count": 4, - "target": { - "cooked_mutton": 1, - "cooked_porkchop": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [ - "1", - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 suspicious_stew. ", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 suspicious_stew. ", - "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 suspicious_stew. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "3": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 suspicious_stew. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 2, - "unique_target_items": 3, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": { - "bowl": 1 - }, - "2": { - "dandelion": 1 - }, - "3": {} - } - }, - "multiagent_cooking_4_1_beetroot_soup_1_cooked_rabbit_1_golden_carrot_blocked_access_1_2": { - "conversation": "Let's work together to make beetroot_soup, golden_carrot, cooked_rabbit.", - "agent_count": 4, - "target": { - "beetroot_soup": 1, - "golden_carrot": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [ - "1", - "2" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 golden_carrot, 1 cooked_rabbit. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 golden_carrot, 1 cooked_rabbit. ", - "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 golden_carrot, 1 cooked_rabbit. ", - "3": "Collaborate with agents around you to make 1 beetroot_soup, 1 golden_carrot, 1 cooked_rabbit. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 8, - "blocked_agents_count": 2, - "unique_target_items": 3, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "gold_ingot": 8 - }, - "2": { - "coal": 8 - }, - "3": {} - } - }, - "multiagent_cooking_4_1_beetroot_soup_1_mushroom_stew_1_pumpkin_pie_1_suspicious_stew_blocked_access_0_1_2_3": { - "conversation": "Let's work together to make mushroom_stew, beetroot_soup, pumpkin_pie, suspicious_stew.", - "agent_count": 4, - "target": { - "mushroom_stew": 1, - "beetroot_soup": 1, - "pumpkin_pie": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2", - "3" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 pumpkin_pie, 1 suspicious_stew. ", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 pumpkin_pie, 1 suspicious_stew. ", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 pumpkin_pie, 1 suspicious_stew. ", - "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 pumpkin_pie, 1 suspicious_stew. " - }, - "difficulty_metrics": { - "total_recipe_steps": 13, - "blocked_agents_count": 4, - "unique_target_items": 4, - "overall_difficulty_score": 11, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "bowl": 3 - }, - "1": { - "egg": 1 - }, - "2": { - "dandelion": 1 - }, - "3": {} - } - }, - "multiagent_cooking_4_1_beetroot_soup_1_cooked_rabbit_1_cookie_1_pumpkin_pie_blocked_access_0_2": { - "conversation": "Let's work together to make pumpkin_pie, cookie, beetroot_soup, cooked_rabbit.", - "agent_count": 4, - "target": { - "pumpkin_pie": 1, - "cookie": 1, - "beetroot_soup": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [ - "2", - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 beetroot_soup, 1 cooked_rabbit. ", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 beetroot_soup, 1 cooked_rabbit. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 beetroot_soup, 1 cooked_rabbit. ", - "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 beetroot_soup, 1 cooked_rabbit. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 12, - "blocked_agents_count": 2, - "unique_target_items": 4, - "overall_difficulty_score": 9, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "egg": 1 - }, - "1": { - "cocoa_beans": 1 - }, - "2": { - "bowl": 1 - }, - "3": { - "coal": 8 - } - } - }, - "multiagent_cooking_4_1_beetroot_soup_1_cooked_mutton_1_mushroom_stew_blocked_access_0_3": { - "conversation": "Let's work together to make mushroom_stew, cooked_mutton, beetroot_soup.", - "agent_count": 4, - "target": { - "mushroom_stew": 1, - "cooked_mutton": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [ - "3", - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 beetroot_soup. ", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 beetroot_soup. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 beetroot_soup. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 beetroot_soup. " - }, - "difficulty_metrics": { - "total_recipe_steps": 8, - "blocked_agents_count": 2, - "unique_target_items": 3, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "bowl": 2 - }, - "1": { - "coal": 8 - }, - "2": {}, - "3": {} - } - }, - "multiagent_cooking_4_1_beetroot_soup_1_golden_carrot_1_mushroom_stew_blocked_access_0_2": { - "conversation": "Let's work together to make mushroom_stew, golden_carrot, beetroot_soup.", - "agent_count": 4, - "target": { - "mushroom_stew": 1, - "golden_carrot": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [ - "2", - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 beetroot_soup. ", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 beetroot_soup. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 beetroot_soup. ", - "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 beetroot_soup. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 9, - "blocked_agents_count": 2, - "unique_target_items": 3, - "overall_difficulty_score": 8, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "bowl": 2 - }, - "1": { - "gold_ingot": 8 - }, - "2": {}, - "3": {} - } - }, - "multiagent_cooking_4_1_beetroot_soup_1_cooked_rabbit_1_pumpkin_pie_1_suspicious_stew": { - "conversation": "Let's work together to make cooked_rabbit, pumpkin_pie, suspicious_stew, beetroot_soup.", - "agent_count": 4, - "target": { - "cooked_rabbit": 1, - "pumpkin_pie": 1, - "suspicious_stew": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie, 1 suspicious_stew, 1 beetroot_soup. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie, 1 suspicious_stew, 1 beetroot_soup. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie, 1 suspicious_stew, 1 beetroot_soup. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "3": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie, 1 suspicious_stew, 1 beetroot_soup. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 12, - "blocked_agents_count": 0, - "unique_target_items": 4, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "coal": 8 - }, - "1": { - "egg": 1 - }, - "2": { - "bowl": 2 - }, - "3": { - "dandelion": 1 - } - } - }, - "multiagent_cooking_4_1_cooked_mutton_1_cookie_1_golden_carrot_1_suspicious_stew": { - "conversation": "Let's work together to make cookie, suspicious_stew, golden_carrot, cooked_mutton.", - "agent_count": 4, - "target": { - "cookie": 1, - "suspicious_stew": 1, - "golden_carrot": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 suspicious_stew, 1 golden_carrot, 1 cooked_mutton. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "1": "Collaborate with agents around you to make 1 cookie, 1 suspicious_stew, 1 golden_carrot, 1 cooked_mutton. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "2": "Collaborate with agents around you to make 1 cookie, 1 suspicious_stew, 1 golden_carrot, 1 cooked_mutton. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "3": "Collaborate with agents around you to make 1 cookie, 1 suspicious_stew, 1 golden_carrot, 1 cooked_mutton. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 11, - "blocked_agents_count": 0, - "unique_target_items": 4, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "cocoa_beans": 1, - "coal": 8 - }, - "1": { - "bowl": 1 - }, - "2": { - "dandelion": 1 - }, - "3": { - "gold_ingot": 8 - } - } - }, - "multiagent_cooking_4_1_cooked_chicken_1_cooked_mutton_1_cooked_porkchop_1_mushroom_stew": { - "conversation": "Let's work together to make cooked_porkchop, cooked_chicken, cooked_mutton, mushroom_stew.", - "agent_count": 4, - "target": { - "cooked_porkchop": 1, - "cooked_chicken": 1, - "cooked_mutton": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 cooked_mutton, 1 mushroom_stew. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 cooked_mutton, 1 mushroom_stew. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 cooked_mutton, 1 mushroom_stew. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "3": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 cooked_mutton, 1 mushroom_stew. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 9, - "blocked_agents_count": 0, - "unique_target_items": 4, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "coal": 24 - }, - "1": { - "bowl": 1 - }, - "2": {}, - "3": {} - } - }, - "multiagent_cooking_4_1_cooked_chicken_1_cooked_mutton_1_mushroom_stew_blocked_access_0_1_2_3": { - "conversation": "Let's work together to make cooked_mutton, mushroom_stew, cooked_chicken.", - "agent_count": 4, - "target": { - "cooked_mutton": 1, - "mushroom_stew": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2", - "3" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 cooked_chicken. ", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 cooked_chicken. ", - "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 cooked_chicken. ", - "3": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 cooked_chicken. " - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 4, - "unique_target_items": 3, - "overall_difficulty_score": 9, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": { - "bowl": 1 - }, - "2": {}, - "3": {} - } - }, - "multiagent_cooking_4_1_cooked_porkchop_1_cooked_rabbit_1_golden_carrot": { - "conversation": "Let's work together to make golden_carrot, cooked_rabbit, cooked_porkchop.", - "agent_count": 4, - "target": { - "golden_carrot": 1, - "cooked_rabbit": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_rabbit, 1 cooked_porkchop. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_rabbit, 1 cooked_porkchop. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_rabbit, 1 cooked_porkchop. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "3": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_rabbit, 1 cooked_porkchop. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 0, - "unique_target_items": 3, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium", - "initial_inventory": { - "0": { - "gold_ingot": 8 - }, - "1": { - "coal": 16 - }, - "2": {}, - "3": {} - } - }, - "multiagent_cooking_4_1_cooked_porkchop_1_cookie_1_pumpkin_pie_1_suspicious_stew_blocked_access_0_1_2_3": { - "conversation": "Let's work together to make suspicious_stew, cookie, cooked_porkchop, pumpkin_pie.", - "agent_count": 4, - "target": { - "suspicious_stew": 1, - "cookie": 1, - "cooked_porkchop": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2", - "3" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cookie, 1 cooked_porkchop, 1 pumpkin_pie. ", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cookie, 1 cooked_porkchop, 1 pumpkin_pie. ", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cookie, 1 cooked_porkchop, 1 pumpkin_pie. ", - "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 cookie, 1 cooked_porkchop, 1 pumpkin_pie. " - }, - "difficulty_metrics": { - "total_recipe_steps": 12, - "blocked_agents_count": 4, - "unique_target_items": 4, - "overall_difficulty_score": 11, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "bowl": 1, - "egg": 1 - }, - "1": { - "dandelion": 1 - }, - "2": { - "cocoa_beans": 1 - }, - "3": { - "coal": 8 - } - } - }, - "multiagent_cooking_4_1_beetroot_soup_1_cooked_chicken_1_cooked_mutton_1_cooked_porkchop_blocked_access_0_3": { - "conversation": "Let's work together to make cooked_chicken, cooked_porkchop, cooked_mutton, beetroot_soup.", - "agent_count": 4, - "target": { - "cooked_chicken": 1, - "cooked_porkchop": 1, - "cooked_mutton": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [ - "3", - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop, 1 cooked_mutton, 1 beetroot_soup. ", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop, 1 cooked_mutton, 1 beetroot_soup. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop, 1 cooked_mutton, 1 beetroot_soup. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop, 1 cooked_mutton, 1 beetroot_soup. " - }, - "difficulty_metrics": { - "total_recipe_steps": 9, - "blocked_agents_count": 2, - "unique_target_items": 4, - "overall_difficulty_score": 9, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "coal": 24 - }, - "1": { - "bowl": 1 - }, - "2": {}, - "3": {} - } - }, - "multiagent_cooking_4_1_beetroot_soup_1_cooked_chicken_1_cooked_mutton_1_mushroom_stew_blocked_access_0_1_2_3": { - "conversation": "Let's work together to make mushroom_stew, beetroot_soup, cooked_mutton, cooked_chicken.", - "agent_count": 4, - "target": { - "mushroom_stew": 1, - "beetroot_soup": 1, - "cooked_mutton": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2", - "3" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 cooked_mutton, 1 cooked_chicken. ", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 cooked_mutton, 1 cooked_chicken. ", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 cooked_mutton, 1 cooked_chicken. ", - "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 cooked_mutton, 1 cooked_chicken. " - }, - "difficulty_metrics": { - "total_recipe_steps": 10, - "blocked_agents_count": 4, - "unique_target_items": 4, - "overall_difficulty_score": 11, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "bowl": 2 - }, - "1": { - "coal": 16 - }, - "2": {}, - "3": {} - } - }, - "multiagent_cooking_4_1_cooked_mutton_1_cooked_rabbit_1_mushroom_stew_1_pumpkin_pie_blocked_access_0_1_2_3": { - "conversation": "Let's work together to make cooked_rabbit, cooked_mutton, pumpkin_pie, mushroom_stew.", - "agent_count": 4, - "target": { - "cooked_rabbit": 1, - "cooked_mutton": 1, - "pumpkin_pie": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2", - "3" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_mutton, 1 pumpkin_pie, 1 mushroom_stew. ", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_mutton, 1 pumpkin_pie, 1 mushroom_stew. ", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_mutton, 1 pumpkin_pie, 1 mushroom_stew. ", - "3": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_mutton, 1 pumpkin_pie, 1 mushroom_stew. " - }, - "difficulty_metrics": { - "total_recipe_steps": 11, - "blocked_agents_count": 4, - "unique_target_items": 4, - "overall_difficulty_score": 11, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": { - "egg": 1 - }, - "2": { - "bowl": 1 - }, - "3": {} - } - }, - "multiagent_cooking_4_1_cooked_chicken_1_cooked_rabbit_1_cookie_1_suspicious_stew_blocked_access_0_2": { - "conversation": "Let's work together to make cooked_rabbit, suspicious_stew, cookie, cooked_chicken.", - "agent_count": 4, - "target": { - "cooked_rabbit": 1, - "suspicious_stew": 1, - "cookie": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [ - "0", - "2" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew, 1 cookie, 1 cooked_chicken. ", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew, 1 cookie, 1 cooked_chicken. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew, 1 cookie, 1 cooked_chicken. ", - "3": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew, 1 cookie, 1 cooked_chicken. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 10, - "blocked_agents_count": 2, - "unique_target_items": 4, - "overall_difficulty_score": 9, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": { - "bowl": 1 - }, - "2": { - "dandelion": 1 - }, - "3": { - "cocoa_beans": 1 - } - } - }, - "multiagent_cooking_4_1_cooked_chicken_1_golden_carrot_1_mushroom_stew_1_suspicious_stew_blocked_access_0_1_2_3": { - "conversation": "Let's work together to make cooked_chicken, suspicious_stew, golden_carrot, mushroom_stew.", - "agent_count": 4, - "target": { - "cooked_chicken": 1, - "suspicious_stew": 1, - "golden_carrot": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2", - "3" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew, 1 golden_carrot, 1 mushroom_stew. ", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew, 1 golden_carrot, 1 mushroom_stew. ", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew, 1 golden_carrot, 1 mushroom_stew. ", - "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew, 1 golden_carrot, 1 mushroom_stew. " - }, - "difficulty_metrics": { - "total_recipe_steps": 11, - "blocked_agents_count": 4, - "unique_target_items": 4, - "overall_difficulty_score": 11, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "coal": 8 - }, - "1": { - "bowl": 2 - }, - "2": { - "dandelion": 1 - }, - "3": { - "gold_ingot": 8 - } - } - } -} \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_train/5_agent.json b/tasks/cooking_tasks/require_collab_train/5_agent.json deleted file mode 100644 index ebd40b8..0000000 --- a/tasks/cooking_tasks/require_collab_train/5_agent.json +++ /dev/null @@ -1,5018 +0,0 @@ -{ - "multiagent_cooking_5_1_cooked_chicken_1_cooked_porkchop_1_cooked_rabbit_1_mushroom_stew_1_pumpkin_pie_blocked_access_1_3": { - "conversation": "Let's work together to make cooked_porkchop, mushroom_stew, cooked_chicken, cooked_rabbit, pumpkin_pie.", - "agent_count": 5, - "target": { - "cooked_porkchop": 1, - "mushroom_stew": 1, - "cooked_chicken": 1, - "cooked_rabbit": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [ - "1", - "3" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew, 1 cooked_chicken, 1 cooked_rabbit, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew, 1 cooked_chicken, 1 cooked_rabbit, 1 pumpkin_pie. ", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew, 1 cooked_chicken, 1 cooked_rabbit, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "3": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew, 1 cooked_chicken, 1 cooked_rabbit, 1 pumpkin_pie. ", - "4": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew, 1 cooked_chicken, 1 cooked_rabbit, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 13, - "blocked_agents_count": 2, - "unique_target_items": 5, - "overall_difficulty_score": 10, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "coal": 24 - }, - "1": { - "bowl": 1 - }, - "2": { - "egg": 1 - }, - "3": {}, - "4": {} - } - }, - "multiagent_cooking_5_1_beetroot_soup_1_cooked_chicken_1_cooked_porkchop_1_suspicious_stew_blocked_access_0_3": { - "conversation": "Let's work together to make beetroot_soup, cooked_porkchop, suspicious_stew, cooked_chicken.", - "agent_count": 5, - "target": { - "beetroot_soup": 1, - "cooked_porkchop": 1, - "suspicious_stew": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [ - "3", - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop, 1 suspicious_stew, 1 cooked_chicken. ", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop, 1 suspicious_stew, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop, 1 suspicious_stew, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "3": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop, 1 suspicious_stew, 1 cooked_chicken. ", - "4": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop, 1 suspicious_stew, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 10, - "blocked_agents_count": 2, - "unique_target_items": 4, - "overall_difficulty_score": 9, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "bowl": 2 - }, - "1": { - "coal": 16 - }, - "2": { - "dandelion": 1 - }, - "3": {}, - "4": {} - } - }, - "multiagent_cooking_5_1_cooked_mutton_1_cooked_porkchop_1_cooked_rabbit_1_cookie_1_suspicious_stew": { - "conversation": "Let's work together to make cooked_mutton, cooked_rabbit, suspicious_stew, cooked_porkchop, cookie.", - "agent_count": 5, - "target": { - "cooked_mutton": 1, - "cooked_rabbit": 1, - "suspicious_stew": 1, - "cooked_porkchop": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 suspicious_stew, 1 cooked_porkchop, 1 cookie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 suspicious_stew, 1 cooked_porkchop, 1 cookie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 suspicious_stew, 1 cooked_porkchop, 1 cookie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "3": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 suspicious_stew, 1 cooked_porkchop, 1 cookie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "4": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 suspicious_stew, 1 cooked_porkchop, 1 cookie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 12, - "blocked_agents_count": 0, - "unique_target_items": 5, - "overall_difficulty_score": 8, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "coal": 24 - }, - "1": { - "bowl": 1 - }, - "2": { - "dandelion": 1 - }, - "3": { - "cocoa_beans": 1 - }, - "4": {} - } - }, - "multiagent_cooking_5_1_cooked_rabbit_1_mushroom_stew_1_pumpkin_pie_1_suspicious_stew_blocked_access_0_1_2_3_4": { - "conversation": "Let's work together to make mushroom_stew, suspicious_stew, pumpkin_pie, cooked_rabbit.", - "agent_count": 5, - "target": { - "mushroom_stew": 1, - "suspicious_stew": 1, - "pumpkin_pie": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2", - "3", - "4" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 pumpkin_pie, 1 cooked_rabbit. ", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 pumpkin_pie, 1 cooked_rabbit. ", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 pumpkin_pie, 1 cooked_rabbit. ", - "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 pumpkin_pie, 1 cooked_rabbit. ", - "4": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 pumpkin_pie, 1 cooked_rabbit. " - }, - "difficulty_metrics": { - "total_recipe_steps": 12, - "blocked_agents_count": 5, - "unique_target_items": 4, - "overall_difficulty_score": 12, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "bowl": 2 - }, - "1": { - "dandelion": 1 - }, - "2": { - "egg": 1 - }, - "3": { - "coal": 8 - }, - "4": {} - } - }, - "multiagent_cooking_5_1_cooked_mutton_1_cooked_porkchop_1_mushroom_stew_1_pumpkin_pie_blocked_access_0_1_2_3_4": { - "conversation": "Let's work together to make cooked_mutton, mushroom_stew, cooked_porkchop, pumpkin_pie.", - "agent_count": 5, - "target": { - "cooked_mutton": 1, - "mushroom_stew": 1, - "cooked_porkchop": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2", - "3", - "4" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 cooked_porkchop, 1 pumpkin_pie. ", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 cooked_porkchop, 1 pumpkin_pie. ", - "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 cooked_porkchop, 1 pumpkin_pie. ", - "3": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 cooked_porkchop, 1 pumpkin_pie. ", - "4": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 cooked_porkchop, 1 pumpkin_pie. " - }, - "difficulty_metrics": { - "total_recipe_steps": 11, - "blocked_agents_count": 5, - "unique_target_items": 4, - "overall_difficulty_score": 12, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": { - "bowl": 1 - }, - "2": { - "egg": 1 - }, - "3": {}, - "4": {} - } - }, - "multiagent_cooking_5_1_cooked_mutton_1_golden_carrot_1_mushroom_stew_1_pumpkin_pie_1_suspicious_stew": { - "conversation": "Let's work together to make pumpkin_pie, suspicious_stew, mushroom_stew, golden_carrot, cooked_mutton.", - "agent_count": 5, - "target": { - "pumpkin_pie": 1, - "suspicious_stew": 1, - "mushroom_stew": 1, - "golden_carrot": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew, 1 mushroom_stew, 1 golden_carrot, 1 cooked_mutton. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew, 1 mushroom_stew, 1 golden_carrot, 1 cooked_mutton. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew, 1 mushroom_stew, 1 golden_carrot, 1 cooked_mutton. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew, 1 mushroom_stew, 1 golden_carrot, 1 cooked_mutton. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "4": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew, 1 mushroom_stew, 1 golden_carrot, 1 cooked_mutton. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 15, - "blocked_agents_count": 0, - "unique_target_items": 5, - "overall_difficulty_score": 8, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "egg": 1 - }, - "1": { - "bowl": 2 - }, - "2": { - "dandelion": 1 - }, - "3": { - "gold_ingot": 8 - }, - "4": { - "coal": 8 - } - } - }, - "multiagent_cooking_5_1_beetroot_soup_1_cooked_mutton_1_cookie_1_pumpkin_pie_1_suspicious_stew_blocked_access_1_2": { - "conversation": "Let's work together to make cookie, beetroot_soup, cooked_mutton, suspicious_stew, pumpkin_pie.", - "agent_count": 5, - "target": { - "cookie": 1, - "beetroot_soup": 1, - "cooked_mutton": 1, - "suspicious_stew": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [ - "2", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 beetroot_soup, 1 cooked_mutton, 1 suspicious_stew, 1 pumpkin_pie. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "1": "Collaborate with agents around you to make 1 cookie, 1 beetroot_soup, 1 cooked_mutton, 1 suspicious_stew, 1 pumpkin_pie. ", - "2": "Collaborate with agents around you to make 1 cookie, 1 beetroot_soup, 1 cooked_mutton, 1 suspicious_stew, 1 pumpkin_pie. ", - "3": "Collaborate with agents around you to make 1 cookie, 1 beetroot_soup, 1 cooked_mutton, 1 suspicious_stew, 1 pumpkin_pie. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "4": "Collaborate with agents around you to make 1 cookie, 1 beetroot_soup, 1 cooked_mutton, 1 suspicious_stew, 1 pumpkin_pie. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 15, - "blocked_agents_count": 2, - "unique_target_items": 5, - "overall_difficulty_score": 10, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "cocoa_beans": 1 - }, - "1": { - "bowl": 2 - }, - "2": { - "coal": 8 - }, - "3": { - "dandelion": 1 - }, - "4": { - "egg": 1 - } - } - }, - "multiagent_cooking_5_1_beetroot_soup_1_cooked_porkchop_1_cooked_rabbit_1_cookie_1_mushroom_stew_blocked_access_0_1": { - "conversation": "Let's work together to make cooked_rabbit, cooked_porkchop, mushroom_stew, beetroot_soup, cookie.", - "agent_count": 5, - "target": { - "cooked_rabbit": 1, - "cooked_porkchop": 1, - "mushroom_stew": 1, - "beetroot_soup": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [ - "1", - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 mushroom_stew, 1 beetroot_soup, 1 cookie. ", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 mushroom_stew, 1 beetroot_soup, 1 cookie. ", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 mushroom_stew, 1 beetroot_soup, 1 cookie. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "3": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 mushroom_stew, 1 beetroot_soup, 1 cookie. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "4": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 mushroom_stew, 1 beetroot_soup, 1 cookie. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 13, - "blocked_agents_count": 2, - "unique_target_items": 5, - "overall_difficulty_score": 10, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": { - "bowl": 2 - }, - "2": { - "cocoa_beans": 1 - }, - "3": {}, - "4": {} - } - }, - "multiagent_cooking_5_1_beetroot_soup_1_cooked_mutton_1_golden_carrot_1_suspicious_stew_blocked_access_0_4": { - "conversation": "Let's work together to make suspicious_stew, cooked_mutton, golden_carrot, beetroot_soup.", - "agent_count": 5, - "target": { - "suspicious_stew": 1, - "cooked_mutton": 1, - "golden_carrot": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [ - "0", - "4" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton, 1 golden_carrot, 1 beetroot_soup. ", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton, 1 golden_carrot, 1 beetroot_soup. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton, 1 golden_carrot, 1 beetroot_soup. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton, 1 golden_carrot, 1 beetroot_soup. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "4": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton, 1 golden_carrot, 1 beetroot_soup. " - }, - "difficulty_metrics": { - "total_recipe_steps": 11, - "blocked_agents_count": 2, - "unique_target_items": 4, - "overall_difficulty_score": 9, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "bowl": 2 - }, - "1": { - "dandelion": 1 - }, - "2": { - "coal": 8 - }, - "3": { - "gold_ingot": 8 - }, - "4": {} - } - }, - "multiagent_cooking_5_1_cooked_chicken_1_cooked_porkchop_1_cooked_rabbit_1_cookie_1_suspicious_stew": { - "conversation": "Let's work together to make cooked_porkchop, cooked_chicken, cookie, cooked_rabbit, suspicious_stew.", - "agent_count": 5, - "target": { - "cooked_porkchop": 1, - "cooked_chicken": 1, - "cookie": 1, - "cooked_rabbit": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 cookie, 1 cooked_rabbit, 1 suspicious_stew. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 cookie, 1 cooked_rabbit, 1 suspicious_stew. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 cookie, 1 cooked_rabbit, 1 suspicious_stew. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "3": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 cookie, 1 cooked_rabbit, 1 suspicious_stew. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "4": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 cookie, 1 cooked_rabbit, 1 suspicious_stew. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 12, - "blocked_agents_count": 0, - "unique_target_items": 5, - "overall_difficulty_score": 8, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "coal": 24 - }, - "1": { - "cocoa_beans": 1 - }, - "2": { - "bowl": 1 - }, - "3": { - "dandelion": 1 - }, - "4": {} - } - }, - "multiagent_cooking_5_1_cooked_porkchop_1_golden_carrot_1_mushroom_stew_1_pumpkin_pie_blocked_access_0_2": { - "conversation": "Let's work together to make pumpkin_pie, mushroom_stew, golden_carrot, cooked_porkchop.", - "agent_count": 5, - "target": { - "pumpkin_pie": 1, - "mushroom_stew": 1, - "golden_carrot": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [ - "0", - "2" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 golden_carrot, 1 cooked_porkchop. ", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 golden_carrot, 1 cooked_porkchop. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 golden_carrot, 1 cooked_porkchop. ", - "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 golden_carrot, 1 cooked_porkchop. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "4": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 golden_carrot, 1 cooked_porkchop. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 12, - "blocked_agents_count": 2, - "unique_target_items": 4, - "overall_difficulty_score": 9, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "egg": 1 - }, - "1": { - "bowl": 1 - }, - "2": { - "gold_ingot": 8 - }, - "3": { - "coal": 8 - }, - "4": {} - } - }, - "multiagent_cooking_5_1_cooked_porkchop_1_cooked_rabbit_1_mushroom_stew_1_suspicious_stew_blocked_access_0_3": { - "conversation": "Let's work together to make suspicious_stew, cooked_rabbit, cooked_porkchop, mushroom_stew.", - "agent_count": 5, - "target": { - "suspicious_stew": 1, - "cooked_rabbit": 1, - "cooked_porkchop": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [ - "3", - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_rabbit, 1 cooked_porkchop, 1 mushroom_stew. ", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_rabbit, 1 cooked_porkchop, 1 mushroom_stew. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_rabbit, 1 cooked_porkchop, 1 mushroom_stew. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_rabbit, 1 cooked_porkchop, 1 mushroom_stew. ", - "4": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_rabbit, 1 cooked_porkchop, 1 mushroom_stew. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 10, - "blocked_agents_count": 2, - "unique_target_items": 4, - "overall_difficulty_score": 9, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "bowl": 2 - }, - "1": { - "dandelion": 1 - }, - "2": { - "coal": 16 - }, - "3": {}, - "4": {} - } - }, - "multiagent_cooking_5_1_cooked_chicken_1_cooked_mutton_1_cooked_porkchop_1_cooked_rabbit_1_pumpkin_pie": { - "conversation": "Let's work together to make cooked_chicken, cooked_porkchop, cooked_rabbit, cooked_mutton, pumpkin_pie.", - "agent_count": 5, - "target": { - "cooked_chicken": 1, - "cooked_porkchop": 1, - "cooked_rabbit": 1, - "cooked_mutton": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop, 1 cooked_rabbit, 1 cooked_mutton, 1 pumpkin_pie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop, 1 cooked_rabbit, 1 cooked_mutton, 1 pumpkin_pie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop, 1 cooked_rabbit, 1 cooked_mutton, 1 pumpkin_pie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop, 1 cooked_rabbit, 1 cooked_mutton, 1 pumpkin_pie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "4": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop, 1 cooked_rabbit, 1 cooked_mutton, 1 pumpkin_pie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 12, - "blocked_agents_count": 0, - "unique_target_items": 5, - "overall_difficulty_score": 8, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "coal": 32 - }, - "1": { - "egg": 1 - }, - "2": {}, - "3": {}, - "4": {} - } - }, - "multiagent_cooking_5_1_cooked_chicken_1_cookie_1_mushroom_stew_1_pumpkin_pie_1_suspicious_stew_blocked_access_0_1_2_3_4": { - "conversation": "Let's work together to make suspicious_stew, cooked_chicken, mushroom_stew, pumpkin_pie, cookie.", - "agent_count": 5, - "target": { - "suspicious_stew": 1, - "cooked_chicken": 1, - "mushroom_stew": 1, - "pumpkin_pie": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2", - "3", - "4" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 mushroom_stew, 1 pumpkin_pie, 1 cookie. ", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 mushroom_stew, 1 pumpkin_pie, 1 cookie. ", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 mushroom_stew, 1 pumpkin_pie, 1 cookie. ", - "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 mushroom_stew, 1 pumpkin_pie, 1 cookie. ", - "4": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 mushroom_stew, 1 pumpkin_pie, 1 cookie. " - }, - "difficulty_metrics": { - "total_recipe_steps": 15, - "blocked_agents_count": 5, - "unique_target_items": 5, - "overall_difficulty_score": 13, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "bowl": 2 - }, - "1": { - "dandelion": 1 - }, - "2": { - "coal": 8 - }, - "3": { - "egg": 1 - }, - "4": { - "cocoa_beans": 1 - } - } - }, - "multiagent_cooking_5_1_cooked_mutton_1_cooked_porkchop_1_cooked_rabbit_1_pumpkin_pie": { - "conversation": "Let's work together to make cooked_mutton, pumpkin_pie, cooked_rabbit, cooked_porkchop.", - "agent_count": 5, - "target": { - "cooked_mutton": 1, - "pumpkin_pie": 1, - "cooked_rabbit": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie, 1 cooked_rabbit, 1 cooked_porkchop. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie, 1 cooked_rabbit, 1 cooked_porkchop. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie, 1 cooked_rabbit, 1 cooked_porkchop. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "3": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie, 1 cooked_rabbit, 1 cooked_porkchop. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "4": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie, 1 cooked_rabbit, 1 cooked_porkchop. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 10, - "blocked_agents_count": 0, - "unique_target_items": 4, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "coal": 24 - }, - "1": { - "egg": 1 - }, - "2": {}, - "3": {}, - "4": {} - } - }, - "multiagent_cooking_5_1_beetroot_soup_1_cooked_chicken_1_mushroom_stew_1_suspicious_stew": { - "conversation": "Let's work together to make cooked_chicken, beetroot_soup, suspicious_stew, mushroom_stew.", - "agent_count": 5, - "target": { - "cooked_chicken": 1, - "beetroot_soup": 1, - "suspicious_stew": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 beetroot_soup, 1 suspicious_stew, 1 mushroom_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 beetroot_soup, 1 suspicious_stew, 1 mushroom_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 beetroot_soup, 1 suspicious_stew, 1 mushroom_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 beetroot_soup, 1 suspicious_stew, 1 mushroom_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "4": "Collaborate with agents around you to make 1 cooked_chicken, 1 beetroot_soup, 1 suspicious_stew, 1 mushroom_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 11, - "blocked_agents_count": 0, - "unique_target_items": 4, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "coal": 8 - }, - "1": { - "bowl": 3 - }, - "2": { - "dandelion": 1 - }, - "3": {}, - "4": {} - } - }, - "multiagent_cooking_5_1_cooked_chicken_1_cookie_1_mushroom_stew_1_suspicious_stew_blocked_access_1_3": { - "conversation": "Let's work together to make cookie, suspicious_stew, cooked_chicken, mushroom_stew.", - "agent_count": 5, - "target": { - "cookie": 1, - "suspicious_stew": 1, - "cooked_chicken": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [ - "3", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 suspicious_stew, 1 cooked_chicken, 1 mushroom_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "1": "Collaborate with agents around you to make 1 cookie, 1 suspicious_stew, 1 cooked_chicken, 1 mushroom_stew. ", - "2": "Collaborate with agents around you to make 1 cookie, 1 suspicious_stew, 1 cooked_chicken, 1 mushroom_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "3": "Collaborate with agents around you to make 1 cookie, 1 suspicious_stew, 1 cooked_chicken, 1 mushroom_stew. ", - "4": "Collaborate with agents around you to make 1 cookie, 1 suspicious_stew, 1 cooked_chicken, 1 mushroom_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 11, - "blocked_agents_count": 2, - "unique_target_items": 4, - "overall_difficulty_score": 9, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "cocoa_beans": 1 - }, - "1": { - "bowl": 2 - }, - "2": { - "dandelion": 1 - }, - "3": { - "coal": 8 - }, - "4": {} - } - }, - "multiagent_cooking_5_1_beetroot_soup_1_cooked_porkchop_1_golden_carrot_1_pumpkin_pie_1_suspicious_stew_blocked_access_2_3": { - "conversation": "Let's work together to make suspicious_stew, beetroot_soup, golden_carrot, pumpkin_pie, cooked_porkchop.", - "agent_count": 5, - "target": { - "suspicious_stew": 1, - "beetroot_soup": 1, - "golden_carrot": 1, - "pumpkin_pie": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [ - "2", - "3" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup, 1 golden_carrot, 1 pumpkin_pie, 1 cooked_porkchop. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup, 1 golden_carrot, 1 pumpkin_pie, 1 cooked_porkchop. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup, 1 golden_carrot, 1 pumpkin_pie, 1 cooked_porkchop. ", - "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup, 1 golden_carrot, 1 pumpkin_pie, 1 cooked_porkchop. ", - "4": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup, 1 golden_carrot, 1 pumpkin_pie, 1 cooked_porkchop. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 15, - "blocked_agents_count": 2, - "unique_target_items": 5, - "overall_difficulty_score": 10, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "bowl": 2 - }, - "1": { - "dandelion": 1 - }, - "2": { - "gold_ingot": 8 - }, - "3": { - "egg": 1 - }, - "4": { - "coal": 8 - } - } - }, - "multiagent_cooking_5_1_cooked_chicken_1_cooked_porkchop_1_cookie_1_suspicious_stew_blocked_access_0_4": { - "conversation": "Let's work together to make cooked_chicken, suspicious_stew, cooked_porkchop, cookie.", - "agent_count": 5, - "target": { - "cooked_chicken": 1, - "suspicious_stew": 1, - "cooked_porkchop": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [ - "4", - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew, 1 cooked_porkchop, 1 cookie. ", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew, 1 cooked_porkchop, 1 cookie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew, 1 cooked_porkchop, 1 cookie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew, 1 cooked_porkchop, 1 cookie. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "4": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew, 1 cooked_porkchop, 1 cookie. " - }, - "difficulty_metrics": { - "total_recipe_steps": 10, - "blocked_agents_count": 2, - "unique_target_items": 4, - "overall_difficulty_score": 9, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": { - "bowl": 1 - }, - "2": { - "dandelion": 1 - }, - "3": { - "cocoa_beans": 1 - }, - "4": {} - } - }, - "multiagent_cooking_5_1_cooked_mutton_1_cooked_rabbit_1_golden_carrot_1_mushroom_stew_1_suspicious_stew_blocked_access_2_4": { - "conversation": "Let's work together to make suspicious_stew, cooked_mutton, mushroom_stew, cooked_rabbit, golden_carrot.", - "agent_count": 5, - "target": { - "suspicious_stew": 1, - "cooked_mutton": 1, - "mushroom_stew": 1, - "cooked_rabbit": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [ - "4", - "2" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton, 1 mushroom_stew, 1 cooked_rabbit, 1 golden_carrot. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton, 1 mushroom_stew, 1 cooked_rabbit, 1 golden_carrot. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton, 1 mushroom_stew, 1 cooked_rabbit, 1 golden_carrot. ", - "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton, 1 mushroom_stew, 1 cooked_rabbit, 1 golden_carrot. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "4": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton, 1 mushroom_stew, 1 cooked_rabbit, 1 golden_carrot. " - }, - "difficulty_metrics": { - "total_recipe_steps": 13, - "blocked_agents_count": 2, - "unique_target_items": 5, - "overall_difficulty_score": 10, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "bowl": 2 - }, - "1": { - "dandelion": 1 - }, - "2": { - "coal": 16 - }, - "3": { - "gold_ingot": 8 - }, - "4": {} - } - }, - "multiagent_cooking_5_1_cooked_chicken_1_cooked_rabbit_1_golden_carrot_1_mushroom_stew_blocked_access_1_3": { - "conversation": "Let's work together to make cooked_chicken, cooked_rabbit, golden_carrot, mushroom_stew.", - "agent_count": 5, - "target": { - "cooked_chicken": 1, - "cooked_rabbit": 1, - "golden_carrot": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [ - "1", - "3" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 golden_carrot, 1 mushroom_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 golden_carrot, 1 mushroom_stew. ", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 golden_carrot, 1 mushroom_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 golden_carrot, 1 mushroom_stew. ", - "4": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 golden_carrot, 1 mushroom_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 10, - "blocked_agents_count": 2, - "unique_target_items": 4, - "overall_difficulty_score": 9, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": { - "gold_ingot": 8 - }, - "2": { - "bowl": 1 - }, - "3": {}, - "4": {} - } - }, - "multiagent_cooking_5_1_cooked_chicken_1_cooked_mutton_1_cooked_rabbit_1_cookie": { - "conversation": "Let's work together to make cooked_mutton, cooked_rabbit, cooked_chicken, cookie.", - "agent_count": 5, - "target": { - "cooked_mutton": 1, - "cooked_rabbit": 1, - "cooked_chicken": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 cooked_chicken, 1 cookie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 cooked_chicken, 1 cookie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 cooked_chicken, 1 cookie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "3": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 cooked_chicken, 1 cookie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "4": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 cooked_chicken, 1 cookie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 9, - "blocked_agents_count": 0, - "unique_target_items": 4, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "coal": 24 - }, - "1": { - "cocoa_beans": 1 - }, - "2": {}, - "3": {}, - "4": {} - } - }, - "multiagent_cooking_5_1_cooked_porkchop_1_cooked_rabbit_1_mushroom_stew_1_pumpkin_pie_1_suspicious_stew": { - "conversation": "Let's work together to make cooked_porkchop, suspicious_stew, mushroom_stew, cooked_rabbit, pumpkin_pie.", - "agent_count": 5, - "target": { - "cooked_porkchop": 1, - "suspicious_stew": 1, - "mushroom_stew": 1, - "cooked_rabbit": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 mushroom_stew, 1 cooked_rabbit, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 mushroom_stew, 1 cooked_rabbit, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 mushroom_stew, 1 cooked_rabbit, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "3": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 mushroom_stew, 1 cooked_rabbit, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "4": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 mushroom_stew, 1 cooked_rabbit, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 14, - "blocked_agents_count": 0, - "unique_target_items": 5, - "overall_difficulty_score": 8, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": { - "bowl": 2 - }, - "2": { - "dandelion": 1 - }, - "3": { - "egg": 1 - }, - "4": {} - } - }, - "multiagent_cooking_5_1_beetroot_soup_1_cooked_chicken_1_cooked_porkchop_1_pumpkin_pie": { - "conversation": "Let's work together to make cooked_porkchop, beetroot_soup, cooked_chicken, pumpkin_pie.", - "agent_count": 5, - "target": { - "cooked_porkchop": 1, - "beetroot_soup": 1, - "cooked_chicken": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 beetroot_soup, 1 cooked_chicken, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 beetroot_soup, 1 cooked_chicken, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 beetroot_soup, 1 cooked_chicken, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "3": "Collaborate with agents around you to make 1 cooked_porkchop, 1 beetroot_soup, 1 cooked_chicken, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "4": "Collaborate with agents around you to make 1 cooked_porkchop, 1 beetroot_soup, 1 cooked_chicken, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 11, - "blocked_agents_count": 0, - "unique_target_items": 4, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": { - "bowl": 1 - }, - "2": { - "egg": 1 - }, - "3": {}, - "4": {} - } - }, - "multiagent_cooking_5_1_cooked_chicken_1_cookie_1_pumpkin_pie_1_suspicious_stew_blocked_access_0_1_2_3_4": { - "conversation": "Let's work together to make pumpkin_pie, suspicious_stew, cookie, cooked_chicken.", - "agent_count": 5, - "target": { - "pumpkin_pie": 1, - "suspicious_stew": 1, - "cookie": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2", - "3", - "4" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew, 1 cookie, 1 cooked_chicken. ", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew, 1 cookie, 1 cooked_chicken. ", - "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew, 1 cookie, 1 cooked_chicken. ", - "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew, 1 cookie, 1 cooked_chicken. ", - "4": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew, 1 cookie, 1 cooked_chicken. " - }, - "difficulty_metrics": { - "total_recipe_steps": 12, - "blocked_agents_count": 5, - "unique_target_items": 4, - "overall_difficulty_score": 12, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "egg": 1 - }, - "1": { - "bowl": 1 - }, - "2": { - "dandelion": 1 - }, - "3": { - "cocoa_beans": 1 - }, - "4": { - "coal": 8 - } - } - }, - "multiagent_cooking_5_1_beetroot_soup_1_cooked_rabbit_1_golden_carrot_1_mushroom_stew": { - "conversation": "Let's work together to make cooked_rabbit, golden_carrot, beetroot_soup, mushroom_stew.", - "agent_count": 5, - "target": { - "cooked_rabbit": 1, - "golden_carrot": 1, - "beetroot_soup": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot, 1 beetroot_soup, 1 mushroom_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot, 1 beetroot_soup, 1 mushroom_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot, 1 beetroot_soup, 1 mushroom_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "3": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot, 1 beetroot_soup, 1 mushroom_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "4": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot, 1 beetroot_soup, 1 mushroom_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 11, - "blocked_agents_count": 0, - "unique_target_items": 4, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "coal": 8 - }, - "1": { - "gold_ingot": 8 - }, - "2": { - "bowl": 2 - }, - "3": {}, - "4": {} - } - }, - "multiagent_cooking_5_1_beetroot_soup_1_cooked_porkchop_1_mushroom_stew_1_pumpkin_pie_1_suspicious_stew_blocked_access_0_3": { - "conversation": "Let's work together to make mushroom_stew, cooked_porkchop, pumpkin_pie, suspicious_stew, beetroot_soup.", - "agent_count": 5, - "target": { - "mushroom_stew": 1, - "cooked_porkchop": 1, - "pumpkin_pie": 1, - "suspicious_stew": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [ - "0", - "3" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop, 1 pumpkin_pie, 1 suspicious_stew, 1 beetroot_soup. ", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop, 1 pumpkin_pie, 1 suspicious_stew, 1 beetroot_soup. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop, 1 pumpkin_pie, 1 suspicious_stew, 1 beetroot_soup. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop, 1 pumpkin_pie, 1 suspicious_stew, 1 beetroot_soup. ", - "4": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop, 1 pumpkin_pie, 1 suspicious_stew, 1 beetroot_soup. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 15, - "blocked_agents_count": 2, - "unique_target_items": 5, - "overall_difficulty_score": 10, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "bowl": 3 - }, - "1": { - "coal": 8 - }, - "2": { - "egg": 1 - }, - "3": { - "dandelion": 1 - }, - "4": {} - } - }, - "multiagent_cooking_5_1_cooked_mutton_1_cooked_rabbit_1_cookie_1_mushroom_stew_1_suspicious_stew_blocked_access_0_4": { - "conversation": "Let's work together to make mushroom_stew, cooked_mutton, cooked_rabbit, cookie, suspicious_stew.", - "agent_count": 5, - "target": { - "mushroom_stew": 1, - "cooked_mutton": 1, - "cooked_rabbit": 1, - "cookie": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [ - "4", - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 cooked_rabbit, 1 cookie, 1 suspicious_stew. ", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 cooked_rabbit, 1 cookie, 1 suspicious_stew. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 cooked_rabbit, 1 cookie, 1 suspicious_stew. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 cooked_rabbit, 1 cookie, 1 suspicious_stew. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "4": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 cooked_rabbit, 1 cookie, 1 suspicious_stew. " - }, - "difficulty_metrics": { - "total_recipe_steps": 13, - "blocked_agents_count": 2, - "unique_target_items": 5, - "overall_difficulty_score": 10, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "bowl": 2 - }, - "1": { - "coal": 16 - }, - "2": { - "cocoa_beans": 1 - }, - "3": { - "dandelion": 1 - }, - "4": {} - } - }, - "multiagent_cooking_5_1_beetroot_soup_1_cooked_chicken_1_cooked_mutton_1_mushroom_stew": { - "conversation": "Let's work together to make cooked_mutton, mushroom_stew, cooked_chicken, beetroot_soup.", - "agent_count": 5, - "target": { - "cooked_mutton": 1, - "mushroom_stew": 1, - "cooked_chicken": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 cooked_chicken, 1 beetroot_soup. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 cooked_chicken, 1 beetroot_soup. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 cooked_chicken, 1 beetroot_soup. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "3": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 cooked_chicken, 1 beetroot_soup. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", - "4": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 cooked_chicken, 1 beetroot_soup. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 10, - "blocked_agents_count": 0, - "unique_target_items": 4, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": { - "bowl": 2 - }, - "2": {}, - "3": {}, - "4": {} - } - }, - "multiagent_cooking_5_1_cooked_chicken_1_mushroom_stew_1_pumpkin_pie_1_suspicious_stew_blocked_access_0_1_2_3_4": { - "conversation": "Let's work together to make pumpkin_pie, mushroom_stew, suspicious_stew, cooked_chicken.", - "agent_count": 5, - "target": { - "pumpkin_pie": 1, - "mushroom_stew": 1, - "suspicious_stew": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2", - "3", - "4" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 suspicious_stew, 1 cooked_chicken. ", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 suspicious_stew, 1 cooked_chicken. ", - "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 suspicious_stew, 1 cooked_chicken. ", - "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 suspicious_stew, 1 cooked_chicken. ", - "4": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 suspicious_stew, 1 cooked_chicken. " - }, - "difficulty_metrics": { - "total_recipe_steps": 12, - "blocked_agents_count": 5, - "unique_target_items": 4, - "overall_difficulty_score": 12, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "egg": 1 - }, - "1": { - "bowl": 2 - }, - "2": { - "dandelion": 1 - }, - "3": { - "coal": 8 - }, - "4": {} - } - }, - "multiagent_cooking_5_1_cooked_chicken_1_cooked_porkchop_1_golden_carrot_1_suspicious_stew_blocked_access_3_4": { - "conversation": "Let's work together to make cooked_chicken, golden_carrot, cooked_porkchop, suspicious_stew.", - "agent_count": 5, - "target": { - "cooked_chicken": 1, - "golden_carrot": 1, - "cooked_porkchop": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [ - "3", - "4" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cooked_porkchop, 1 suspicious_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cooked_porkchop, 1 suspicious_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cooked_porkchop, 1 suspicious_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cooked_porkchop, 1 suspicious_stew. ", - "4": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cooked_porkchop, 1 suspicious_stew. " - }, - "difficulty_metrics": { - "total_recipe_steps": 10, - "blocked_agents_count": 2, - "unique_target_items": 4, - "overall_difficulty_score": 9, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": { - "gold_ingot": 8 - }, - "2": { - "bowl": 1 - }, - "3": { - "dandelion": 1 - }, - "4": {} - } - }, - "multiagent_cooking_5_1_beetroot_soup_1_golden_carrot_1_mushroom_stew_1_pumpkin_pie_1_suspicious_stew_blocked_access_0_1_2_3_4": { - "conversation": "Let's work together to make golden_carrot, beetroot_soup, mushroom_stew, suspicious_stew, pumpkin_pie.", - "agent_count": 5, - "target": { - "golden_carrot": 1, - "beetroot_soup": 1, - "mushroom_stew": 1, - "suspicious_stew": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2", - "3", - "4" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup, 1 mushroom_stew, 1 suspicious_stew, 1 pumpkin_pie. ", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup, 1 mushroom_stew, 1 suspicious_stew, 1 pumpkin_pie. ", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup, 1 mushroom_stew, 1 suspicious_stew, 1 pumpkin_pie. ", - "3": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup, 1 mushroom_stew, 1 suspicious_stew, 1 pumpkin_pie. ", - "4": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup, 1 mushroom_stew, 1 suspicious_stew, 1 pumpkin_pie. " - }, - "difficulty_metrics": { - "total_recipe_steps": 16, - "blocked_agents_count": 5, - "unique_target_items": 5, - "overall_difficulty_score": 13, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "gold_ingot": 8 - }, - "1": { - "bowl": 3 - }, - "2": { - "dandelion": 1 - }, - "3": { - "egg": 1 - }, - "4": {} - } - }, - "multiagent_cooking_5_1_cooked_chicken_1_cooked_mutton_1_cooked_rabbit_1_golden_carrot_1_pumpkin_pie": { - "conversation": "Let's work together to make cooked_rabbit, cooked_chicken, pumpkin_pie, golden_carrot, cooked_mutton.", - "agent_count": 5, - "target": { - "cooked_rabbit": 1, - "cooked_chicken": 1, - "pumpkin_pie": 1, - "golden_carrot": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken, 1 pumpkin_pie, 1 golden_carrot, 1 cooked_mutton. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken, 1 pumpkin_pie, 1 golden_carrot, 1 cooked_mutton. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken, 1 pumpkin_pie, 1 golden_carrot, 1 cooked_mutton. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "3": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken, 1 pumpkin_pie, 1 golden_carrot, 1 cooked_mutton. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "4": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken, 1 pumpkin_pie, 1 golden_carrot, 1 cooked_mutton. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 13, - "blocked_agents_count": 0, - "unique_target_items": 5, - "overall_difficulty_score": 8, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "coal": 24 - }, - "1": { - "egg": 1 - }, - "2": { - "gold_ingot": 8 - }, - "3": {}, - "4": {} - } - }, - "multiagent_cooking_5_1_cooked_mutton_1_cookie_1_pumpkin_pie_1_suspicious_stew_blocked_access_2_4": { - "conversation": "Let's work together to make pumpkin_pie, cooked_mutton, cookie, suspicious_stew.", - "agent_count": 5, - "target": { - "pumpkin_pie": 1, - "cooked_mutton": 1, - "cookie": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [ - "2", - "4" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_mutton, 1 cookie, 1 suspicious_stew. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_mutton, 1 cookie, 1 suspicious_stew. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_mutton, 1 cookie, 1 suspicious_stew. ", - "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_mutton, 1 cookie, 1 suspicious_stew. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "4": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_mutton, 1 cookie, 1 suspicious_stew. " - }, - "difficulty_metrics": { - "total_recipe_steps": 12, - "blocked_agents_count": 2, - "unique_target_items": 4, - "overall_difficulty_score": 9, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "egg": 1 - }, - "1": { - "coal": 8 - }, - "2": { - "cocoa_beans": 1 - }, - "3": { - "bowl": 1 - }, - "4": { - "dandelion": 1 - } - } - }, - "multiagent_cooking_5_1_beetroot_soup_1_cooked_porkchop_1_cooked_rabbit_1_mushroom_stew_1_suspicious_stew": { - "conversation": "Let's work together to make cooked_porkchop, mushroom_stew, beetroot_soup, cooked_rabbit, suspicious_stew.", - "agent_count": 5, - "target": { - "cooked_porkchop": 1, - "mushroom_stew": 1, - "beetroot_soup": 1, - "cooked_rabbit": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew, 1 beetroot_soup, 1 cooked_rabbit, 1 suspicious_stew. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew, 1 beetroot_soup, 1 cooked_rabbit, 1 suspicious_stew. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew, 1 beetroot_soup, 1 cooked_rabbit, 1 suspicious_stew. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "3": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew, 1 beetroot_soup, 1 cooked_rabbit, 1 suspicious_stew. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "4": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew, 1 beetroot_soup, 1 cooked_rabbit, 1 suspicious_stew. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 13, - "blocked_agents_count": 0, - "unique_target_items": 5, - "overall_difficulty_score": 8, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": { - "bowl": 3 - }, - "2": { - "dandelion": 1 - }, - "3": {}, - "4": {} - } - }, - "multiagent_cooking_5_1_beetroot_soup_1_cooked_mutton_1_cookie_1_mushroom_stew_1_pumpkin_pie": { - "conversation": "Let's work together to make cooked_mutton, beetroot_soup, cookie, pumpkin_pie, mushroom_stew.", - "agent_count": 5, - "target": { - "cooked_mutton": 1, - "beetroot_soup": 1, - "cookie": 1, - "pumpkin_pie": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup, 1 cookie, 1 pumpkin_pie, 1 mushroom_stew. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup, 1 cookie, 1 pumpkin_pie, 1 mushroom_stew. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup, 1 cookie, 1 pumpkin_pie, 1 mushroom_stew. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "3": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup, 1 cookie, 1 pumpkin_pie, 1 mushroom_stew. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "4": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup, 1 cookie, 1 pumpkin_pie, 1 mushroom_stew. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 15, - "blocked_agents_count": 0, - "unique_target_items": 5, - "overall_difficulty_score": 8, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "coal": 8 - }, - "1": { - "bowl": 2 - }, - "2": { - "cocoa_beans": 1 - }, - "3": { - "egg": 1 - }, - "4": {} - } - }, - "multiagent_cooking_5_1_beetroot_soup_1_cooked_mutton_1_cooked_porkchop_1_cooked_rabbit_1_cookie": { - "conversation": "Let's work together to make beetroot_soup, cookie, cooked_rabbit, cooked_porkchop, cooked_mutton.", - "agent_count": 5, - "target": { - "beetroot_soup": 1, - "cookie": 1, - "cooked_rabbit": 1, - "cooked_porkchop": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie, 1 cooked_rabbit, 1 cooked_porkchop, 1 cooked_mutton. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie, 1 cooked_rabbit, 1 cooked_porkchop, 1 cooked_mutton. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie, 1 cooked_rabbit, 1 cooked_porkchop, 1 cooked_mutton. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "3": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie, 1 cooked_rabbit, 1 cooked_porkchop, 1 cooked_mutton. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "4": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie, 1 cooked_rabbit, 1 cooked_porkchop, 1 cooked_mutton. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 12, - "blocked_agents_count": 0, - "unique_target_items": 5, - "overall_difficulty_score": 8, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "cocoa_beans": 1 - }, - "2": { - "coal": 24 - }, - "3": {}, - "4": {} - } - }, - "multiagent_cooking_5_1_beetroot_soup_1_cooked_chicken_1_cooked_porkchop_1_golden_carrot": { - "conversation": "Let's work together to make cooked_porkchop, beetroot_soup, golden_carrot, cooked_chicken.", - "agent_count": 5, - "target": { - "cooked_porkchop": 1, - "beetroot_soup": 1, - "golden_carrot": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 beetroot_soup, 1 golden_carrot, 1 cooked_chicken. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 beetroot_soup, 1 golden_carrot, 1 cooked_chicken. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 beetroot_soup, 1 golden_carrot, 1 cooked_chicken. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "3": "Collaborate with agents around you to make 1 cooked_porkchop, 1 beetroot_soup, 1 golden_carrot, 1 cooked_chicken. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "4": "Collaborate with agents around you to make 1 cooked_porkchop, 1 beetroot_soup, 1 golden_carrot, 1 cooked_chicken. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 10, - "blocked_agents_count": 0, - "unique_target_items": 4, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": { - "bowl": 1 - }, - "2": { - "gold_ingot": 8 - }, - "3": {}, - "4": {} - } - }, - "multiagent_cooking_5_1_beetroot_soup_1_cooked_mutton_1_cooked_rabbit_1_golden_carrot_1_mushroom_stew_blocked_access_0_1_2_3_4": { - "conversation": "Let's work together to make beetroot_soup, mushroom_stew, golden_carrot, cooked_mutton, cooked_rabbit.", - "agent_count": 5, - "target": { - "beetroot_soup": 1, - "mushroom_stew": 1, - "golden_carrot": 1, - "cooked_mutton": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2", - "3", - "4" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 mushroom_stew, 1 golden_carrot, 1 cooked_mutton, 1 cooked_rabbit. ", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 mushroom_stew, 1 golden_carrot, 1 cooked_mutton, 1 cooked_rabbit. ", - "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 mushroom_stew, 1 golden_carrot, 1 cooked_mutton, 1 cooked_rabbit. ", - "3": "Collaborate with agents around you to make 1 beetroot_soup, 1 mushroom_stew, 1 golden_carrot, 1 cooked_mutton, 1 cooked_rabbit. ", - "4": "Collaborate with agents around you to make 1 beetroot_soup, 1 mushroom_stew, 1 golden_carrot, 1 cooked_mutton, 1 cooked_rabbit. " - }, - "difficulty_metrics": { - "total_recipe_steps": 13, - "blocked_agents_count": 5, - "unique_target_items": 5, - "overall_difficulty_score": 13, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "bowl": 2 - }, - "1": { - "gold_ingot": 8 - }, - "2": { - "coal": 16 - }, - "3": {}, - "4": {} - } - }, - "multiagent_cooking_5_1_cooked_rabbit_1_golden_carrot_1_mushroom_stew_1_pumpkin_pie": { - "conversation": "Let's work together to make cooked_rabbit, mushroom_stew, pumpkin_pie, golden_carrot.", - "agent_count": 5, - "target": { - "cooked_rabbit": 1, - "mushroom_stew": 1, - "pumpkin_pie": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew, 1 pumpkin_pie, 1 golden_carrot. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew, 1 pumpkin_pie, 1 golden_carrot. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew, 1 pumpkin_pie, 1 golden_carrot. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "3": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew, 1 pumpkin_pie, 1 golden_carrot. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "4": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew, 1 pumpkin_pie, 1 golden_carrot. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 12, - "blocked_agents_count": 0, - "unique_target_items": 4, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "coal": 8 - }, - "1": { - "bowl": 1 - }, - "2": { - "egg": 1 - }, - "3": { - "gold_ingot": 8 - }, - "4": {} - } - }, - "multiagent_cooking_5_1_beetroot_soup_1_cooked_rabbit_1_cookie_1_mushroom_stew_blocked_access_0_1_2_3_4": { - "conversation": "Let's work together to make beetroot_soup, mushroom_stew, cookie, cooked_rabbit.", - "agent_count": 5, - "target": { - "beetroot_soup": 1, - "mushroom_stew": 1, - "cookie": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2", - "3", - "4" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 mushroom_stew, 1 cookie, 1 cooked_rabbit. ", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 mushroom_stew, 1 cookie, 1 cooked_rabbit. ", - "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 mushroom_stew, 1 cookie, 1 cooked_rabbit. ", - "3": "Collaborate with agents around you to make 1 beetroot_soup, 1 mushroom_stew, 1 cookie, 1 cooked_rabbit. ", - "4": "Collaborate with agents around you to make 1 beetroot_soup, 1 mushroom_stew, 1 cookie, 1 cooked_rabbit. " - }, - "difficulty_metrics": { - "total_recipe_steps": 11, - "blocked_agents_count": 5, - "unique_target_items": 4, - "overall_difficulty_score": 12, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "bowl": 2 - }, - "1": { - "cocoa_beans": 1 - }, - "2": { - "coal": 8 - }, - "3": {}, - "4": {} - } - }, - "multiagent_cooking_5_1_cooked_chicken_1_cooked_rabbit_1_cookie_1_pumpkin_pie_blocked_access_1_3": { - "conversation": "Let's work together to make cookie, cooked_rabbit, pumpkin_pie, cooked_chicken.", - "agent_count": 5, - "target": { - "cookie": 1, - "cooked_rabbit": 1, - "pumpkin_pie": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [ - "3", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit, 1 pumpkin_pie, 1 cooked_chicken. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit, 1 pumpkin_pie, 1 cooked_chicken. ", - "2": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit, 1 pumpkin_pie, 1 cooked_chicken. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "3": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit, 1 pumpkin_pie, 1 cooked_chicken. ", - "4": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit, 1 pumpkin_pie, 1 cooked_chicken. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 11, - "blocked_agents_count": 2, - "unique_target_items": 4, - "overall_difficulty_score": 9, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "cocoa_beans": 1 - }, - "1": { - "coal": 16 - }, - "2": { - "egg": 1 - }, - "3": {}, - "4": {} - } - }, - "multiagent_cooking_5_1_cooked_porkchop_1_cooked_rabbit_1_cookie_1_mushroom_stew_blocked_access_1_4": { - "conversation": "Let's work together to make cookie, mushroom_stew, cooked_rabbit, cooked_porkchop.", - "agent_count": 5, - "target": { - "cookie": 1, - "mushroom_stew": 1, - "cooked_rabbit": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [ - "4", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew, 1 cooked_rabbit, 1 cooked_porkchop. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "1": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew, 1 cooked_rabbit, 1 cooked_porkchop. ", - "2": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew, 1 cooked_rabbit, 1 cooked_porkchop. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "3": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew, 1 cooked_rabbit, 1 cooked_porkchop. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "4": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew, 1 cooked_rabbit, 1 cooked_porkchop. " - }, - "difficulty_metrics": { - "total_recipe_steps": 10, - "blocked_agents_count": 2, - "unique_target_items": 4, - "overall_difficulty_score": 9, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "cocoa_beans": 1 - }, - "1": { - "bowl": 1 - }, - "2": { - "coal": 16 - }, - "3": {}, - "4": {} - } - }, - "multiagent_cooking_5_1_cooked_chicken_1_cooked_mutton_1_golden_carrot_1_suspicious_stew_blocked_access_2_3": { - "conversation": "Let's work together to make golden_carrot, suspicious_stew, cooked_mutton, cooked_chicken.", - "agent_count": 5, - "target": { - "golden_carrot": 1, - "suspicious_stew": 1, - "cooked_mutton": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [ - "3", - "2" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_mutton, 1 cooked_chicken. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_mutton, 1 cooked_chicken. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_mutton, 1 cooked_chicken. ", - "3": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_mutton, 1 cooked_chicken. ", - "4": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_mutton, 1 cooked_chicken. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 10, - "blocked_agents_count": 2, - "unique_target_items": 4, - "overall_difficulty_score": 9, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "gold_ingot": 8 - }, - "1": { - "bowl": 1 - }, - "2": { - "dandelion": 1 - }, - "3": { - "coal": 16 - }, - "4": {} - } - }, - "multiagent_cooking_5_1_beetroot_soup_1_cooked_chicken_1_cooked_porkchop_1_cooked_rabbit_1_pumpkin_pie_blocked_access_0_4": { - "conversation": "Let's work together to make beetroot_soup, cooked_porkchop, pumpkin_pie, cooked_chicken, cooked_rabbit.", - "agent_count": 5, - "target": { - "beetroot_soup": 1, - "cooked_porkchop": 1, - "pumpkin_pie": 1, - "cooked_chicken": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [ - "0", - "4" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop, 1 pumpkin_pie, 1 cooked_chicken, 1 cooked_rabbit. ", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop, 1 pumpkin_pie, 1 cooked_chicken, 1 cooked_rabbit. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop, 1 pumpkin_pie, 1 cooked_chicken, 1 cooked_rabbit. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "3": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop, 1 pumpkin_pie, 1 cooked_chicken, 1 cooked_rabbit. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", - "4": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop, 1 pumpkin_pie, 1 cooked_chicken, 1 cooked_rabbit. " - }, - "difficulty_metrics": { - "total_recipe_steps": 13, - "blocked_agents_count": 2, - "unique_target_items": 5, - "overall_difficulty_score": 10, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "coal": 24 - }, - "2": { - "egg": 1 - }, - "3": {}, - "4": {} - } - }, - "multiagent_cooking_5_1_beetroot_soup_1_cooked_mutton_1_cooked_porkchop_1_cooked_rabbit_1_suspicious_stew": { - "conversation": "Let's work together to make cooked_mutton, cooked_rabbit, suspicious_stew, beetroot_soup, cooked_porkchop.", - "agent_count": 5, - "target": { - "cooked_mutton": 1, - "cooked_rabbit": 1, - "suspicious_stew": 1, - "beetroot_soup": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 suspicious_stew, 1 beetroot_soup, 1 cooked_porkchop. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 suspicious_stew, 1 beetroot_soup, 1 cooked_porkchop. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 suspicious_stew, 1 beetroot_soup, 1 cooked_porkchop. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "3": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 suspicious_stew, 1 beetroot_soup, 1 cooked_porkchop. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "4": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 suspicious_stew, 1 beetroot_soup, 1 cooked_porkchop. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 12, - "blocked_agents_count": 0, - "unique_target_items": 5, - "overall_difficulty_score": 8, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "coal": 24 - }, - "1": { - "bowl": 2 - }, - "2": { - "dandelion": 1 - }, - "3": {}, - "4": {} - } - }, - "multiagent_cooking_5_1_beetroot_soup_1_cooked_rabbit_1_cookie_1_pumpkin_pie": { - "conversation": "Let's work together to make pumpkin_pie, beetroot_soup, cooked_rabbit, cookie.", - "agent_count": 5, - "target": { - "pumpkin_pie": 1, - "beetroot_soup": 1, - "cooked_rabbit": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 beetroot_soup, 1 cooked_rabbit, 1 cookie. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 beetroot_soup, 1 cooked_rabbit, 1 cookie. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 beetroot_soup, 1 cooked_rabbit, 1 cookie. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 beetroot_soup, 1 cooked_rabbit, 1 cookie. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "4": "Collaborate with agents around you to make 1 pumpkin_pie, 1 beetroot_soup, 1 cooked_rabbit, 1 cookie. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 12, - "blocked_agents_count": 0, - "unique_target_items": 4, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "egg": 1 - }, - "1": { - "bowl": 1 - }, - "2": { - "coal": 8 - }, - "3": { - "cocoa_beans": 1 - }, - "4": {} - } - }, - "multiagent_cooking_5_1_cooked_porkchop_1_cooked_rabbit_1_mushroom_stew_1_suspicious_stew_blocked_access_0_1_2_3_4": { - "conversation": "Let's work together to make cooked_rabbit, cooked_porkchop, mushroom_stew, suspicious_stew.", - "agent_count": 5, - "target": { - "cooked_rabbit": 1, - "cooked_porkchop": 1, - "mushroom_stew": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2", - "3", - "4" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 mushroom_stew, 1 suspicious_stew. ", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 mushroom_stew, 1 suspicious_stew. ", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 mushroom_stew, 1 suspicious_stew. ", - "3": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 mushroom_stew, 1 suspicious_stew. ", - "4": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 mushroom_stew, 1 suspicious_stew. " - }, - "difficulty_metrics": { - "total_recipe_steps": 10, - "blocked_agents_count": 5, - "unique_target_items": 4, - "overall_difficulty_score": 12, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": { - "bowl": 2 - }, - "2": { - "dandelion": 1 - }, - "3": {}, - "4": {} - } - }, - "multiagent_cooking_5_1_cooked_chicken_1_cooked_mutton_1_cooked_rabbit_1_golden_carrot": { - "conversation": "Let's work together to make cooked_chicken, golden_carrot, cooked_rabbit, cooked_mutton.", - "agent_count": 5, - "target": { - "cooked_chicken": 1, - "golden_carrot": 1, - "cooked_rabbit": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cooked_rabbit, 1 cooked_mutton. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cooked_rabbit, 1 cooked_mutton. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cooked_rabbit, 1 cooked_mutton. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cooked_rabbit, 1 cooked_mutton. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "4": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cooked_rabbit, 1 cooked_mutton. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 9, - "blocked_agents_count": 0, - "unique_target_items": 4, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "coal": 24 - }, - "1": { - "gold_ingot": 8 - }, - "2": {}, - "3": {}, - "4": {} - } - }, - "multiagent_cooking_5_1_beetroot_soup_1_cookie_1_pumpkin_pie_1_suspicious_stew_blocked_access_1_4": { - "conversation": "Let's work together to make pumpkin_pie, beetroot_soup, suspicious_stew, cookie.", - "agent_count": 5, - "target": { - "pumpkin_pie": 1, - "beetroot_soup": 1, - "suspicious_stew": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [ - "1", - "4" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 beetroot_soup, 1 suspicious_stew, 1 cookie. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 beetroot_soup, 1 suspicious_stew, 1 cookie. ", - "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 beetroot_soup, 1 suspicious_stew, 1 cookie. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 beetroot_soup, 1 suspicious_stew, 1 cookie. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "4": "Collaborate with agents around you to make 1 pumpkin_pie, 1 beetroot_soup, 1 suspicious_stew, 1 cookie. " - }, - "difficulty_metrics": { - "total_recipe_steps": 13, - "blocked_agents_count": 2, - "unique_target_items": 4, - "overall_difficulty_score": 9, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "egg": 1 - }, - "1": { - "bowl": 2 - }, - "2": { - "dandelion": 1 - }, - "3": { - "cocoa_beans": 1 - }, - "4": {} - } - }, - "multiagent_cooking_5_1_beetroot_soup_1_cooked_mutton_1_golden_carrot_1_pumpkin_pie_1_suspicious_stew_blocked_access_0_1": { - "conversation": "Let's work together to make suspicious_stew, golden_carrot, beetroot_soup, cooked_mutton, pumpkin_pie.", - "agent_count": 5, - "target": { - "suspicious_stew": 1, - "golden_carrot": 1, - "beetroot_soup": 1, - "cooked_mutton": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 golden_carrot, 1 beetroot_soup, 1 cooked_mutton, 1 pumpkin_pie. ", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 golden_carrot, 1 beetroot_soup, 1 cooked_mutton, 1 pumpkin_pie. ", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 golden_carrot, 1 beetroot_soup, 1 cooked_mutton, 1 pumpkin_pie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 golden_carrot, 1 beetroot_soup, 1 cooked_mutton, 1 pumpkin_pie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", - "4": "Collaborate with agents around you to make 1 suspicious_stew, 1 golden_carrot, 1 beetroot_soup, 1 cooked_mutton, 1 pumpkin_pie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 15, - "blocked_agents_count": 2, - "unique_target_items": 5, - "overall_difficulty_score": 10, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "bowl": 2 - }, - "1": { - "dandelion": 1 - }, - "2": { - "gold_ingot": 8 - }, - "3": { - "coal": 8 - }, - "4": { - "egg": 1 - } - } - }, - "multiagent_cooking_5_1_cooked_mutton_1_cooked_rabbit_1_golden_carrot_1_mushroom_stew_1_suspicious_stew": { - "conversation": "Let's work together to make cooked_rabbit, golden_carrot, mushroom_stew, suspicious_stew, cooked_mutton.", - "agent_count": 5, - "target": { - "cooked_rabbit": 1, - "golden_carrot": 1, - "mushroom_stew": 1, - "suspicious_stew": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot, 1 mushroom_stew, 1 suspicious_stew, 1 cooked_mutton. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot, 1 mushroom_stew, 1 suspicious_stew, 1 cooked_mutton. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot, 1 mushroom_stew, 1 suspicious_stew, 1 cooked_mutton. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "3": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot, 1 mushroom_stew, 1 suspicious_stew, 1 cooked_mutton. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "4": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot, 1 mushroom_stew, 1 suspicious_stew, 1 cooked_mutton. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 13, - "blocked_agents_count": 0, - "unique_target_items": 5, - "overall_difficulty_score": 8, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": { - "gold_ingot": 8 - }, - "2": { - "bowl": 2 - }, - "3": { - "dandelion": 1 - }, - "4": {} - } - }, - "multiagent_cooking_5_1_cooked_chicken_1_cooked_rabbit_1_golden_carrot_1_mushroom_stew_1_suspicious_stew_blocked_access_0_1_2_3_4": { - "conversation": "Let's work together to make cooked_rabbit, suspicious_stew, mushroom_stew, golden_carrot, cooked_chicken.", - "agent_count": 5, - "target": { - "cooked_rabbit": 1, - "suspicious_stew": 1, - "mushroom_stew": 1, - "golden_carrot": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2", - "3", - "4" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew, 1 mushroom_stew, 1 golden_carrot, 1 cooked_chicken. ", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew, 1 mushroom_stew, 1 golden_carrot, 1 cooked_chicken. ", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew, 1 mushroom_stew, 1 golden_carrot, 1 cooked_chicken. ", - "3": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew, 1 mushroom_stew, 1 golden_carrot, 1 cooked_chicken. ", - "4": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew, 1 mushroom_stew, 1 golden_carrot, 1 cooked_chicken. " - }, - "difficulty_metrics": { - "total_recipe_steps": 13, - "blocked_agents_count": 5, - "unique_target_items": 5, - "overall_difficulty_score": 13, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": { - "bowl": 2 - }, - "2": { - "dandelion": 1 - }, - "3": { - "gold_ingot": 8 - }, - "4": {} - } - }, - "multiagent_cooking_5_1_cooked_mutton_1_cookie_1_golden_carrot_1_mushroom_stew": { - "conversation": "Let's work together to make golden_carrot, cooked_mutton, mushroom_stew, cookie.", - "agent_count": 5, - "target": { - "golden_carrot": 1, - "cooked_mutton": 1, - "mushroom_stew": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton, 1 mushroom_stew, 1 cookie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton, 1 mushroom_stew, 1 cookie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton, 1 mushroom_stew, 1 cookie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "3": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton, 1 mushroom_stew, 1 cookie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "4": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton, 1 mushroom_stew, 1 cookie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 11, - "blocked_agents_count": 0, - "unique_target_items": 4, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "gold_ingot": 8 - }, - "1": { - "coal": 8 - }, - "2": { - "bowl": 1 - }, - "3": { - "cocoa_beans": 1 - }, - "4": {} - } - }, - "multiagent_cooking_5_1_cooked_chicken_1_cooked_rabbit_1_cookie_1_golden_carrot_blocked_access_0_1_2_3_4": { - "conversation": "Let's work together to make cooked_chicken, cooked_rabbit, golden_carrot, cookie.", - "agent_count": 5, - "target": { - "cooked_chicken": 1, - "cooked_rabbit": 1, - "golden_carrot": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2", - "3", - "4" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 golden_carrot, 1 cookie. ", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 golden_carrot, 1 cookie. ", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 golden_carrot, 1 cookie. ", - "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 golden_carrot, 1 cookie. ", - "4": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 golden_carrot, 1 cookie. " - }, - "difficulty_metrics": { - "total_recipe_steps": 10, - "blocked_agents_count": 5, - "unique_target_items": 4, - "overall_difficulty_score": 12, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": { - "gold_ingot": 8 - }, - "2": { - "cocoa_beans": 1 - }, - "3": {}, - "4": {} - } - }, - "multiagent_cooking_5_1_cooked_chicken_1_cookie_1_mushroom_stew_1_suspicious_stew_blocked_access_0_2": { - "conversation": "Let's work together to make mushroom_stew, suspicious_stew, cooked_chicken, cookie.", - "agent_count": 5, - "target": { - "mushroom_stew": 1, - "suspicious_stew": 1, - "cooked_chicken": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [ - "2", - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 cooked_chicken, 1 cookie. ", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 cooked_chicken, 1 cookie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 cooked_chicken, 1 cookie. ", - "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 cooked_chicken, 1 cookie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "4": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 cooked_chicken, 1 cookie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 11, - "blocked_agents_count": 2, - "unique_target_items": 4, - "overall_difficulty_score": 9, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "bowl": 2 - }, - "1": { - "dandelion": 1 - }, - "2": { - "coal": 8 - }, - "3": { - "cocoa_beans": 1 - }, - "4": {} - } - }, - "multiagent_cooking_5_1_beetroot_soup_1_cooked_chicken_1_golden_carrot_1_pumpkin_pie_1_suspicious_stew": { - "conversation": "Let's work together to make beetroot_soup, suspicious_stew, golden_carrot, pumpkin_pie, cooked_chicken.", - "agent_count": 5, - "target": { - "beetroot_soup": 1, - "suspicious_stew": 1, - "golden_carrot": 1, - "pumpkin_pie": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 suspicious_stew, 1 golden_carrot, 1 pumpkin_pie, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 suspicious_stew, 1 golden_carrot, 1 pumpkin_pie, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 suspicious_stew, 1 golden_carrot, 1 pumpkin_pie, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "3": "Collaborate with agents around you to make 1 beetroot_soup, 1 suspicious_stew, 1 golden_carrot, 1 pumpkin_pie, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "4": "Collaborate with agents around you to make 1 beetroot_soup, 1 suspicious_stew, 1 golden_carrot, 1 pumpkin_pie, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 15, - "blocked_agents_count": 0, - "unique_target_items": 5, - "overall_difficulty_score": 8, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "bowl": 2 - }, - "1": { - "dandelion": 1 - }, - "2": { - "gold_ingot": 8 - }, - "3": { - "egg": 1 - }, - "4": { - "coal": 8 - } - } - }, - "multiagent_cooking_5_1_beetroot_soup_1_cooked_chicken_1_cooked_porkchop_1_golden_carrot_1_suspicious_stew_blocked_access_0_1_2_3_4": { - "conversation": "Let's work together to make suspicious_stew, cooked_chicken, cooked_porkchop, beetroot_soup, golden_carrot.", - "agent_count": 5, - "target": { - "suspicious_stew": 1, - "cooked_chicken": 1, - "cooked_porkchop": 1, - "beetroot_soup": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2", - "3", - "4" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_porkchop, 1 beetroot_soup, 1 golden_carrot. ", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_porkchop, 1 beetroot_soup, 1 golden_carrot. ", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_porkchop, 1 beetroot_soup, 1 golden_carrot. ", - "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_porkchop, 1 beetroot_soup, 1 golden_carrot. ", - "4": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_porkchop, 1 beetroot_soup, 1 golden_carrot. " - }, - "difficulty_metrics": { - "total_recipe_steps": 13, - "blocked_agents_count": 5, - "unique_target_items": 5, - "overall_difficulty_score": 13, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "bowl": 2 - }, - "1": { - "dandelion": 1 - }, - "2": { - "coal": 16 - }, - "3": { - "gold_ingot": 8 - }, - "4": {} - } - }, - "multiagent_cooking_5_1_cooked_chicken_1_cookie_1_golden_carrot_1_mushroom_stew_blocked_access_2_3": { - "conversation": "Let's work together to make mushroom_stew, golden_carrot, cooked_chicken, cookie.", - "agent_count": 5, - "target": { - "mushroom_stew": 1, - "golden_carrot": 1, - "cooked_chicken": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [ - "2", - "3" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 cooked_chicken, 1 cookie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 cooked_chicken, 1 cookie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 cooked_chicken, 1 cookie. ", - "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 cooked_chicken, 1 cookie. ", - "4": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 cooked_chicken, 1 cookie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 11, - "blocked_agents_count": 2, - "unique_target_items": 4, - "overall_difficulty_score": 9, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "gold_ingot": 8 - }, - "2": { - "coal": 8 - }, - "3": { - "cocoa_beans": 1 - }, - "4": {} - } - }, - "multiagent_cooking_5_1_beetroot_soup_1_cooked_mutton_1_cookie_1_golden_carrot_blocked_access_0_3": { - "conversation": "Let's work together to make beetroot_soup, cooked_mutton, cookie, golden_carrot.", - "agent_count": 5, - "target": { - "beetroot_soup": 1, - "cooked_mutton": 1, - "cookie": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [ - "3", - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 cookie, 1 golden_carrot. ", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 cookie, 1 golden_carrot. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 cookie, 1 golden_carrot. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", - "3": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 cookie, 1 golden_carrot. ", - "4": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 cookie, 1 golden_carrot. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 11, - "blocked_agents_count": 2, - "unique_target_items": 4, - "overall_difficulty_score": 9, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "coal": 8 - }, - "2": { - "cocoa_beans": 1 - }, - "3": { - "gold_ingot": 8 - }, - "4": {} - } - }, - "multiagent_cooking_5_1_beetroot_soup_1_cooked_chicken_1_cooked_mutton_1_suspicious_stew": { - "conversation": "Let's work together to make beetroot_soup, cooked_mutton, suspicious_stew, cooked_chicken.", - "agent_count": 5, - "target": { - "beetroot_soup": 1, - "cooked_mutton": 1, - "suspicious_stew": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 suspicious_stew, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 suspicious_stew, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 suspicious_stew, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "3": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 suspicious_stew, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "4": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 suspicious_stew, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 10, - "blocked_agents_count": 0, - "unique_target_items": 4, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "bowl": 2 - }, - "1": { - "coal": 16 - }, - "2": { - "dandelion": 1 - }, - "3": {}, - "4": {} - } - }, - "multiagent_cooking_5_1_beetroot_soup_1_cooked_chicken_1_cooked_porkchop_1_cooked_rabbit_1_cookie_blocked_access_0_1_2_3_4": { - "conversation": "Let's work together to make cooked_porkchop, beetroot_soup, cooked_chicken, cookie, cooked_rabbit.", - "agent_count": 5, - "target": { - "cooked_porkchop": 1, - "beetroot_soup": 1, - "cooked_chicken": 1, - "cookie": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2", - "3", - "4" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 beetroot_soup, 1 cooked_chicken, 1 cookie, 1 cooked_rabbit. ", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 beetroot_soup, 1 cooked_chicken, 1 cookie, 1 cooked_rabbit. ", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 beetroot_soup, 1 cooked_chicken, 1 cookie, 1 cooked_rabbit. ", - "3": "Collaborate with agents around you to make 1 cooked_porkchop, 1 beetroot_soup, 1 cooked_chicken, 1 cookie, 1 cooked_rabbit. ", - "4": "Collaborate with agents around you to make 1 cooked_porkchop, 1 beetroot_soup, 1 cooked_chicken, 1 cookie, 1 cooked_rabbit. " - }, - "difficulty_metrics": { - "total_recipe_steps": 12, - "blocked_agents_count": 5, - "unique_target_items": 5, - "overall_difficulty_score": 13, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "coal": 24 - }, - "1": { - "bowl": 1 - }, - "2": { - "cocoa_beans": 1 - }, - "3": {}, - "4": {} - } - }, - "multiagent_cooking_5_1_cooked_chicken_1_cooked_mutton_1_cooked_rabbit_1_mushroom_stew_1_pumpkin_pie": { - "conversation": "Let's work together to make cooked_rabbit, pumpkin_pie, cooked_mutton, cooked_chicken, mushroom_stew.", - "agent_count": 5, - "target": { - "cooked_rabbit": 1, - "pumpkin_pie": 1, - "cooked_mutton": 1, - "cooked_chicken": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie, 1 cooked_mutton, 1 cooked_chicken, 1 mushroom_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie, 1 cooked_mutton, 1 cooked_chicken, 1 mushroom_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie, 1 cooked_mutton, 1 cooked_chicken, 1 mushroom_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "3": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie, 1 cooked_mutton, 1 cooked_chicken, 1 mushroom_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", - "4": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie, 1 cooked_mutton, 1 cooked_chicken, 1 mushroom_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 13, - "blocked_agents_count": 0, - "unique_target_items": 5, - "overall_difficulty_score": 8, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "coal": 24 - }, - "1": { - "egg": 1 - }, - "2": { - "bowl": 1 - }, - "3": {}, - "4": {} - } - }, - "multiagent_cooking_5_1_cooked_mutton_1_cooked_porkchop_1_cookie_1_mushroom_stew_1_suspicious_stew": { - "conversation": "Let's work together to make mushroom_stew, cooked_mutton, suspicious_stew, cookie, cooked_porkchop.", - "agent_count": 5, - "target": { - "mushroom_stew": 1, - "cooked_mutton": 1, - "suspicious_stew": 1, - "cookie": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 suspicious_stew, 1 cookie, 1 cooked_porkchop. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 suspicious_stew, 1 cookie, 1 cooked_porkchop. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 suspicious_stew, 1 cookie, 1 cooked_porkchop. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 suspicious_stew, 1 cookie, 1 cooked_porkchop. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", - "4": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 suspicious_stew, 1 cookie, 1 cooked_porkchop. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 13, - "blocked_agents_count": 0, - "unique_target_items": 5, - "overall_difficulty_score": 8, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "bowl": 2 - }, - "1": { - "coal": 16 - }, - "2": { - "dandelion": 1 - }, - "3": { - "cocoa_beans": 1 - }, - "4": {} - } - }, - "multiagent_cooking_5_1_beetroot_soup_1_cooked_chicken_1_cooked_mutton_1_cooked_porkchop_blocked_access_2_3": { - "conversation": "Let's work together to make cooked_porkchop, cooked_mutton, beetroot_soup, cooked_chicken.", - "agent_count": 5, - "target": { - "cooked_porkchop": 1, - "cooked_mutton": 1, - "beetroot_soup": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [ - "2", - "3" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton, 1 beetroot_soup, 1 cooked_chicken. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton, 1 beetroot_soup, 1 cooked_chicken. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton, 1 beetroot_soup, 1 cooked_chicken. ", - "3": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton, 1 beetroot_soup, 1 cooked_chicken. ", - "4": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton, 1 beetroot_soup, 1 cooked_chicken. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 9, - "blocked_agents_count": 2, - "unique_target_items": 4, - "overall_difficulty_score": 9, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "coal": 24 - }, - "1": { - "bowl": 1 - }, - "2": {}, - "3": {}, - "4": {} - } - }, - "multiagent_cooking_5_1_beetroot_soup_1_cooked_mutton_1_cooked_rabbit_1_cookie_1_suspicious_stew_blocked_access_0_3": { - "conversation": "Let's work together to make cookie, cooked_rabbit, beetroot_soup, cooked_mutton, suspicious_stew.", - "agent_count": 5, - "target": { - "cookie": 1, - "cooked_rabbit": 1, - "beetroot_soup": 1, - "cooked_mutton": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl and 1 dandelion", - "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [ - "3", - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit, 1 beetroot_soup, 1 cooked_mutton, 1 suspicious_stew. ", - "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit, 1 beetroot_soup, 1 cooked_mutton, 1 suspicious_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "2": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit, 1 beetroot_soup, 1 cooked_mutton, 1 suspicious_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", - "3": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit, 1 beetroot_soup, 1 cooked_mutton, 1 suspicious_stew. ", - "4": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit, 1 beetroot_soup, 1 cooked_mutton, 1 suspicious_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 13, - "blocked_agents_count": 2, - "unique_target_items": 5, - "overall_difficulty_score": 10, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "cocoa_beans": 1 - }, - "1": { - "coal": 16 - }, - "2": { - "bowl": 2 - }, - "3": { - "dandelion": 1 - }, - "4": {} - } - }, - "multiagent_cooking_5_1_cooked_porkchop_1_cookie_1_mushroom_stew_1_pumpkin_pie": { - "conversation": "Let's work together to make mushroom_stew, cooked_porkchop, pumpkin_pie, cookie.", - "agent_count": 5, - "target": { - "mushroom_stew": 1, - "cooked_porkchop": 1, - "pumpkin_pie": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop, 1 pumpkin_pie, 1 cookie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop, 1 pumpkin_pie, 1 cookie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop, 1 pumpkin_pie, 1 cookie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop, 1 pumpkin_pie, 1 cookie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", - "4": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop, 1 pumpkin_pie, 1 cookie. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 12, - "blocked_agents_count": 0, - "unique_target_items": 4, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "coal": 8 - }, - "2": { - "egg": 1 - }, - "3": { - "cocoa_beans": 1 - }, - "4": {} - } - }, - "multiagent_cooking_5_1_cooked_chicken_1_cooked_porkchop_1_golden_carrot_1_mushroom_stew_1_pumpkin_pie_blocked_access_0_1_2_3_4": { - "conversation": "Let's work together to make cooked_chicken, golden_carrot, cooked_porkchop, pumpkin_pie, mushroom_stew.", - "agent_count": 5, - "target": { - "cooked_chicken": 1, - "golden_carrot": 1, - "cooked_porkchop": 1, - "pumpkin_pie": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the porkchop." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2", - "3", - "4" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cooked_porkchop, 1 pumpkin_pie, 1 mushroom_stew. ", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cooked_porkchop, 1 pumpkin_pie, 1 mushroom_stew. ", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cooked_porkchop, 1 pumpkin_pie, 1 mushroom_stew. ", - "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cooked_porkchop, 1 pumpkin_pie, 1 mushroom_stew. ", - "4": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cooked_porkchop, 1 pumpkin_pie, 1 mushroom_stew. " - }, - "difficulty_metrics": { - "total_recipe_steps": 14, - "blocked_agents_count": 5, - "unique_target_items": 5, - "overall_difficulty_score": 13, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": { - "gold_ingot": 8 - }, - "2": { - "egg": 1 - }, - "3": { - "bowl": 1 - }, - "4": {} - } - }, - "multiagent_cooking_5_1_beetroot_soup_1_cooked_chicken_1_cooked_mutton_1_golden_carrot_1_pumpkin_pie_blocked_access_0_4": { - "conversation": "Let's work together to make beetroot_soup, pumpkin_pie, cooked_mutton, golden_carrot, cooked_chicken.", - "agent_count": 5, - "target": { - "beetroot_soup": 1, - "pumpkin_pie": 1, - "cooked_mutton": 1, - "golden_carrot": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Get 1 egg from your inventory or other bots", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [ - "0", - "4" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie, 1 cooked_mutton, 1 golden_carrot, 1 cooked_chicken. ", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie, 1 cooked_mutton, 1 golden_carrot, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie, 1 cooked_mutton, 1 golden_carrot, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "3": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie, 1 cooked_mutton, 1 golden_carrot, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", - "4": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie, 1 cooked_mutton, 1 golden_carrot, 1 cooked_chicken. " - }, - "difficulty_metrics": { - "total_recipe_steps": 14, - "blocked_agents_count": 2, - "unique_target_items": 5, - "overall_difficulty_score": 10, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "bowl": 1 - }, - "1": { - "egg": 1 - }, - "2": { - "coal": 16 - }, - "3": { - "gold_ingot": 8 - }, - "4": {} - } - }, - "multiagent_cooking_5_1_beetroot_soup_1_cooked_chicken_1_cooked_mutton_1_cookie_1_golden_carrot": { - "conversation": "Let's work together to make cooked_chicken, golden_carrot, cookie, beetroot_soup, cooked_mutton.", - "agent_count": 5, - "target": { - "cooked_chicken": 1, - "golden_carrot": 1, - "cookie": 1, - "beetroot_soup": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the raw chicken." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Get 1 cocoa bean from your inventory or other agents.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: From your inventory or other agents get a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Get coal from your inventory or other agents.", - "Step 3: Put coal in the furnace", - "Step 4: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cookie, 1 beetroot_soup, 1 cooked_mutton. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cookie, 1 beetroot_soup, 1 cooked_mutton. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cookie, 1 beetroot_soup, 1 cooked_mutton. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cookie, 1 beetroot_soup, 1 cooked_mutton. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", - "4": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cookie, 1 beetroot_soup, 1 cooked_mutton. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" - }, - "difficulty_metrics": { - "total_recipe_steps": 13, - "blocked_agents_count": 0, - "unique_target_items": 5, - "overall_difficulty_score": 8, - "difficulty_category": "hard" - }, - "difficulty": "hard", - "initial_inventory": { - "0": { - "coal": 16 - }, - "1": { - "gold_ingot": 8 - }, - "2": { - "cocoa_beans": 1 - }, - "3": { - "bowl": 1 - }, - "4": {} - } - } -} \ No newline at end of file diff --git a/tasks/cooking_tasks/test_tasks/2_agent_cooking_test_tasks.json b/tasks/cooking_tasks/test_tasks/2_agent_cooking_test_tasks.json deleted file mode 100644 index 940cb92..0000000 --- a/tasks/cooking_tasks/test_tasks/2_agent_cooking_test_tasks.json +++ /dev/null @@ -1,270 +0,0 @@ -{ - "multiagent_cooking_2_1_bread_1_golden_apple": { - "conversation": "Let's work together to make golden_apple, bread.", - "agent_count": 2, - "target": { - "golden_apple": 1, - "bread": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple, 1 bread. \n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "1": "Collaborate with agents around you to make 1 golden_apple, 1 bread. \n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread." - } - }, - "multiagent_cooking_2_1_golden_apple_1_rabbit_stew": { - "conversation": "Let's work together to make golden_apple, rabbit_stew.", - "agent_count": 2, - "target": { - "golden_apple": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. \n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. \n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - } - }, - "multiagent_cooking_2_1_bread_1_cake": { - "conversation": "Let's work together to make cake, bread.", - "agent_count": 2, - "target": { - "cake": 1, - "bread": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "1": "Collaborate with agents around you to make 1 cake, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread." - } - }, - "multiagent_cooking_2_1_baked_potato_1_golden_apple": { - "conversation": "Let's work together to make baked_potato, golden_apple.", - "agent_count": 2, - "target": { - "baked_potato": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - } - }, - "multiagent_cooking_2_1_baked_potato_1_rabbit_stew": { - "conversation": "Let's work together to make baked_potato, rabbit_stew.", - "agent_count": 2, - "target": { - "baked_potato": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 rabbit_stew. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 rabbit_stew. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - } - }, - "multiagent_cooking_2_1_bread_1_rabbit_stew": { - "conversation": "Let's work together to make rabbit_stew, bread.", - "agent_count": 2, - "target": { - "rabbit_stew": 1, - "bread": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread." - } - }, - "multiagent_cooking_2_1_baked_potato_1_bread": { - "conversation": "Let's work together to make bread, baked_potato.", - "agent_count": 2, - "target": { - "bread": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "1": "Collaborate with agents around you to make 1 bread, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." - } - }, - "multiagent_cooking_2_1_baked_potato_1_cake": { - "conversation": "Let's work together to make baked_potato, cake.", - "agent_count": 2, - "target": { - "baked_potato": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 cake. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - } - }, - "multiagent_cooking_2_1_cooked_beef_1_golden_apple": { - "conversation": "Let's work together to make golden_apple, cooked_beef.", - "agent_count": 2, - "target": { - "golden_apple": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. \n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "1": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. \n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." - } - }, - "multiagent_cooking_2_1_bread_1_cooked_beef": { - "conversation": "Let's work together to make bread, cooked_beef.", - "agent_count": 2, - "target": { - "bread": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "1": "Collaborate with agents around you to make 1 bread, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." - } - } -} \ No newline at end of file diff --git a/tasks/cooking_tasks/test_tasks/3_agent_cooking_test_tasks.json b/tasks/cooking_tasks/test_tasks/3_agent_cooking_test_tasks.json deleted file mode 100644 index 805acc5..0000000 --- a/tasks/cooking_tasks/test_tasks/3_agent_cooking_test_tasks.json +++ /dev/null @@ -1,312 +0,0 @@ -{ - "multiagent_cooking_3_1_baked_potato_1_bread_1_cake": { - "conversation": "Let's work together to make bread, baked_potato, cake.", - "agent_count": 3, - "target": { - "bread": 1, - "baked_potato": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cake. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "1": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cake. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "2": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cake. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - } - }, - "multiagent_cooking_3_1_cake_1_golden_apple": { - "conversation": "Let's work together to make golden_apple, cake.", - "agent_count": 3, - "target": { - "golden_apple": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple, 1 cake. \n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "1": "Collaborate with agents around you to make 1 golden_apple, 1 cake. \n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "2": "Collaborate with agents around you to make 1 golden_apple, 1 cake. \n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - } - }, - "multiagent_cooking_3_1_baked_potato_1_cooked_beef_1_golden_apple": { - "conversation": "Let's work together to make golden_apple, cooked_beef, baked_potato.", - "agent_count": 3, - "target": { - "golden_apple": 1, - "cooked_beef": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef, 1 baked_potato. \n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "1": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef, 1 baked_potato. \n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "2": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef, 1 baked_potato. \n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." - } - }, - "multiagent_cooking_3_1_bread_1_cooked_beef_1_golden_apple": { - "conversation": "Let's work together to make cooked_beef, bread, golden_apple.", - "agent_count": 3, - "target": { - "cooked_beef": 1, - "bread": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 bread, 1 golden_apple. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 bread, 1 golden_apple. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "2": "Collaborate with agents around you to make 1 cooked_beef, 1 bread, 1 golden_apple. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - } - }, - "multiagent_cooking_3_1_baked_potato_1_cake": { - "conversation": "Let's work together to make baked_potato, cake.", - "agent_count": 3, - "target": { - "baked_potato": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 cake. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "2": "Collaborate with agents around you to make 1 baked_potato, 1 cake. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - } - }, - "multiagent_cooking_3_1_bread_1_golden_apple_1_rabbit_stew": { - "conversation": "Let's work together to make rabbit_stew, bread, golden_apple.", - "agent_count": 3, - "target": { - "rabbit_stew": 1, - "bread": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread, 1 golden_apple. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread, 1 golden_apple. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "2": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread, 1 golden_apple. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - } - }, - "multiagent_cooking_3_1_baked_potato_1_bread_1_cooked_beef": { - "conversation": "Let's work together to make bread, baked_potato, cooked_beef.", - "agent_count": 3, - "target": { - "bread": 1, - "baked_potato": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "1": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "2": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." - } - }, - "multiagent_cooking_3_1_baked_potato_1_rabbit_stew": { - "conversation": "Let's work together to make rabbit_stew, baked_potato.", - "agent_count": 3, - "target": { - "rabbit_stew": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "2": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." - } - }, - "multiagent_cooking_3_1_cake_1_cooked_beef_1_golden_apple": { - "conversation": "Let's work together to make cooked_beef, cake, golden_apple.", - "agent_count": 3, - "target": { - "cooked_beef": 1, - "cake": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 cake, 1 golden_apple. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 cake, 1 golden_apple. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "2": "Collaborate with agents around you to make 1 cooked_beef, 1 cake, 1 golden_apple. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - } - }, - "multiagent_cooking_3_1_bread_1_cooked_beef": { - "conversation": "Let's work together to make cooked_beef, bread.", - "agent_count": 3, - "target": { - "cooked_beef": 1, - "bread": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 bread. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 bread. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "2": "Collaborate with agents around you to make 1 cooked_beef, 1 bread. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread." - } - } -} \ No newline at end of file diff --git a/tasks/cooking_tasks/test_tasks/4_agent_cooking_test_tasks.json b/tasks/cooking_tasks/test_tasks/4_agent_cooking_test_tasks.json deleted file mode 100644 index 88b2d6a..0000000 --- a/tasks/cooking_tasks/test_tasks/4_agent_cooking_test_tasks.json +++ /dev/null @@ -1,397 +0,0 @@ -{ - "multiagent_cooking_4_1_bread_1_cake_1_cooked_beef": { - "conversation": "Let's work together to make cake, bread, cooked_beef.", - "agent_count": 4, - "target": { - "cake": 1, - "bread": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 bread, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "1": "Collaborate with agents around you to make 1 cake, 1 bread, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "2": "Collaborate with agents around you to make 1 cake, 1 bread, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "3": "Collaborate with agents around you to make 1 cake, 1 bread, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." - } - }, - "multiagent_cooking_4_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew": { - "conversation": "Let's work together to make rabbit_stew, cooked_beef, cake, golden_apple.", - "agent_count": 4, - "target": { - "rabbit_stew": 1, - "cooked_beef": 1, - "cake": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 cooked_beef, 1 cake, 1 golden_apple. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 cooked_beef, 1 cake, 1 golden_apple. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "2": "Collaborate with agents around you to make 1 rabbit_stew, 1 cooked_beef, 1 cake, 1 golden_apple. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "3": "Collaborate with agents around you to make 1 rabbit_stew, 1 cooked_beef, 1 cake, 1 golden_apple. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - } - }, - "multiagent_cooking_4_1_baked_potato_1_cake_1_cooked_beef_1_rabbit_stew": { - "conversation": "Let's work together to make baked_potato, rabbit_stew, cooked_beef, cake.", - "agent_count": 4, - "target": { - "baked_potato": 1, - "rabbit_stew": 1, - "cooked_beef": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 rabbit_stew, 1 cooked_beef, 1 cake. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 rabbit_stew, 1 cooked_beef, 1 cake. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "2": "Collaborate with agents around you to make 1 baked_potato, 1 rabbit_stew, 1 cooked_beef, 1 cake. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "3": "Collaborate with agents around you to make 1 baked_potato, 1 rabbit_stew, 1 cooked_beef, 1 cake. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - } - }, - "multiagent_cooking_4_1_baked_potato_1_bread_1_golden_apple_1_rabbit_stew": { - "conversation": "Let's work together to make bread, golden_apple, rabbit_stew, baked_potato.", - "agent_count": 4, - "target": { - "bread": 1, - "golden_apple": 1, - "rabbit_stew": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 golden_apple, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "1": "Collaborate with agents around you to make 1 bread, 1 golden_apple, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "2": "Collaborate with agents around you to make 1 bread, 1 golden_apple, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "3": "Collaborate with agents around you to make 1 bread, 1 golden_apple, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." - } - }, - "multiagent_cooking_4_1_cake_1_cooked_beef_1_rabbit_stew": { - "conversation": "Let's work together to make rabbit_stew, cooked_beef, cake.", - "agent_count": 4, - "target": { - "rabbit_stew": 1, - "cooked_beef": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 cooked_beef, 1 cake. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 cooked_beef, 1 cake. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "2": "Collaborate with agents around you to make 1 rabbit_stew, 1 cooked_beef, 1 cake. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "3": "Collaborate with agents around you to make 1 rabbit_stew, 1 cooked_beef, 1 cake. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - } - }, - "multiagent_cooking_4_1_baked_potato_1_bread_1_cooked_beef_1_rabbit_stew": { - "conversation": "Let's work together to make rabbit_stew, bread, baked_potato, cooked_beef.", - "agent_count": 4, - "target": { - "rabbit_stew": 1, - "bread": 1, - "baked_potato": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread, 1 baked_potato, 1 cooked_beef. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread, 1 baked_potato, 1 cooked_beef. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "2": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread, 1 baked_potato, 1 cooked_beef. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "3": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread, 1 baked_potato, 1 cooked_beef. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." - } - }, - "multiagent_cooking_4_1_baked_potato_1_cooked_beef_1_rabbit_stew": { - "conversation": "Let's work together to make rabbit_stew, cooked_beef, baked_potato.", - "agent_count": 4, - "target": { - "rabbit_stew": 1, - "cooked_beef": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 cooked_beef, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 cooked_beef, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "2": "Collaborate with agents around you to make 1 rabbit_stew, 1 cooked_beef, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "3": "Collaborate with agents around you to make 1 rabbit_stew, 1 cooked_beef, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." - } - }, - "multiagent_cooking_4_1_bread_1_cake_1_cooked_beef_1_rabbit_stew": { - "conversation": "Let's work together to make rabbit_stew, cooked_beef, cake, bread.", - "agent_count": 4, - "target": { - "rabbit_stew": 1, - "cooked_beef": 1, - "cake": 1, - "bread": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 cooked_beef, 1 cake, 1 bread. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 cooked_beef, 1 cake, 1 bread. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "2": "Collaborate with agents around you to make 1 rabbit_stew, 1 cooked_beef, 1 cake, 1 bread. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "3": "Collaborate with agents around you to make 1 rabbit_stew, 1 cooked_beef, 1 cake, 1 bread. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread." - } - }, - "multiagent_cooking_4_1_bread_1_golden_apple_1_rabbit_stew": { - "conversation": "Let's work together to make golden_apple, rabbit_stew, bread.", - "agent_count": 4, - "target": { - "golden_apple": 1, - "rabbit_stew": 1, - "bread": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew, 1 bread. \n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "1": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew, 1 bread. \n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "2": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew, 1 bread. \n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "3": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew, 1 bread. \n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread." - } - }, - "multiagent_cooking_4_1_baked_potato_1_cake_1_cooked_beef": { - "conversation": "Let's work together to make baked_potato, cooked_beef, cake.", - "agent_count": 4, - "target": { - "baked_potato": 1, - "cooked_beef": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 cooked_beef, 1 cake. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 cooked_beef, 1 cake. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "2": "Collaborate with agents around you to make 1 baked_potato, 1 cooked_beef, 1 cake. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "3": "Collaborate with agents around you to make 1 baked_potato, 1 cooked_beef, 1 cake. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - } - } -} \ No newline at end of file diff --git a/tasks/cooking_tasks/test_tasks/4_agent_cooking_test_tasks_long_timeout.json b/tasks/cooking_tasks/test_tasks/4_agent_cooking_test_tasks_long_timeout.json deleted file mode 100644 index 6545850..0000000 --- a/tasks/cooking_tasks/test_tasks/4_agent_cooking_test_tasks_long_timeout.json +++ /dev/null @@ -1,393 +0,0 @@ -{ - "multiagent_cooking_4_1_bread_1_cake_1_cooked_mutton": { - "conversation": "Let's work together to make cake, cooked_mutton, bread.", - "agent_count": 4, - "target": { - "cake": 1, - "cooked_mutton": 1, - "bread": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 cooked_mutton, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "1": "Collaborate with agents around you to make 1 cake, 1 cooked_mutton, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "2": "Collaborate with agents around you to make 1 cake, 1 cooked_mutton, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "3": "Collaborate with agents around you to make 1 cake, 1 cooked_mutton, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread." - } - }, - "multiagent_cooking_4_1_baked_potato_1_cake_1_cookie_1_rabbit_stew": { - "conversation": "Let's work together to make cake, cookie, baked_potato, rabbit_stew.", - "agent_count": 4, - "target": { - "cake": 1, - "cookie": 1, - "baked_potato": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 cookie, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 cake, 1 cookie, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "2": "Collaborate with agents around you to make 1 cake, 1 cookie, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "3": "Collaborate with agents around you to make 1 cake, 1 cookie, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - } - }, - "multiagent_cooking_4_1_cooked_mutton_1_cookie_1_rabbit_stew": { - "conversation": "Let's work together to make cookie, rabbit_stew, cooked_mutton.", - "agent_count": 4, - "target": { - "cookie": 1, - "rabbit_stew": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 rabbit_stew, 1 cooked_mutton. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "1": "Collaborate with agents around you to make 1 cookie, 1 rabbit_stew, 1 cooked_mutton. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "2": "Collaborate with agents around you to make 1 cookie, 1 rabbit_stew, 1 cooked_mutton. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "3": "Collaborate with agents around you to make 1 cookie, 1 rabbit_stew, 1 cooked_mutton. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." - } - }, - "multiagent_cooking_4_1_cooked_chicken_1_golden_carrot_1_rabbit_stew": { - "conversation": "Let's work together to make rabbit_stew, golden_carrot, cooked_chicken.", - "agent_count": 4, - "target": { - "rabbit_stew": 1, - "golden_carrot": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_carrot, 1 cooked_chicken. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_carrot, 1 cooked_chicken. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "2": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_carrot, 1 cooked_chicken. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "3": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_carrot, 1 cooked_chicken. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." - } - }, - "multiagent_cooking_4_1_cake_1_cooked_mutton_1_golden_apple": { - "conversation": "Let's work together to make cake, golden_apple, cooked_mutton.", - "agent_count": 4, - "target": { - "cake": 1, - "golden_apple": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 golden_apple, 1 cooked_mutton. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "1": "Collaborate with agents around you to make 1 cake, 1 golden_apple, 1 cooked_mutton. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "2": "Collaborate with agents around you to make 1 cake, 1 golden_apple, 1 cooked_mutton. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "3": "Collaborate with agents around you to make 1 cake, 1 golden_apple, 1 cooked_mutton. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." - } - }, - "multiagent_cooking_4_1_cake_1_cooked_porkchop_1_golden_apple_1_golden_carrot": { - "conversation": "Let's work together to make cake, golden_apple, golden_carrot, cooked_porkchop.", - "agent_count": 4, - "target": { - "cake": 1, - "golden_apple": 1, - "golden_carrot": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 golden_apple, 1 golden_carrot, 1 cooked_porkchop. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "1": "Collaborate with agents around you to make 1 cake, 1 golden_apple, 1 golden_carrot, 1 cooked_porkchop. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "2": "Collaborate with agents around you to make 1 cake, 1 golden_apple, 1 golden_carrot, 1 cooked_porkchop. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "3": "Collaborate with agents around you to make 1 cake, 1 golden_apple, 1 golden_carrot, 1 cooked_porkchop. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." - } - }, - "multiagent_cooking_4_1_beetroot_soup_1_cooked_beef_1_cookie_1_rabbit_stew": { - "conversation": "Let's work together to make beetroot_soup, rabbit_stew, cooked_beef, cookie.", - "agent_count": 4, - "target": { - "beetroot_soup": 1, - "rabbit_stew": 1, - "cooked_beef": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 rabbit_stew, 1 cooked_beef, 1 cookie. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 rabbit_stew, 1 cooked_beef, 1 cookie. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 rabbit_stew, 1 cooked_beef, 1 cookie. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "3": "Collaborate with agents around you to make 1 beetroot_soup, 1 rabbit_stew, 1 cooked_beef, 1 cookie. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - } - }, - "multiagent_cooking_4_1_cooked_mutton_1_golden_apple_1_rabbit_stew": { - "conversation": "Let's work together to make golden_apple, rabbit_stew, cooked_mutton.", - "agent_count": 4, - "target": { - "golden_apple": 1, - "rabbit_stew": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew, 1 cooked_mutton. \n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "1": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew, 1 cooked_mutton. \n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "2": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew, 1 cooked_mutton. \n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "3": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew, 1 cooked_mutton. \n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." - } - }, - "multiagent_cooking_4_1_cake_1_cooked_beef_1_mushroom_stew_1_suspicious_stew": { - "conversation": "Let's work together to make cake, mushroom_stew, suspicious_stew, cooked_beef.", - "agent_count": 4, - "target": { - "cake": 1, - "mushroom_stew": 1, - "suspicious_stew": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 mushroom_stew, 1 suspicious_stew, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "1": "Collaborate with agents around you to make 1 cake, 1 mushroom_stew, 1 suspicious_stew, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "2": "Collaborate with agents around you to make 1 cake, 1 mushroom_stew, 1 suspicious_stew, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "3": "Collaborate with agents around you to make 1 cake, 1 mushroom_stew, 1 suspicious_stew, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." - } - }, - "multiagent_cooking_4_1_cooked_rabbit_1_cookie_1_golden_carrot_1_mushroom_stew": { - "conversation": "Let's work together to make mushroom_stew, cooked_rabbit, golden_carrot, cookie.", - "agent_count": 4, - "target": { - "mushroom_stew": 1, - "cooked_rabbit": 1, - "golden_carrot": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_rabbit, 1 golden_carrot, 1 cookie. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_rabbit, 1 golden_carrot, 1 cookie. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_rabbit, 1 golden_carrot, 1 cookie. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_rabbit, 1 golden_carrot, 1 cookie. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - } - } - } \ No newline at end of file diff --git a/tasks/cooking_tasks/test_tasks/5_agent_cooking_test_tasks.json b/tasks/cooking_tasks/test_tasks/5_agent_cooking_test_tasks.json deleted file mode 100644 index 3b9dbb1..0000000 --- a/tasks/cooking_tasks/test_tasks/5_agent_cooking_test_tasks.json +++ /dev/null @@ -1,455 +0,0 @@ -{ - "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_rabbit_stew": { - "conversation": "Let's work together to make cooked_beef, baked_potato, cake, rabbit_stew.", - "agent_count": 5, - "target": { - "cooked_beef": 1, - "baked_potato": 1, - "cake": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "2": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "3": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "4": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_golden_apple_1_rabbit_stew": { - "conversation": "Let's work together to make bread, cake, golden_apple, baked_potato, rabbit_stew.", - "agent_count": 5, - "target": { - "bread": 1, - "cake": 1, - "golden_apple": 1, - "baked_potato": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "2": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "3": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "4": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_golden_apple": { - "conversation": "Let's work together to make baked_potato, bread, cooked_beef, golden_apple.", - "agent_count": 5, - "target": { - "baked_potato": 1, - "bread": 1, - "cooked_beef": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "2": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "3": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "4": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_cooked_beef_1_golden_apple": { - "conversation": "Let's work together to make cake, bread, golden_apple, baked_potato, cooked_beef.", - "agent_count": 5, - "target": { - "cake": 1, - "bread": 1, - "golden_apple": 1, - "baked_potato": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "1": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "2": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "3": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "4": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." - } - }, - "multiagent_cooking_5_1_baked_potato_1_cake_1_golden_apple_1_rabbit_stew": { - "conversation": "Let's work together to make rabbit_stew, golden_apple, cake, baked_potato.", - "agent_count": 5, - "target": { - "rabbit_stew": 1, - "golden_apple": 1, - "cake": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "2": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "3": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "4": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." - } - }, - "multiagent_cooking_5_1_bread_1_cooked_beef_1_golden_apple_1_rabbit_stew": { - "conversation": "Let's work together to make bread, rabbit_stew, golden_apple, cooked_beef.", - "agent_count": 5, - "target": { - "bread": 1, - "rabbit_stew": 1, - "golden_apple": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "1": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "2": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "3": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "4": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." - } - }, - "multiagent_cooking_5_1_bread_1_cake_1_golden_apple_1_rabbit_stew": { - "conversation": "Let's work together to make cake, rabbit_stew, golden_apple, bread.", - "agent_count": 5, - "target": { - "cake": 1, - "rabbit_stew": 1, - "golden_apple": 1, - "bread": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "1": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "2": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "3": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "4": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread." - } - }, - "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew": { - "conversation": "Let's work together to make cooked_beef, golden_apple, cake, baked_potato, rabbit_stew.", - "agent_count": 5, - "target": { - "cooked_beef": 1, - "golden_apple": 1, - "cake": 1, - "baked_potato": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "2": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "3": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "4": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - } - }, - "multiagent_cooking_5_1_bread_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew": { - "conversation": "Let's work together to make cooked_beef, golden_apple, rabbit_stew, bread, cake.", - "agent_count": 5, - "target": { - "cooked_beef": 1, - "golden_apple": 1, - "rabbit_stew": 1, - "bread": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "2": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "3": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "4": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_rabbit_stew": { - "conversation": "Let's work together to make bread, cooked_beef, rabbit_stew, baked_potato.", - "agent_count": 5, - "target": { - "bread": 1, - "cooked_beef": 1, - "rabbit_stew": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "1": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "2": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "3": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "4": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." - } - } -} \ No newline at end of file diff --git a/tasks/cooking_tasks/test_tasks/5_agent_cooking_test_tasks_long_timeout.json b/tasks/cooking_tasks/test_tasks/5_agent_cooking_test_tasks_long_timeout.json deleted file mode 100644 index 059aebc..0000000 --- a/tasks/cooking_tasks/test_tasks/5_agent_cooking_test_tasks_long_timeout.json +++ /dev/null @@ -1,455 +0,0 @@ -{ - "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_rabbit_stew": { - "conversation": "Let's work together to make cooked_beef, baked_potato, cake, rabbit_stew.", - "agent_count": 5, - "target": { - "cooked_beef": 1, - "baked_potato": 1, - "cake": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "2": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "3": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "4": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_golden_apple_1_rabbit_stew": { - "conversation": "Let's work together to make bread, cake, golden_apple, baked_potato, rabbit_stew.", - "agent_count": 5, - "target": { - "bread": 1, - "cake": 1, - "golden_apple": 1, - "baked_potato": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "2": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "3": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "4": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_golden_apple": { - "conversation": "Let's work together to make baked_potato, bread, cooked_beef, golden_apple.", - "agent_count": 5, - "target": { - "baked_potato": 1, - "bread": 1, - "cooked_beef": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "2": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "3": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "4": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_cooked_beef_1_golden_apple": { - "conversation": "Let's work together to make cake, bread, golden_apple, baked_potato, cooked_beef.", - "agent_count": 5, - "target": { - "cake": 1, - "bread": 1, - "golden_apple": 1, - "baked_potato": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "1": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "2": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "3": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "4": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." - } - }, - "multiagent_cooking_5_1_baked_potato_1_cake_1_golden_apple_1_rabbit_stew": { - "conversation": "Let's work together to make rabbit_stew, golden_apple, cake, baked_potato.", - "agent_count": 5, - "target": { - "rabbit_stew": 1, - "golden_apple": 1, - "cake": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "2": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "3": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "4": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." - } - }, - "multiagent_cooking_5_1_bread_1_cooked_beef_1_golden_apple_1_rabbit_stew": { - "conversation": "Let's work together to make bread, rabbit_stew, golden_apple, cooked_beef.", - "agent_count": 5, - "target": { - "bread": 1, - "rabbit_stew": 1, - "golden_apple": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "1": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "2": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "3": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "4": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." - } - }, - "multiagent_cooking_5_1_bread_1_cake_1_golden_apple_1_rabbit_stew": { - "conversation": "Let's work together to make cake, rabbit_stew, golden_apple, bread.", - "agent_count": 5, - "target": { - "cake": 1, - "rabbit_stew": 1, - "golden_apple": 1, - "bread": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "1": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "2": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "3": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "4": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread." - } - }, - "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew": { - "conversation": "Let's work together to make cooked_beef, golden_apple, cake, baked_potato, rabbit_stew.", - "agent_count": 5, - "target": { - "cooked_beef": 1, - "golden_apple": 1, - "cake": 1, - "baked_potato": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "2": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "3": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "4": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - } - }, - "multiagent_cooking_5_1_bread_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew": { - "conversation": "Let's work together to make cooked_beef, golden_apple, rabbit_stew, bread, cake.", - "agent_count": 5, - "target": { - "cooked_beef": 1, - "golden_apple": 1, - "rabbit_stew": 1, - "bread": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "2": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "3": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "4": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_rabbit_stew": { - "conversation": "Let's work together to make bread, cooked_beef, rabbit_stew, baked_potato.", - "agent_count": 5, - "target": { - "bread": 1, - "cooked_beef": 1, - "rabbit_stew": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "1": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "2": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "3": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "4": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." - } - } - } \ No newline at end of file diff --git a/tasks/cooking_tasks/test_tasks/hells_kitchen_test_tasks.json b/tasks/cooking_tasks/test_tasks/hells_kitchen_test_tasks.json deleted file mode 100644 index b9ce150..0000000 --- a/tasks/cooking_tasks/test_tasks/hells_kitchen_test_tasks.json +++ /dev/null @@ -1,1072 +0,0 @@ -{ - "multiagent_cooking_baked_potato_cake_hells_kitchen": { - "conversation": "We need to make baked_potato and cake together. You are supposed to make cake and I am supposed to make baked_potato, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "baked_potato", - "cake" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets (already filled with milk).", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make baked_potato, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 7, - "max_steps_per_recipe": 5, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_mutton_mushroom_stew_hells_kitchen": { - "conversation": "We need to make cooked_mutton and mushroom_stew together. You are supposed to make mushroom_stew and I am supposed to make cooked_mutton, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_mutton", - "mushroom_stew" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_mutton, but you don't have the recipe for it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make mushroom_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_mutton_cake_hells_kitchen": { - "conversation": "We need to make cooked_mutton and cake together. You are supposed to make cake and I am supposed to make cooked_mutton, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_mutton", - "cake" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets (already filled with milk).", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_mutton, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 7, - "max_steps_per_recipe": 5, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_mushroom_stew_baked_potato_hells_kitchen": { - "conversation": "We need to make mushroom_stew and baked_potato together. You are supposed to make baked_potato and I am supposed to make mushroom_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "mushroom_stew", - "baked_potato" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make mushroom_stew, but you don't have the recipe for it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make baked_potato, but you don't have the recipe for it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_golden_carrot_cooked_mutton_hells_kitchen": { - "conversation": "We need to make golden_carrot and cooked_mutton together. You are supposed to make cooked_mutton and I am supposed to make golden_carrot, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "golden_carrot", - "cooked_mutton" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_mutton, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_baked_potato_mushroom_stew_hells_kitchen": { - "conversation": "We need to make baked_potato and mushroom_stew together. You are supposed to make mushroom_stew and I am supposed to make baked_potato, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "baked_potato", - "mushroom_stew" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make baked_potato, but you don't have the recipe for it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make mushroom_stew, but you don't have the recipe for it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_bread_baked_potato_hells_kitchen": { - "conversation": "We need to make bread and baked_potato together. You are supposed to make baked_potato and I am supposed to make bread, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "bread", - "baked_potato" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make bread, but you don't have the recipe for it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make baked_potato, but you don't have the recipe for it!\n\nYour partner needs to make bread. You have their recipe:\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 4, - "max_steps_per_recipe": 2, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cake_bread_hells_kitchen": { - "conversation": "We need to make cake and bread together. You are supposed to make bread and I am supposed to make cake, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cake", - "bread" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets (already filled with milk).", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make bread. You have their recipe:\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make bread, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 7, - "max_steps_per_recipe": 5, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_bread_cake_hells_kitchen": { - "conversation": "We need to make bread and cake together. You are supposed to make cake and I am supposed to make bread, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "bread", - "cake" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets (already filled with milk).", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make bread, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make bread. You have their recipe:\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 7, - "max_steps_per_recipe": 5, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_mushroom_stew_cooked_mutton_hells_kitchen": { - "conversation": "We need to make mushroom_stew and cooked_mutton together. You are supposed to make cooked_mutton and I am supposed to make mushroom_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "mushroom_stew", - "cooked_mutton" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make mushroom_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_mutton, but you don't have the recipe for it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_mushroom_stew_cake_hells_kitchen": { - "conversation": "We need to make mushroom_stew and cake together. You are supposed to make cake and I am supposed to make mushroom_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "mushroom_stew", - "cake" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets (already filled with milk).", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make mushroom_stew, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 8, - "max_steps_per_recipe": 5, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_mushroom_stew_golden_carrot_hells_kitchen": { - "conversation": "We need to make mushroom_stew and golden_carrot together. You are supposed to make golden_carrot and I am supposed to make mushroom_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "mushroom_stew", - "golden_carrot" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make mushroom_stew, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 6, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_bread_mushroom_stew_hells_kitchen": { - "conversation": "We need to make bread and mushroom_stew together. You are supposed to make mushroom_stew and I am supposed to make bread, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "bread", - "mushroom_stew" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make bread, but you don't have the recipe for it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make mushroom_stew, but you don't have the recipe for it!\n\nYour partner needs to make bread. You have their recipe:\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_golden_carrot_cake_hells_kitchen": { - "conversation": "We need to make golden_carrot and cake together. You are supposed to make cake and I am supposed to make golden_carrot, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "golden_carrot", - "cake" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets (already filled with milk).", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 8, - "max_steps_per_recipe": 5, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_golden_carrot_bread_hells_kitchen": { - "conversation": "We need to make golden_carrot and bread together. You are supposed to make bread and I am supposed to make golden_carrot, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "golden_carrot", - "bread" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make bread. You have their recipe:\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make bread, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_baked_potato_cooked_mutton_hells_kitchen": { - "conversation": "We need to make baked_potato and cooked_mutton together. You are supposed to make cooked_mutton and I am supposed to make baked_potato, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "baked_potato", - "cooked_mutton" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make baked_potato, but you don't have the recipe for it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_mutton, but you don't have the recipe for it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 4, - "max_steps_per_recipe": 2, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cake_mushroom_stew_hells_kitchen": { - "conversation": "We need to make cake and mushroom_stew together. You are supposed to make mushroom_stew and I am supposed to make cake, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cake", - "mushroom_stew" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets (already filled with milk).", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make mushroom_stew, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 8, - "max_steps_per_recipe": 5, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_bread_cooked_mutton_hells_kitchen": { - "conversation": "We need to make bread and cooked_mutton together. You are supposed to make cooked_mutton and I am supposed to make bread, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "bread", - "cooked_mutton" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make bread, but you don't have the recipe for it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_mutton, but you don't have the recipe for it!\n\nYour partner needs to make bread. You have their recipe:\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 4, - "max_steps_per_recipe": 2, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cake_cooked_mutton_hells_kitchen": { - "conversation": "We need to make cake and cooked_mutton together. You are supposed to make cooked_mutton and I am supposed to make cake, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cake", - "cooked_mutton" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets (already filled with milk).", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_mutton, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 7, - "max_steps_per_recipe": 5, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_golden_carrot_baked_potato_hells_kitchen": { - "conversation": "We need to make golden_carrot and baked_potato together. You are supposed to make baked_potato and I am supposed to make golden_carrot, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "golden_carrot", - "baked_potato" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make baked_potato, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cake_golden_carrot_hells_kitchen": { - "conversation": "We need to make cake and golden_carrot together. You are supposed to make golden_carrot and I am supposed to make cake, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cake", - "golden_carrot" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets (already filled with milk).", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 8, - "max_steps_per_recipe": 5, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_bread_golden_carrot_hells_kitchen": { - "conversation": "We need to make bread and golden_carrot together. You are supposed to make golden_carrot and I am supposed to make bread, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "bread", - "golden_carrot" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make bread, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make bread. You have their recipe:\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_golden_carrot_mushroom_stew_hells_kitchen": { - "conversation": "We need to make golden_carrot and mushroom_stew together. You are supposed to make mushroom_stew and I am supposed to make golden_carrot, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "golden_carrot", - "mushroom_stew" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make mushroom_stew, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 6, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_mutton_baked_potato_hells_kitchen": { - "conversation": "We need to make cooked_mutton and baked_potato together. You are supposed to make baked_potato and I am supposed to make cooked_mutton, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_mutton", - "baked_potato" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_mutton, but you don't have the recipe for it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make baked_potato, but you don't have the recipe for it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 4, - "max_steps_per_recipe": 2, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_mushroom_stew_bread_hells_kitchen": { - "conversation": "We need to make mushroom_stew and bread together. You are supposed to make bread and I am supposed to make mushroom_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "mushroom_stew", - "bread" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make mushroom_stew, but you don't have the recipe for it!\n\nYour partner needs to make bread. You have their recipe:\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make bread, but you don't have the recipe for it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_baked_potato_bread_hells_kitchen": { - "conversation": "We need to make baked_potato and bread together. You are supposed to make bread and I am supposed to make baked_potato, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "baked_potato", - "bread" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make baked_potato, but you don't have the recipe for it!\n\nYour partner needs to make bread. You have their recipe:\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make bread, but you don't have the recipe for it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 4, - "max_steps_per_recipe": 2, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_mutton_golden_carrot_hells_kitchen": { - "conversation": "We need to make cooked_mutton and golden_carrot together. You are supposed to make golden_carrot and I am supposed to make cooked_mutton, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_mutton", - "golden_carrot" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_mutton, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_baked_potato_golden_carrot_hells_kitchen": { - "conversation": "We need to make baked_potato and golden_carrot together. You are supposed to make golden_carrot and I am supposed to make baked_potato, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "baked_potato", - "golden_carrot" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make baked_potato, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cake_baked_potato_hells_kitchen": { - "conversation": "We need to make cake and baked_potato together. You are supposed to make baked_potato and I am supposed to make cake, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cake", - "baked_potato" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets (already filled with milk).", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make baked_potato, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 7, - "max_steps_per_recipe": 5, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_mutton_bread_hells_kitchen": { - "conversation": "We need to make cooked_mutton and bread together. You are supposed to make bread and I am supposed to make cooked_mutton, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_mutton", - "bread" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_mutton, but you don't have the recipe for it!\n\nYour partner needs to make bread. You have their recipe:\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make bread, but you don't have the recipe for it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 4, - "max_steps_per_recipe": 2, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - } -} \ No newline at end of file diff --git a/tasks/cooking_tasks/test_tasks/test_tasks.json b/tasks/cooking_tasks/test_tasks/test_tasks.json deleted file mode 100644 index 665ede2..0000000 --- a/tasks/cooking_tasks/test_tasks/test_tasks.json +++ /dev/null @@ -1,1051 +0,0 @@ -{ - "multiagent_cooking_1_cake_1_golden_apple": { - "conversation": "Let's collaborate to make cake and golden_apple.", - "agent_count": 2, - "target": { - "cake": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 golden_apple. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "1": "Collaborate with agents around you to make 1 cake, 1 golden_apple. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_cake_1_cooked_beef_blocked_access_0_1": { - "conversation": "Let's collaborate to make cake and cooked_beef.", - "agent_count": 2, - "target": { - "cake": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 cooked_beef. ", - "1": "Collaborate with agents around you to make 1 cake, 1 cooked_beef. " - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 2, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_1_cake_1_golden_apple_blocked_access_0_1": { - "conversation": "Let's collaborate to make cake and golden_apple.", - "agent_count": 2, - "target": { - "cake": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 golden_apple. ", - "1": "Collaborate with agents around you to make 1 cake, 1 golden_apple. " - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 2, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_1_rabbit_stew_blocked_access_0_1": { - "conversation": "Let's work together to make rabbit_stew.", - "agent_count": 2, - "target": { - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew. ", - "1": "Collaborate with agents around you to make 1 rabbit_stew. " - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 2, - "unique_target_items": 1, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_bread_blocked_access_1": { - "conversation": "Let's work together to make bread.", - "agent_count": 2, - "target": { - "bread": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 bread. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "1": "Collaborate with agents around you to make 1 bread. " - }, - "difficulty_metrics": { - "total_recipe_steps": 2, - "blocked_agents_count": 1, - "unique_target_items": 1, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "multiagent_cooking_1_cake_1_cooked_beef_blocked_access_0": { - "conversation": "Let's collaborate to make cooked_beef and cake.", - "agent_count": 2, - "target": { - "cooked_beef": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 cake. ", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_baked_potato_1_cake": { - "conversation": "Let's collaborate to make baked_potato and cake.", - "agent_count": 2, - "target": { - "baked_potato": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 cake. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_baked_potato_1_cooked_beef_blocked_access_0_1": { - "conversation": "Let's collaborate to make baked_potato and cooked_beef.", - "agent_count": 2, - "target": { - "baked_potato": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 cooked_beef. ", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 cooked_beef. " - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 2, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_bread_1_golden_apple": { - "conversation": "Let's collaborate to make bread and golden_apple.", - "agent_count": 2, - "target": { - "bread": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 golden_apple. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "1": "Collaborate with agents around you to make 1 bread, 1 golden_apple. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "multiagent_cooking_1_bread_1_rabbit_stew_blocked_access_0": { - "conversation": "Let's collaborate to make rabbit_stew and bread.", - "agent_count": 2, - "target": { - "rabbit_stew": 1, - "bread": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread. ", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread." - }, - "difficulty_metrics": { - "total_recipe_steps": 8, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_baked_potato_1_cooked_beef": { - "conversation": "Let's collaborate to make baked_potato and cooked_beef.", - "agent_count": 2, - "target": { - "baked_potato": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 cooked_beef. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 cooked_beef. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "multiagent_cooking_1_baked_potato": { - "conversation": "Let's work together to make baked_potato.", - "agent_count": 2, - "target": { - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "1": "Collaborate with agents around you to make 1 baked_potato. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." - }, - "difficulty_metrics": { - "total_recipe_steps": 2, - "blocked_agents_count": 0, - "unique_target_items": 1, - "overall_difficulty_score": 2, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "multiagent_cooking_1_baked_potato_1_cake_blocked_access_0_1": { - "conversation": "Let's collaborate to make cake and baked_potato.", - "agent_count": 2, - "target": { - "cake": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 baked_potato. ", - "1": "Collaborate with agents around you to make 1 cake, 1 baked_potato. " - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 2, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_1_bread_1_cooked_beef": { - "conversation": "Let's collaborate to make bread and cooked_beef.", - "agent_count": 2, - "target": { - "bread": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "1": "Collaborate with agents around you to make 1 bread, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "multiagent_cooking_1_cooked_beef_1_golden_apple_blocked_access_0_1": { - "conversation": "Let's collaborate to make cooked_beef and golden_apple.", - "agent_count": 2, - "target": { - "cooked_beef": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple. ", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple. " - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 2, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_golden_apple_1_rabbit_stew": { - "conversation": "Let's collaborate to make golden_apple and rabbit_stew.", - "agent_count": 2, - "target": { - "golden_apple": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. \n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. \n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - }, - "difficulty_metrics": { - "total_recipe_steps": 8, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_bread_1_golden_apple_blocked_access_1": { - "conversation": "Let's collaborate to make golden_apple and bread.", - "agent_count": 2, - "target": { - "golden_apple": 1, - "bread": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple, 1 bread. \n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "1": "Collaborate with agents around you to make 1 golden_apple, 1 bread. " - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_cooked_beef_blocked_access_0": { - "conversation": "Let's work together to make cooked_beef.", - "agent_count": 2, - "target": { - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef. ", - "1": "Collaborate with agents around you to make 1 cooked_beef. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." - }, - "difficulty_metrics": { - "total_recipe_steps": 2, - "blocked_agents_count": 1, - "unique_target_items": 1, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "multiagent_cooking_1_cooked_beef_1_rabbit_stew": { - "conversation": "Let's collaborate to make rabbit_stew and cooked_beef.", - "agent_count": 2, - "target": { - "rabbit_stew": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 cooked_beef. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 cooked_beef. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." - }, - "difficulty_metrics": { - "total_recipe_steps": 8, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_baked_potato_1_cake_blocked_access_0": { - "conversation": "Let's collaborate to make baked_potato and cake.", - "agent_count": 2, - "target": { - "baked_potato": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 cake. ", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_cake_1_golden_apple_blocked_access_0": { - "conversation": "Let's collaborate to make golden_apple and cake.", - "agent_count": 2, - "target": { - "golden_apple": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple, 1 cake. ", - "1": "Collaborate with agents around you to make 1 golden_apple, 1 cake. \n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_rabbit_stew_blocked_access_1": { - "conversation": "Let's work together to make rabbit_stew.", - "agent_count": 2, - "target": { - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 rabbit_stew. " - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 1, - "unique_target_items": 1, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_cake_1_golden_apple_blocked_access_1": { - "conversation": "Let's collaborate to make golden_apple and cake.", - "agent_count": 2, - "target": { - "golden_apple": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple, 1 cake. \n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "1": "Collaborate with agents around you to make 1 golden_apple, 1 cake. " - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_baked_potato_1_golden_apple": { - "conversation": "Let's collaborate to make baked_potato and golden_apple.", - "agent_count": 2, - "target": { - "baked_potato": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "multiagent_cooking_1_cake_blocked_access_0": { - "conversation": "Let's work together to make cake.", - "agent_count": 2, - "target": { - "cake": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cake. ", - "1": "Collaborate with agents around you to make 1 cake. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 1, - "unique_target_items": 1, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_golden_apple": { - "conversation": "Let's work together to make golden_apple.", - "agent_count": 2, - "target": { - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple. \n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "1": "Collaborate with agents around you to make 1 golden_apple. \n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - }, - "difficulty_metrics": { - "total_recipe_steps": 2, - "blocked_agents_count": 0, - "unique_target_items": 1, - "overall_difficulty_score": 2, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "multiagent_cooking_1_baked_potato_1_rabbit_stew_blocked_access_1": { - "conversation": "Let's collaborate to make rabbit_stew and baked_potato.", - "agent_count": 2, - "target": { - "rabbit_stew": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. " - }, - "difficulty_metrics": { - "total_recipe_steps": 8, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_baked_potato_blocked_access_0": { - "conversation": "Let's work together to make baked_potato.", - "agent_count": 2, - "target": { - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato. ", - "1": "Collaborate with agents around you to make 1 baked_potato. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." - }, - "difficulty_metrics": { - "total_recipe_steps": 2, - "blocked_agents_count": 1, - "unique_target_items": 1, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "multiagent_cooking_1_rabbit_stew": { - "conversation": "Let's work together to make rabbit_stew.", - "agent_count": 2, - "target": { - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 rabbit_stew. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 0, - "unique_target_items": 1, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "multiagent_cooking_1_baked_potato_1_rabbit_stew": { - "conversation": "Let's collaborate to make baked_potato and rabbit_stew.", - "agent_count": 2, - "target": { - "baked_potato": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 rabbit_stew. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 rabbit_stew. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - }, - "difficulty_metrics": { - "total_recipe_steps": 8, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - } -} \ No newline at end of file diff --git a/tasks/cooking_tasks/test_tasks/test_tasks_longer_timeout.json b/tasks/cooking_tasks/test_tasks/test_tasks_longer_timeout.json deleted file mode 100644 index 7b1f817..0000000 --- a/tasks/cooking_tasks/test_tasks/test_tasks_longer_timeout.json +++ /dev/null @@ -1,1051 +0,0 @@ -{ - "multiagent_cooking_1_cake_1_golden_apple": { - "conversation": "Let's collaborate to make cake and golden_apple.", - "agent_count": 2, - "target": { - "cake": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 900, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 golden_apple. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "1": "Collaborate with agents around you to make 1 cake, 1 golden_apple. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_cake_1_cooked_beef_blocked_access_0_1": { - "conversation": "Let's collaborate to make cake and cooked_beef.", - "agent_count": 2, - "target": { - "cake": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 900, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 cooked_beef. ", - "1": "Collaborate with agents around you to make 1 cake, 1 cooked_beef. " - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 2, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_1_cake_1_golden_apple_blocked_access_0_1": { - "conversation": "Let's collaborate to make cake and golden_apple.", - "agent_count": 2, - "target": { - "cake": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 900, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 golden_apple. ", - "1": "Collaborate with agents around you to make 1 cake, 1 golden_apple. " - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 2, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_1_rabbit_stew_blocked_access_0_1": { - "conversation": "Let's work together to make rabbit_stew.", - "agent_count": 2, - "target": { - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 900, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew. ", - "1": "Collaborate with agents around you to make 1 rabbit_stew. " - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 2, - "unique_target_items": 1, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_bread_blocked_access_1": { - "conversation": "Let's work together to make bread.", - "agent_count": 2, - "target": { - "bread": 1 - }, - "type": "cooking", - "timeout": 900, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 bread. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "1": "Collaborate with agents around you to make 1 bread. " - }, - "difficulty_metrics": { - "total_recipe_steps": 2, - "blocked_agents_count": 1, - "unique_target_items": 1, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "multiagent_cooking_1_cake_1_cooked_beef_blocked_access_0": { - "conversation": "Let's collaborate to make cooked_beef and cake.", - "agent_count": 2, - "target": { - "cooked_beef": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 900, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 cake. ", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_baked_potato_1_cake": { - "conversation": "Let's collaborate to make baked_potato and cake.", - "agent_count": 2, - "target": { - "baked_potato": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 900, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 cake. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_baked_potato_1_cooked_beef_blocked_access_0_1": { - "conversation": "Let's collaborate to make baked_potato and cooked_beef.", - "agent_count": 2, - "target": { - "baked_potato": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 900, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 cooked_beef. ", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 cooked_beef. " - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 2, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_bread_1_golden_apple": { - "conversation": "Let's collaborate to make bread and golden_apple.", - "agent_count": 2, - "target": { - "bread": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 900, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 golden_apple. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "1": "Collaborate with agents around you to make 1 bread, 1 golden_apple. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "multiagent_cooking_1_bread_1_rabbit_stew_blocked_access_0": { - "conversation": "Let's collaborate to make rabbit_stew and bread.", - "agent_count": 2, - "target": { - "rabbit_stew": 1, - "bread": 1 - }, - "type": "cooking", - "timeout": 900, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread. ", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread." - }, - "difficulty_metrics": { - "total_recipe_steps": 8, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_baked_potato_1_cooked_beef": { - "conversation": "Let's collaborate to make baked_potato and cooked_beef.", - "agent_count": 2, - "target": { - "baked_potato": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 900, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 cooked_beef. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 cooked_beef. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "multiagent_cooking_1_baked_potato": { - "conversation": "Let's work together to make baked_potato.", - "agent_count": 2, - "target": { - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 900, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "1": "Collaborate with agents around you to make 1 baked_potato. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." - }, - "difficulty_metrics": { - "total_recipe_steps": 2, - "blocked_agents_count": 0, - "unique_target_items": 1, - "overall_difficulty_score": 2, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "multiagent_cooking_1_baked_potato_1_cake_blocked_access_0_1": { - "conversation": "Let's collaborate to make cake and baked_potato.", - "agent_count": 2, - "target": { - "cake": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 900, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 baked_potato. ", - "1": "Collaborate with agents around you to make 1 cake, 1 baked_potato. " - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 2, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_1_bread_1_cooked_beef": { - "conversation": "Let's collaborate to make bread and cooked_beef.", - "agent_count": 2, - "target": { - "bread": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 900, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "1": "Collaborate with agents around you to make 1 bread, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "multiagent_cooking_1_cooked_beef_1_golden_apple_blocked_access_0_1": { - "conversation": "Let's collaborate to make cooked_beef and golden_apple.", - "agent_count": 2, - "target": { - "cooked_beef": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 900, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple. ", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple. " - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 2, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_golden_apple_1_rabbit_stew": { - "conversation": "Let's collaborate to make golden_apple and rabbit_stew.", - "agent_count": 2, - "target": { - "golden_apple": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 900, - "recipes": { - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. \n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. \n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - }, - "difficulty_metrics": { - "total_recipe_steps": 8, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_bread_1_golden_apple_blocked_access_1": { - "conversation": "Let's collaborate to make golden_apple and bread.", - "agent_count": 2, - "target": { - "golden_apple": 1, - "bread": 1 - }, - "type": "cooking", - "timeout": 900, - "recipes": { - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple, 1 bread. \n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "1": "Collaborate with agents around you to make 1 golden_apple, 1 bread. " - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_cooked_beef_blocked_access_0": { - "conversation": "Let's work together to make cooked_beef.", - "agent_count": 2, - "target": { - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 900, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef. ", - "1": "Collaborate with agents around you to make 1 cooked_beef. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." - }, - "difficulty_metrics": { - "total_recipe_steps": 2, - "blocked_agents_count": 1, - "unique_target_items": 1, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "multiagent_cooking_1_cooked_beef_1_rabbit_stew": { - "conversation": "Let's collaborate to make rabbit_stew and cooked_beef.", - "agent_count": 2, - "target": { - "rabbit_stew": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 900, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 cooked_beef. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 cooked_beef. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." - }, - "difficulty_metrics": { - "total_recipe_steps": 8, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_baked_potato_1_cake_blocked_access_0": { - "conversation": "Let's collaborate to make baked_potato and cake.", - "agent_count": 2, - "target": { - "baked_potato": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 900, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 cake. ", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_cake_1_golden_apple_blocked_access_0": { - "conversation": "Let's collaborate to make golden_apple and cake.", - "agent_count": 2, - "target": { - "golden_apple": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 900, - "recipes": { - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple, 1 cake. ", - "1": "Collaborate with agents around you to make 1 golden_apple, 1 cake. \n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_rabbit_stew_blocked_access_1": { - "conversation": "Let's work together to make rabbit_stew.", - "agent_count": 2, - "target": { - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 900, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 rabbit_stew. " - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 1, - "unique_target_items": 1, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_cake_1_golden_apple_blocked_access_1": { - "conversation": "Let's collaborate to make golden_apple and cake.", - "agent_count": 2, - "target": { - "golden_apple": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 900, - "recipes": { - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple, 1 cake. \n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "1": "Collaborate with agents around you to make 1 golden_apple, 1 cake. " - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_baked_potato_1_golden_apple": { - "conversation": "Let's collaborate to make baked_potato and golden_apple.", - "agent_count": 2, - "target": { - "baked_potato": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 900, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "multiagent_cooking_1_cake_blocked_access_0": { - "conversation": "Let's work together to make cake.", - "agent_count": 2, - "target": { - "cake": 1 - }, - "type": "cooking", - "timeout": 900, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cake. ", - "1": "Collaborate with agents around you to make 1 cake. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 1, - "unique_target_items": 1, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_golden_apple": { - "conversation": "Let's work together to make golden_apple.", - "agent_count": 2, - "target": { - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 900, - "recipes": { - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple. \n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "1": "Collaborate with agents around you to make 1 golden_apple. \n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - }, - "difficulty_metrics": { - "total_recipe_steps": 2, - "blocked_agents_count": 0, - "unique_target_items": 1, - "overall_difficulty_score": 2, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "multiagent_cooking_1_baked_potato_1_rabbit_stew_blocked_access_1": { - "conversation": "Let's collaborate to make rabbit_stew and baked_potato.", - "agent_count": 2, - "target": { - "rabbit_stew": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 900, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. " - }, - "difficulty_metrics": { - "total_recipe_steps": 8, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_baked_potato_blocked_access_0": { - "conversation": "Let's work together to make baked_potato.", - "agent_count": 2, - "target": { - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 900, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato. ", - "1": "Collaborate with agents around you to make 1 baked_potato. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." - }, - "difficulty_metrics": { - "total_recipe_steps": 2, - "blocked_agents_count": 1, - "unique_target_items": 1, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "multiagent_cooking_1_rabbit_stew": { - "conversation": "Let's work together to make rabbit_stew.", - "agent_count": 2, - "target": { - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 900, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 rabbit_stew. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 0, - "unique_target_items": 1, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "multiagent_cooking_1_baked_potato_1_rabbit_stew": { - "conversation": "Let's collaborate to make baked_potato and rabbit_stew.", - "agent_count": 2, - "target": { - "baked_potato": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 900, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 rabbit_stew. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 rabbit_stew. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - }, - "difficulty_metrics": { - "total_recipe_steps": 8, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - } - } \ No newline at end of file diff --git a/tasks/cooking_tasks/train_tasks/2_agent_cooking_train_tasks.json b/tasks/cooking_tasks/train_tasks/2_agent_cooking_train_tasks.json deleted file mode 100644 index ac2254a..0000000 --- a/tasks/cooking_tasks/train_tasks/2_agent_cooking_train_tasks.json +++ /dev/null @@ -1,1190 +0,0 @@ -{ - "multiagent_cooking_2_1_cooked_chicken_1_golden_carrot": { - "conversation": "Let's work together to make cooked_chicken, golden_carrot.", - "agent_count": 2, - "target": { - "cooked_chicken": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - } - }, - "multiagent_cooking_2_1_cooked_mutton_1_golden_carrot": { - "conversation": "Let's work together to make golden_carrot, cooked_mutton.", - "agent_count": 2, - "target": { - "golden_carrot": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." - } - }, - "multiagent_cooking_2_1_cookie_1_mushroom_stew": { - "conversation": "Let's work together to make cookie, mushroom_stew.", - "agent_count": 2, - "target": { - "cookie": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "1": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - } - }, - "multiagent_cooking_2_1_cookie_1_golden_carrot": { - "conversation": "Let's work together to make golden_carrot, cookie.", - "agent_count": 2, - "target": { - "golden_carrot": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cookie. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cookie. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - } - }, - "multiagent_cooking_2_1_cooked_mutton_1_cooked_porkchop": { - "conversation": "Let's work together to make cooked_porkchop, cooked_mutton.", - "agent_count": 2, - "target": { - "cooked_porkchop": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." - } - }, - "multiagent_cooking_2_1_cookie_1_suspicious_stew": { - "conversation": "Let's work together to make suspicious_stew, cookie.", - "agent_count": 2, - "target": { - "suspicious_stew": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cookie. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cookie. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - } - }, - "multiagent_cooking_2_1_mushroom_stew_1_suspicious_stew": { - "conversation": "Let's work together to make mushroom_stew, suspicious_stew.", - "agent_count": 2, - "target": { - "mushroom_stew": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - } - }, - "multiagent_cooking_2_1_cookie_1_pumpkin_pie": { - "conversation": "Let's work together to make pumpkin_pie, cookie.", - "agent_count": 2, - "target": { - "pumpkin_pie": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - } - }, - "multiagent_cooking_2_1_cooked_chicken_1_suspicious_stew": { - "conversation": "Let's work together to make suspicious_stew, cooked_chicken.", - "agent_count": 2, - "target": { - "suspicious_stew": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." - } - }, - "multiagent_cooking_2_1_cooked_chicken_1_mushroom_stew": { - "conversation": "Let's work together to make mushroom_stew, cooked_chicken.", - "agent_count": 2, - "target": { - "mushroom_stew": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." - } - }, - "multiagent_cooking_2_1_cooked_rabbit_1_golden_carrot": { - "conversation": "Let's work together to make golden_carrot, cooked_rabbit.", - "agent_count": 2, - "target": { - "golden_carrot": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_rabbit. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_rabbit. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit." - } - }, - "multiagent_cooking_2_1_golden_carrot_1_mushroom_stew": { - "conversation": "Let's work together to make golden_carrot, mushroom_stew.", - "agent_count": 2, - "target": { - "golden_carrot": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - } - }, - "multiagent_cooking_2_1_golden_carrot_1_pumpkin_pie": { - "conversation": "Let's work together to make pumpkin_pie, golden_carrot.", - "agent_count": 2, - "target": { - "pumpkin_pie": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - } - }, - "multiagent_cooking_2_1_cooked_chicken_1_cooked_porkchop": { - "conversation": "Let's work together to make cooked_chicken, cooked_porkchop.", - "agent_count": 2, - "target": { - "cooked_chicken": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." - } - }, - "multiagent_cooking_2_1_beetroot_soup_1_cooked_porkchop": { - "conversation": "Let's work together to make beetroot_soup, cooked_porkchop.", - "agent_count": 2, - "target": { - "beetroot_soup": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." - } - }, - "multiagent_cooking_2_1_cooked_porkchop_1_mushroom_stew": { - "conversation": "Let's work together to make mushroom_stew, cooked_porkchop.", - "agent_count": 2, - "target": { - "mushroom_stew": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." - } - }, - "multiagent_cooking_2_1_cooked_porkchop_1_golden_carrot": { - "conversation": "Let's work together to make cooked_porkchop, golden_carrot.", - "agent_count": 2, - "target": { - "cooked_porkchop": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - } - }, - "multiagent_cooking_2_1_cooked_porkchop_1_pumpkin_pie": { - "conversation": "Let's work together to make cooked_porkchop, pumpkin_pie.", - "agent_count": 2, - "target": { - "cooked_porkchop": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - } - }, - "multiagent_cooking_2_1_cooked_mutton_1_suspicious_stew": { - "conversation": "Let's work together to make cooked_mutton, suspicious_stew.", - "agent_count": 2, - "target": { - "cooked_mutton": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 suspicious_stew. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 suspicious_stew. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - } - }, - "multiagent_cooking_2_1_mushroom_stew_1_pumpkin_pie": { - "conversation": "Let's work together to make pumpkin_pie, mushroom_stew.", - "agent_count": 2, - "target": { - "pumpkin_pie": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - } - }, - "multiagent_cooking_2_1_cooked_rabbit_1_mushroom_stew": { - "conversation": "Let's work together to make cooked_rabbit, mushroom_stew.", - "agent_count": 2, - "target": { - "cooked_rabbit": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - } - }, - "multiagent_cooking_2_1_cooked_chicken_1_cookie": { - "conversation": "Let's work together to make cookie, cooked_chicken.", - "agent_count": 2, - "target": { - "cookie": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_chicken. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_chicken. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." - } - }, - "multiagent_cooking_2_1_cooked_chicken_1_pumpkin_pie": { - "conversation": "Let's work together to make pumpkin_pie, cooked_chicken.", - "agent_count": 2, - "target": { - "pumpkin_pie": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." - } - }, - "multiagent_cooking_2_1_cooked_mutton_1_mushroom_stew": { - "conversation": "Let's work together to make mushroom_stew, cooked_mutton.", - "agent_count": 2, - "target": { - "mushroom_stew": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." - } - }, - "multiagent_cooking_2_1_cooked_porkchop_1_cooked_rabbit": { - "conversation": "Let's work together to make cooked_rabbit, cooked_porkchop.", - "agent_count": 2, - "target": { - "cooked_rabbit": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." - } - }, - "multiagent_cooking_2_1_cooked_porkchop_1_suspicious_stew": { - "conversation": "Let's work together to make suspicious_stew, cooked_porkchop.", - "agent_count": 2, - "target": { - "suspicious_stew": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." - } - }, - "multiagent_cooking_2_1_beetroot_soup_1_suspicious_stew": { - "conversation": "Let's work together to make suspicious_stew, beetroot_soup.", - "agent_count": 2, - "target": { - "suspicious_stew": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - } - }, - "multiagent_cooking_2_1_cooked_rabbit_1_cookie": { - "conversation": "Let's work together to make cookie, cooked_rabbit.", - "agent_count": 2, - "target": { - "cookie": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", - "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit." - } - }, - "multiagent_cooking_2_1_golden_carrot_1_suspicious_stew": { - "conversation": "Let's work together to make golden_carrot, suspicious_stew.", - "agent_count": 2, - "target": { - "golden_carrot": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - } - }, - "multiagent_cooking_2_1_pumpkin_pie_1_suspicious_stew": { - "conversation": "Let's work together to make suspicious_stew, pumpkin_pie.", - "agent_count": 2, - "target": { - "suspicious_stew": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - } - }, - "multiagent_cooking_2_1_beetroot_soup_1_cookie": { - "conversation": "Let's work together to make beetroot_soup, cookie.", - "agent_count": 2, - "target": { - "beetroot_soup": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - } - }, - "multiagent_cooking_2_1_beetroot_soup_1_cooked_mutton": { - "conversation": "Let's work together to make cooked_mutton, beetroot_soup.", - "agent_count": 2, - "target": { - "cooked_mutton": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - } - }, - "multiagent_cooking_2_1_beetroot_soup_1_pumpkin_pie": { - "conversation": "Let's work together to make beetroot_soup, pumpkin_pie.", - "agent_count": 2, - "target": { - "beetroot_soup": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - } - }, - "multiagent_cooking_2_1_cooked_chicken_1_cooked_rabbit": { - "conversation": "Let's work together to make cooked_chicken, cooked_rabbit.", - "agent_count": 2, - "target": { - "cooked_chicken": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit." - } - }, - "multiagent_cooking_2_1_cooked_porkchop_1_cookie": { - "conversation": "Let's work together to make cooked_porkchop, cookie.", - "agent_count": 2, - "target": { - "cooked_porkchop": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cookie. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cookie. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - } - }, - "multiagent_cooking_2_1_beetroot_soup_1_golden_carrot": { - "conversation": "Let's work together to make beetroot_soup, golden_carrot.", - "agent_count": 2, - "target": { - "beetroot_soup": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 golden_carrot. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 golden_carrot. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - } - }, - "multiagent_cooking_2_1_cooked_rabbit_1_suspicious_stew": { - "conversation": "Let's work together to make cooked_rabbit, suspicious_stew.", - "agent_count": 2, - "target": { - "cooked_rabbit": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - } - }, - "multiagent_cooking_2_1_cooked_mutton_1_cooked_rabbit": { - "conversation": "Let's work together to make cooked_rabbit, cooked_mutton.", - "agent_count": 2, - "target": { - "cooked_rabbit": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_mutton. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_mutton. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." - } - }, - "multiagent_cooking_2_1_cooked_chicken_1_cooked_mutton": { - "conversation": "Let's work together to make cooked_mutton, cooked_chicken.", - "agent_count": 2, - "target": { - "cooked_mutton": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_chicken. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_chicken. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." - } - }, - "multiagent_cooking_2_1_beetroot_soup_1_cooked_rabbit": { - "conversation": "Let's work together to make beetroot_soup, cooked_rabbit.", - "agent_count": 2, - "target": { - "beetroot_soup": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_rabbit. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_rabbit. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit." - } - }, - "multiagent_cooking_2_1_cooked_mutton_1_cookie": { - "conversation": "Let's work together to make cookie, cooked_mutton.", - "agent_count": 2, - "target": { - "cookie": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_mutton. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_mutton. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." - } - }, - "multiagent_cooking_2_1_beetroot_soup_1_mushroom_stew": { - "conversation": "Let's work together to make mushroom_stew, beetroot_soup.", - "agent_count": 2, - "target": { - "mushroom_stew": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - } - }, - "multiagent_cooking_2_1_cooked_rabbit_1_pumpkin_pie": { - "conversation": "Let's work together to make pumpkin_pie, cooked_rabbit.", - "agent_count": 2, - "target": { - "pumpkin_pie": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_rabbit. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_rabbit. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit." - } - }, - "multiagent_cooking_2_1_beetroot_soup_1_cooked_chicken": { - "conversation": "Let's work together to make beetroot_soup, cooked_chicken.", - "agent_count": 2, - "target": { - "beetroot_soup": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_chicken. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_chicken. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." - } - }, - "multiagent_cooking_2_1_cooked_mutton_1_pumpkin_pie": { - "conversation": "Let's work together to make cooked_mutton, pumpkin_pie.", - "agent_count": 2, - "target": { - "cooked_mutton": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - } - } -} \ No newline at end of file diff --git a/tasks/cooking_tasks/train_tasks/3_agent_cooking_train_tasks.json b/tasks/cooking_tasks/train_tasks/3_agent_cooking_train_tasks.json deleted file mode 100644 index bdcb851..0000000 --- a/tasks/cooking_tasks/train_tasks/3_agent_cooking_train_tasks.json +++ /dev/null @@ -1,3093 +0,0 @@ -{ - "multiagent_cooking_3_1_golden_carrot_1_pumpkin_pie_1_suspicious_stew": { - "conversation": "Let's work together to make suspicious_stew, pumpkin_pie, golden_carrot.", - "agent_count": 3, - "target": { - "suspicious_stew": 1, - "pumpkin_pie": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie, 1 golden_carrot. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie, 1 golden_carrot. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie, 1 golden_carrot. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - } - }, - "multiagent_cooking_3_1_cooked_mutton_1_cooked_rabbit_1_cookie": { - "conversation": "Let's work together to make cooked_mutton, cooked_rabbit, cookie.", - "agent_count": 3, - "target": { - "cooked_mutton": 1, - "cooked_rabbit": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 cookie. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 cookie. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 cookie. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_cooked_porkchop_1_suspicious_stew": { - "conversation": "Let's work together to make cooked_porkchop, suspicious_stew, beetroot_soup.", - "agent_count": 3, - "target": { - "cooked_porkchop": 1, - "suspicious_stew": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 beetroot_soup. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 beetroot_soup. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 beetroot_soup. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_cooked_rabbit": { - "conversation": "Let's work together to make cooked_chicken, cooked_rabbit.", - "agent_count": 3, - "target": { - "cooked_chicken": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit." - } - }, - "multiagent_cooking_3_1_cooked_mutton_1_suspicious_stew": { - "conversation": "Let's work together to make suspicious_stew, cooked_mutton.", - "agent_count": 3, - "target": { - "suspicious_stew": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_cooked_mutton_1_pumpkin_pie": { - "conversation": "Let's work together to make pumpkin_pie, cooked_chicken, cooked_mutton.", - "agent_count": 3, - "target": { - "pumpkin_pie": 1, - "cooked_chicken": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken, 1 cooked_mutton. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken, 1 cooked_mutton. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken, 1 cooked_mutton. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." - } - }, - "multiagent_cooking_3_1_cooked_porkchop_1_suspicious_stew": { - "conversation": "Let's work together to make suspicious_stew, cooked_porkchop.", - "agent_count": 3, - "target": { - "suspicious_stew": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_cooked_chicken_1_suspicious_stew": { - "conversation": "Let's work together to make beetroot_soup, suspicious_stew, cooked_chicken.", - "agent_count": 3, - "target": { - "beetroot_soup": 1, - "suspicious_stew": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 suspicious_stew, 1 cooked_chicken. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 suspicious_stew, 1 cooked_chicken. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 suspicious_stew, 1 cooked_chicken. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." - } - }, - "multiagent_cooking_3_1_cooked_porkchop_1_cookie_1_suspicious_stew": { - "conversation": "Let's work together to make cookie, cooked_porkchop, suspicious_stew.", - "agent_count": 3, - "target": { - "cookie": 1, - "cooked_porkchop": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop, 1 suspicious_stew. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop, 1 suspicious_stew. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "2": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop, 1 suspicious_stew. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_pumpkin_pie_1_suspicious_stew": { - "conversation": "Let's work together to make suspicious_stew, pumpkin_pie, beetroot_soup.", - "agent_count": 3, - "target": { - "suspicious_stew": 1, - "pumpkin_pie": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie, 1 beetroot_soup. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie, 1 beetroot_soup. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie, 1 beetroot_soup. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - } - }, - "multiagent_cooking_3_1_cookie_1_mushroom_stew": { - "conversation": "Let's work together to make mushroom_stew, cookie.", - "agent_count": 3, - "target": { - "mushroom_stew": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cookie. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cookie. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cookie. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_cooked_mutton_1_golden_carrot": { - "conversation": "Let's work together to make beetroot_soup, cooked_mutton, golden_carrot.", - "agent_count": 3, - "target": { - "beetroot_soup": 1, - "cooked_mutton": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 golden_carrot. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 golden_carrot. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 golden_carrot. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_cooked_mutton_1_suspicious_stew": { - "conversation": "Let's work together to make suspicious_stew, cooked_mutton, cooked_chicken.", - "agent_count": 3, - "target": { - "suspicious_stew": 1, - "cooked_mutton": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton, 1 cooked_chicken. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton, 1 cooked_chicken. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton, 1 cooked_chicken. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." - } - }, - "multiagent_cooking_3_1_cooked_porkchop_1_golden_carrot_1_pumpkin_pie": { - "conversation": "Let's work together to make pumpkin_pie, golden_carrot, cooked_porkchop.", - "agent_count": 3, - "target": { - "pumpkin_pie": 1, - "golden_carrot": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot, 1 cooked_porkchop. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot, 1 cooked_porkchop. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot, 1 cooked_porkchop. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." - } - }, - "multiagent_cooking_3_1_cooked_rabbit_1_cookie_1_pumpkin_pie": { - "conversation": "Let's work together to make cooked_rabbit, pumpkin_pie, cookie.", - "agent_count": 3, - "target": { - "cooked_rabbit": 1, - "pumpkin_pie": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie, 1 cookie. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie, 1 cookie. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie, 1 cookie. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - } - }, - "multiagent_cooking_3_1_golden_carrot_1_mushroom_stew": { - "conversation": "Let's work together to make golden_carrot, mushroom_stew.", - "agent_count": 3, - "target": { - "golden_carrot": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - } - }, - "multiagent_cooking_3_1_cooked_porkchop_1_cookie": { - "conversation": "Let's work together to make cookie, cooked_porkchop.", - "agent_count": 3, - "target": { - "cookie": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "2": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." - } - }, - "multiagent_cooking_3_1_cooked_porkchop_1_mushroom_stew_1_pumpkin_pie": { - "conversation": "Let's work together to make cooked_porkchop, mushroom_stew, pumpkin_pie.", - "agent_count": 3, - "target": { - "cooked_porkchop": 1, - "mushroom_stew": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew, 1 pumpkin_pie. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew, 1 pumpkin_pie. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew, 1 pumpkin_pie. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - } - }, - "multiagent_cooking_3_1_cooked_rabbit_1_suspicious_stew": { - "conversation": "Let's work together to make cooked_rabbit, suspicious_stew.", - "agent_count": 3, - "target": { - "cooked_rabbit": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_pumpkin_pie": { - "conversation": "Let's work together to make pumpkin_pie, cooked_chicken.", - "agent_count": 3, - "target": { - "pumpkin_pie": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_cooked_porkchop_1_mushroom_stew": { - "conversation": "Let's work together to make mushroom_stew, beetroot_soup, cooked_porkchop.", - "agent_count": 3, - "target": { - "mushroom_stew": 1, - "beetroot_soup": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 cooked_porkchop. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 cooked_porkchop. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 cooked_porkchop. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_cooked_porkchop_1_pumpkin_pie": { - "conversation": "Let's work together to make cooked_porkchop, pumpkin_pie, beetroot_soup.", - "agent_count": 3, - "target": { - "cooked_porkchop": 1, - "pumpkin_pie": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie, 1 beetroot_soup. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie, 1 beetroot_soup. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie, 1 beetroot_soup. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - } - }, - "multiagent_cooking_3_1_cooked_mutton_1_golden_carrot_1_pumpkin_pie": { - "conversation": "Let's work together to make pumpkin_pie, golden_carrot, cooked_mutton.", - "agent_count": 3, - "target": { - "pumpkin_pie": 1, - "golden_carrot": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot, 1 cooked_mutton. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot, 1 cooked_mutton. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot, 1 cooked_mutton. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_cooked_mutton_1_golden_carrot": { - "conversation": "Let's work together to make golden_carrot, cooked_mutton, cooked_chicken.", - "agent_count": 3, - "target": { - "golden_carrot": 1, - "cooked_mutton": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton, 1 cooked_chicken. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton, 1 cooked_chicken. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton, 1 cooked_chicken. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_cooked_porkchop": { - "conversation": "Let's work together to make cooked_porkchop, cooked_chicken.", - "agent_count": 3, - "target": { - "cooked_porkchop": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." - } - }, - "multiagent_cooking_3_1_cooked_mutton_1_pumpkin_pie": { - "conversation": "Let's work together to make cooked_mutton, pumpkin_pie.", - "agent_count": 3, - "target": { - "cooked_mutton": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - } - }, - "multiagent_cooking_3_1_cooked_mutton_1_mushroom_stew": { - "conversation": "Let's work together to make mushroom_stew, cooked_mutton.", - "agent_count": 3, - "target": { - "mushroom_stew": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." - } - }, - "multiagent_cooking_3_1_golden_carrot_1_mushroom_stew_1_suspicious_stew": { - "conversation": "Let's work together to make suspicious_stew, mushroom_stew, golden_carrot.", - "agent_count": 3, - "target": { - "suspicious_stew": 1, - "mushroom_stew": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 mushroom_stew, 1 golden_carrot. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 mushroom_stew, 1 golden_carrot. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 mushroom_stew, 1 golden_carrot. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_cookie": { - "conversation": "Let's work together to make cookie, beetroot_soup.", - "agent_count": 3, - "target": { - "cookie": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 beetroot_soup. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "1": "Collaborate with agents around you to make 1 cookie, 1 beetroot_soup. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "2": "Collaborate with agents around you to make 1 cookie, 1 beetroot_soup. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - } - }, - "multiagent_cooking_3_1_cooked_porkchop_1_cooked_rabbit_1_suspicious_stew": { - "conversation": "Let's work together to make cooked_rabbit, cooked_porkchop, suspicious_stew.", - "agent_count": 3, - "target": { - "cooked_rabbit": 1, - "cooked_porkchop": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 suspicious_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 suspicious_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 suspicious_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - } - }, - "multiagent_cooking_3_1_cookie_1_pumpkin_pie": { - "conversation": "Let's work together to make cookie, pumpkin_pie.", - "agent_count": 3, - "target": { - "cookie": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 pumpkin_pie. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "1": "Collaborate with agents around you to make 1 cookie, 1 pumpkin_pie. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "2": "Collaborate with agents around you to make 1 cookie, 1 pumpkin_pie. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_cookie_1_pumpkin_pie": { - "conversation": "Let's work together to make cookie, pumpkin_pie, cooked_chicken.", - "agent_count": 3, - "target": { - "cookie": 1, - "pumpkin_pie": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 pumpkin_pie, 1 cooked_chicken. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "1": "Collaborate with agents around you to make 1 cookie, 1 pumpkin_pie, 1 cooked_chicken. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "2": "Collaborate with agents around you to make 1 cookie, 1 pumpkin_pie, 1 cooked_chicken. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." - } - }, - "multiagent_cooking_3_1_cooked_mutton_1_mushroom_stew_1_suspicious_stew": { - "conversation": "Let's work together to make cooked_mutton, suspicious_stew, mushroom_stew.", - "agent_count": 3, - "target": { - "cooked_mutton": 1, - "suspicious_stew": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 suspicious_stew, 1 mushroom_stew. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 suspicious_stew, 1 mushroom_stew. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 suspicious_stew, 1 mushroom_stew. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - } - }, - "multiagent_cooking_3_1_cooked_rabbit_1_golden_carrot": { - "conversation": "Let's work together to make cooked_rabbit, golden_carrot.", - "agent_count": 3, - "target": { - "cooked_rabbit": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_golden_carrot_1_suspicious_stew": { - "conversation": "Let's work together to make golden_carrot, suspicious_stew, beetroot_soup.", - "agent_count": 3, - "target": { - "golden_carrot": 1, - "suspicious_stew": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 beetroot_soup. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 beetroot_soup. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 beetroot_soup. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - } - }, - "multiagent_cooking_3_1_cooked_rabbit_1_mushroom_stew": { - "conversation": "Let's work together to make cooked_rabbit, mushroom_stew.", - "agent_count": 3, - "target": { - "cooked_rabbit": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - } - }, - "multiagent_cooking_3_1_golden_carrot_1_pumpkin_pie": { - "conversation": "Let's work together to make golden_carrot, pumpkin_pie.", - "agent_count": 3, - "target": { - "golden_carrot": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - } - }, - "multiagent_cooking_3_1_cooked_mutton_1_golden_carrot_1_mushroom_stew": { - "conversation": "Let's work together to make mushroom_stew, cooked_mutton, golden_carrot.", - "agent_count": 3, - "target": { - "mushroom_stew": 1, - "cooked_mutton": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 golden_carrot. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 golden_carrot. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 golden_carrot. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_cookie_1_golden_carrot": { - "conversation": "Let's work together to make cookie, cooked_chicken, golden_carrot.", - "agent_count": 3, - "target": { - "cookie": 1, - "cooked_chicken": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_chicken, 1 golden_carrot. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_chicken, 1 golden_carrot. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "2": "Collaborate with agents around you to make 1 cookie, 1 cooked_chicken, 1 golden_carrot. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - } - }, - "multiagent_cooking_3_1_cooked_mutton_1_cooked_rabbit_1_golden_carrot": { - "conversation": "Let's work together to make cooked_mutton, cooked_rabbit, golden_carrot.", - "agent_count": 3, - "target": { - "cooked_mutton": 1, - "cooked_rabbit": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 golden_carrot. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 golden_carrot. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 golden_carrot. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_cooked_chicken": { - "conversation": "Let's work together to make beetroot_soup, cooked_chicken.", - "agent_count": 3, - "target": { - "beetroot_soup": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_chicken. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_chicken. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_chicken. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." - } - }, - "multiagent_cooking_3_1_golden_carrot_1_suspicious_stew": { - "conversation": "Let's work together to make golden_carrot, suspicious_stew.", - "agent_count": 3, - "target": { - "golden_carrot": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - } - }, - "multiagent_cooking_3_1_cooked_rabbit_1_golden_carrot_1_pumpkin_pie": { - "conversation": "Let's work together to make cooked_rabbit, pumpkin_pie, golden_carrot.", - "agent_count": 3, - "target": { - "cooked_rabbit": 1, - "pumpkin_pie": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie, 1 golden_carrot. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie, 1 golden_carrot. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie, 1 golden_carrot. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - } - }, - "multiagent_cooking_3_1_cooked_porkchop_1_cookie_1_pumpkin_pie": { - "conversation": "Let's work together to make cooked_porkchop, cookie, pumpkin_pie.", - "agent_count": 3, - "target": { - "cooked_porkchop": 1, - "cookie": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cookie, 1 pumpkin_pie. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cookie, 1 pumpkin_pie. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cookie, 1 pumpkin_pie. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_cooked_rabbit": { - "conversation": "Let's work together to make cooked_rabbit, beetroot_soup.", - "agent_count": 3, - "target": { - "cooked_rabbit": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_cooked_porkchop_1_cookie": { - "conversation": "Let's work together to make cookie, beetroot_soup, cooked_porkchop.", - "agent_count": 3, - "target": { - "cookie": 1, - "beetroot_soup": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 beetroot_soup, 1 cooked_porkchop. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "1": "Collaborate with agents around you to make 1 cookie, 1 beetroot_soup, 1 cooked_porkchop. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "2": "Collaborate with agents around you to make 1 cookie, 1 beetroot_soup, 1 cooked_porkchop. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." - } - }, - "multiagent_cooking_3_1_cooked_porkchop_1_cookie_1_golden_carrot": { - "conversation": "Let's work together to make cooked_porkchop, cookie, golden_carrot.", - "agent_count": 3, - "target": { - "cooked_porkchop": 1, - "cookie": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cookie, 1 golden_carrot. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cookie, 1 golden_carrot. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cookie, 1 golden_carrot. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_cooked_chicken_1_cooked_porkchop": { - "conversation": "Let's work together to make cooked_porkchop, beetroot_soup, cooked_chicken.", - "agent_count": 3, - "target": { - "cooked_porkchop": 1, - "beetroot_soup": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 beetroot_soup, 1 cooked_chicken. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 beetroot_soup, 1 cooked_chicken. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 beetroot_soup, 1 cooked_chicken. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_golden_carrot_1_pumpkin_pie": { - "conversation": "Let's work together to make cooked_chicken, golden_carrot, pumpkin_pie.", - "agent_count": 3, - "target": { - "cooked_chicken": 1, - "golden_carrot": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 pumpkin_pie. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 pumpkin_pie. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 pumpkin_pie. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_cooked_rabbit_1_mushroom_stew": { - "conversation": "Let's work together to make cooked_chicken, cooked_rabbit, mushroom_stew.", - "agent_count": 3, - "target": { - "cooked_chicken": 1, - "cooked_rabbit": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 mushroom_stew. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 mushroom_stew. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 mushroom_stew. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - } - }, - "multiagent_cooking_3_1_cooked_porkchop_1_cooked_rabbit": { - "conversation": "Let's work together to make cooked_porkchop, cooked_rabbit.", - "agent_count": 3, - "target": { - "cooked_porkchop": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_rabbit. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_rabbit. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_rabbit. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit." - } - }, - "multiagent_cooking_3_1_cookie_1_golden_carrot": { - "conversation": "Let's work together to make cookie, golden_carrot.", - "agent_count": 3, - "target": { - "cookie": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 golden_carrot. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "1": "Collaborate with agents around you to make 1 cookie, 1 golden_carrot. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "2": "Collaborate with agents around you to make 1 cookie, 1 golden_carrot. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - } - }, - "multiagent_cooking_3_1_cooked_rabbit_1_mushroom_stew_1_suspicious_stew": { - "conversation": "Let's work together to make mushroom_stew, suspicious_stew, cooked_rabbit.", - "agent_count": 3, - "target": { - "mushroom_stew": 1, - "suspicious_stew": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 cooked_rabbit. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 cooked_rabbit. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 cooked_rabbit. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit." - } - }, - "multiagent_cooking_3_1_cooked_porkchop_1_golden_carrot_1_mushroom_stew": { - "conversation": "Let's work together to make cooked_porkchop, golden_carrot, mushroom_stew.", - "agent_count": 3, - "target": { - "cooked_porkchop": 1, - "golden_carrot": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot, 1 mushroom_stew. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot, 1 mushroom_stew. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot, 1 mushroom_stew. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - } - }, - "multiagent_cooking_3_1_golden_carrot_1_mushroom_stew_1_pumpkin_pie": { - "conversation": "Let's work together to make mushroom_stew, golden_carrot, pumpkin_pie.", - "agent_count": 3, - "target": { - "mushroom_stew": 1, - "golden_carrot": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 pumpkin_pie. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 pumpkin_pie. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 pumpkin_pie. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_cooked_rabbit_1_cookie": { - "conversation": "Let's work together to make beetroot_soup, cooked_rabbit, cookie.", - "agent_count": 3, - "target": { - "beetroot_soup": 1, - "cooked_rabbit": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_rabbit, 1 cookie. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_rabbit, 1 cookie. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_rabbit, 1 cookie. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - } - }, - "multiagent_cooking_3_1_cooked_porkchop_1_mushroom_stew": { - "conversation": "Let's work together to make cooked_porkchop, mushroom_stew.", - "agent_count": 3, - "target": { - "cooked_porkchop": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_cookie_1_mushroom_stew": { - "conversation": "Let's work together to make mushroom_stew, cookie, cooked_chicken.", - "agent_count": 3, - "target": { - "mushroom_stew": 1, - "cookie": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cookie, 1 cooked_chicken. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cookie, 1 cooked_chicken. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cookie, 1 cooked_chicken. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." - } - }, - "multiagent_cooking_3_1_cooked_porkchop_1_golden_carrot_1_suspicious_stew": { - "conversation": "Let's work together to make suspicious_stew, cooked_porkchop, golden_carrot.", - "agent_count": 3, - "target": { - "suspicious_stew": 1, - "cooked_porkchop": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop, 1 golden_carrot. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop, 1 golden_carrot. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop, 1 golden_carrot. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_mushroom_stew": { - "conversation": "Let's work together to make beetroot_soup, mushroom_stew.", - "agent_count": 3, - "target": { - "beetroot_soup": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 mushroom_stew. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 mushroom_stew. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 mushroom_stew. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_cooked_mutton_1_cookie": { - "conversation": "Let's work together to make beetroot_soup, cookie, cooked_mutton.", - "agent_count": 3, - "target": { - "beetroot_soup": 1, - "cookie": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie, 1 cooked_mutton. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie, 1 cooked_mutton. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie, 1 cooked_mutton. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_cooked_chicken_1_mushroom_stew": { - "conversation": "Let's work together to make mushroom_stew, beetroot_soup, cooked_chicken.", - "agent_count": 3, - "target": { - "mushroom_stew": 1, - "beetroot_soup": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 cooked_chicken. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 cooked_chicken. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 cooked_chicken. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_cooked_mutton_1_cooked_porkchop": { - "conversation": "Let's work together to make cooked_chicken, cooked_porkchop, cooked_mutton.", - "agent_count": 3, - "target": { - "cooked_chicken": 1, - "cooked_porkchop": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop, 1 cooked_mutton. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop, 1 cooked_mutton. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop, 1 cooked_mutton. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." - } - }, - "multiagent_cooking_3_1_cooked_mutton_1_golden_carrot": { - "conversation": "Let's work together to make golden_carrot, cooked_mutton.", - "agent_count": 3, - "target": { - "golden_carrot": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_cookie": { - "conversation": "Let's work together to make cooked_chicken, cookie.", - "agent_count": 3, - "target": { - "cooked_chicken": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cookie. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cookie. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 cookie. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - } - }, - "multiagent_cooking_3_1_cookie_1_pumpkin_pie_1_suspicious_stew": { - "conversation": "Let's work together to make suspicious_stew, pumpkin_pie, cookie.", - "agent_count": 3, - "target": { - "suspicious_stew": 1, - "pumpkin_pie": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie, 1 cookie. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie, 1 cookie. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie, 1 cookie. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_cooked_mutton": { - "conversation": "Let's work together to make beetroot_soup, cooked_mutton.", - "agent_count": 3, - "target": { - "beetroot_soup": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." - } - }, - "multiagent_cooking_3_1_cooked_mutton_1_cooked_porkchop_1_cooked_rabbit": { - "conversation": "Let's work together to make cooked_mutton, cooked_porkchop, cooked_rabbit.", - "agent_count": 3, - "target": { - "cooked_mutton": 1, - "cooked_porkchop": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 cooked_rabbit. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 cooked_rabbit. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", - "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 cooked_rabbit. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit." - } - }, - "multiagent_cooking_3_1_cooked_rabbit_1_golden_carrot_1_mushroom_stew": { - "conversation": "Let's work together to make cooked_rabbit, golden_carrot, mushroom_stew.", - "agent_count": 3, - "target": { - "cooked_rabbit": 1, - "golden_carrot": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot, 1 mushroom_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot, 1 mushroom_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot, 1 mushroom_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - } - }, - "multiagent_cooking_3_1_cooked_porkchop_1_golden_carrot": { - "conversation": "Let's work together to make cooked_porkchop, golden_carrot.", - "agent_count": 3, - "target": { - "cooked_porkchop": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_suspicious_stew": { - "conversation": "Let's work together to make suspicious_stew, beetroot_soup.", - "agent_count": 3, - "target": { - "suspicious_stew": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - } - }, - "multiagent_cooking_3_1_cooked_porkchop_1_pumpkin_pie": { - "conversation": "Let's work together to make cooked_porkchop, pumpkin_pie.", - "agent_count": 3, - "target": { - "cooked_porkchop": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - } - }, - "multiagent_cooking_3_1_cooked_porkchop_1_cooked_rabbit_1_cookie": { - "conversation": "Let's work together to make cooked_porkchop, cooked_rabbit, cookie.", - "agent_count": 3, - "target": { - "cooked_porkchop": 1, - "cooked_rabbit": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_rabbit, 1 cookie. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_rabbit, 1 cookie. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_rabbit, 1 cookie. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - } - }, - "multiagent_cooking_3_1_mushroom_stew_1_suspicious_stew": { - "conversation": "Let's work together to make mushroom_stew, suspicious_stew.", - "agent_count": 3, - "target": { - "mushroom_stew": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_golden_carrot": { - "conversation": "Let's work together to make golden_carrot, beetroot_soup.", - "agent_count": 3, - "target": { - "golden_carrot": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_cooked_chicken_1_cooked_mutton": { - "conversation": "Let's work together to make cooked_mutton, cooked_chicken, beetroot_soup.", - "agent_count": 3, - "target": { - "cooked_mutton": 1, - "cooked_chicken": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_chicken, 1 beetroot_soup. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_chicken, 1 beetroot_soup. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_chicken, 1 beetroot_soup. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_mushroom_stew": { - "conversation": "Let's work together to make mushroom_stew, cooked_chicken.", - "agent_count": 3, - "target": { - "mushroom_stew": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_cooked_mutton_1_cooked_rabbit": { - "conversation": "Let's work together to make cooked_rabbit, beetroot_soup, cooked_mutton.", - "agent_count": 3, - "target": { - "cooked_rabbit": 1, - "beetroot_soup": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup, 1 cooked_mutton. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup, 1 cooked_mutton. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup, 1 cooked_mutton. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." - } - }, - "multiagent_cooking_3_1_cooked_rabbit_1_cookie": { - "conversation": "Let's work together to make cooked_rabbit, cookie.", - "agent_count": 3, - "target": { - "cooked_rabbit": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cookie. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cookie. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cookie. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_cooked_porkchop_1_cooked_rabbit": { - "conversation": "Let's work together to make cooked_rabbit, beetroot_soup, cooked_porkchop.", - "agent_count": 3, - "target": { - "cooked_rabbit": 1, - "beetroot_soup": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup, 1 cooked_porkchop. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup, 1 cooked_porkchop. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup, 1 cooked_porkchop. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." - } - }, - "multiagent_cooking_3_1_cooked_mutton_1_cooked_rabbit_1_mushroom_stew": { - "conversation": "Let's work together to make cooked_mutton, mushroom_stew, cooked_rabbit.", - "agent_count": 3, - "target": { - "cooked_mutton": 1, - "mushroom_stew": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 cooked_rabbit. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 cooked_rabbit. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", - "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 cooked_rabbit. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit." - } - }, - "multiagent_cooking_3_1_cooked_mutton_1_cookie_1_suspicious_stew": { - "conversation": "Let's work together to make cooked_mutton, cookie, suspicious_stew.", - "agent_count": 3, - "target": { - "cooked_mutton": 1, - "cookie": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cookie, 1 suspicious_stew. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cookie, 1 suspicious_stew. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 cookie, 1 suspicious_stew. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_cooked_porkchop_1_cookie": { - "conversation": "Let's work together to make cookie, cooked_porkchop, cooked_chicken.", - "agent_count": 3, - "target": { - "cookie": 1, - "cooked_porkchop": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop, 1 cooked_chicken. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop, 1 cooked_chicken. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "2": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop, 1 cooked_chicken. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_golden_carrot": { - "conversation": "Let's work together to make cooked_chicken, golden_carrot.", - "agent_count": 3, - "target": { - "cooked_chicken": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - } - }, - "multiagent_cooking_3_1_cooked_rabbit_1_mushroom_stew_1_pumpkin_pie": { - "conversation": "Let's work together to make mushroom_stew, pumpkin_pie, cooked_rabbit.", - "agent_count": 3, - "target": { - "mushroom_stew": 1, - "pumpkin_pie": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 pumpkin_pie, 1 cooked_rabbit. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 pumpkin_pie, 1 cooked_rabbit. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 pumpkin_pie, 1 cooked_rabbit. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit." - } - }, - "multiagent_cooking_3_1_cooked_porkchop_1_pumpkin_pie_1_suspicious_stew": { - "conversation": "Let's work together to make pumpkin_pie, suspicious_stew, cooked_porkchop.", - "agent_count": 3, - "target": { - "pumpkin_pie": 1, - "suspicious_stew": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew, 1 cooked_porkchop. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew, 1 cooked_porkchop. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew, 1 cooked_porkchop. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_pumpkin_pie": { - "conversation": "Let's work together to make pumpkin_pie, beetroot_soup.", - "agent_count": 3, - "target": { - "pumpkin_pie": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 beetroot_soup. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 beetroot_soup. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 beetroot_soup. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - } - }, - "multiagent_cooking_3_1_cooked_mutton_1_cooked_porkchop_1_cookie": { - "conversation": "Let's work together to make cookie, cooked_porkchop, cooked_mutton.", - "agent_count": 3, - "target": { - "cookie": 1, - "cooked_porkchop": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop, 1 cooked_mutton. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop, 1 cooked_mutton. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "2": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop, 1 cooked_mutton. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_pumpkin_pie_1_suspicious_stew": { - "conversation": "Let's work together to make suspicious_stew, pumpkin_pie, cooked_chicken.", - "agent_count": 3, - "target": { - "suspicious_stew": 1, - "pumpkin_pie": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie, 1 cooked_chicken. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie, 1 cooked_chicken. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie, 1 cooked_chicken. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." - } - }, - "multiagent_cooking_3_1_cooked_mutton_1_cookie_1_pumpkin_pie": { - "conversation": "Let's work together to make cooked_mutton, pumpkin_pie, cookie.", - "agent_count": 3, - "target": { - "cooked_mutton": 1, - "pumpkin_pie": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie, 1 cookie. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie, 1 cookie. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie, 1 cookie. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_cooked_mutton_1_cooked_rabbit": { - "conversation": "Let's work together to make cooked_chicken, cooked_rabbit, cooked_mutton.", - "agent_count": 3, - "target": { - "cooked_chicken": 1, - "cooked_rabbit": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 cooked_mutton. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 cooked_mutton. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 cooked_mutton. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_cooked_rabbit_1_pumpkin_pie": { - "conversation": "Let's work together to make cooked_chicken, cooked_rabbit, pumpkin_pie.", - "agent_count": 3, - "target": { - "cooked_chicken": 1, - "cooked_rabbit": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 pumpkin_pie. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 pumpkin_pie. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 pumpkin_pie. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_cooked_rabbit_1_suspicious_stew": { - "conversation": "Let's work together to make cooked_rabbit, cooked_chicken, suspicious_stew.", - "agent_count": 3, - "target": { - "cooked_rabbit": 1, - "cooked_chicken": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken, 1 suspicious_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken, 1 suspicious_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken, 1 suspicious_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - } - }, - "multiagent_cooking_3_1_cookie_1_golden_carrot_1_suspicious_stew": { - "conversation": "Let's work together to make golden_carrot, suspicious_stew, cookie.", - "agent_count": 3, - "target": { - "golden_carrot": 1, - "suspicious_stew": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cookie. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cookie. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cookie. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - } - }, - "multiagent_cooking_3_1_cooked_mutton_1_cookie_1_golden_carrot": { - "conversation": "Let's work together to make cookie, golden_carrot, cooked_mutton.", - "agent_count": 3, - "target": { - "cookie": 1, - "golden_carrot": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 golden_carrot, 1 cooked_mutton. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "1": "Collaborate with agents around you to make 1 cookie, 1 golden_carrot, 1 cooked_mutton. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "2": "Collaborate with agents around you to make 1 cookie, 1 golden_carrot, 1 cooked_mutton. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." - } - }, - "multiagent_cooking_3_1_cooked_mutton_1_cooked_rabbit": { - "conversation": "Let's work together to make cooked_rabbit, cooked_mutton.", - "agent_count": 3, - "target": { - "cooked_rabbit": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_mutton. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_mutton. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_mutton. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_mushroom_stew_1_pumpkin_pie": { - "conversation": "Let's work together to make mushroom_stew, beetroot_soup, pumpkin_pie.", - "agent_count": 3, - "target": { - "mushroom_stew": 1, - "beetroot_soup": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 pumpkin_pie. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 pumpkin_pie. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 pumpkin_pie. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_cooked_mutton_1_suspicious_stew": { - "conversation": "Let's work together to make suspicious_stew, beetroot_soup, cooked_mutton.", - "agent_count": 3, - "target": { - "suspicious_stew": 1, - "beetroot_soup": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup, 1 cooked_mutton. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup, 1 cooked_mutton. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup, 1 cooked_mutton. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_cooked_porkchop": { - "conversation": "Let's work together to make beetroot_soup, cooked_porkchop.", - "agent_count": 3, - "target": { - "beetroot_soup": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_suspicious_stew": { - "conversation": "Let's work together to make cooked_chicken, suspicious_stew.", - "agent_count": 3, - "target": { - "cooked_chicken": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - } - } -} \ No newline at end of file diff --git a/tasks/cooking_tasks/train_tasks/hells_kitchen_train_tasks.json b/tasks/cooking_tasks/train_tasks/hells_kitchen_train_tasks.json deleted file mode 100644 index 317257d..0000000 --- a/tasks/cooking_tasks/train_tasks/hells_kitchen_train_tasks.json +++ /dev/null @@ -1,3224 +0,0 @@ -{ - "multiagent_cooking_suspicious_stew_cooked_chicken_hells_kitchen": { - "conversation": "We need to make suspicious_stew and cooked_chicken together. You are supposed to make cooked_chicken and I am supposed to make suspicious_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "suspicious_stew", - "cooked_chicken" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make suspicious_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_chicken, but you don't have the recipe for it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_rabbit_stew_cooked_porkchop_hells_kitchen": { - "conversation": "We need to make rabbit_stew and cooked_porkchop together. You are supposed to make cooked_porkchop and I am supposed to make rabbit_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "rabbit_stew", - "cooked_porkchop" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make rabbit_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_porkchop, but you don't have the recipe for it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 8, - "max_steps_per_recipe": 6, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_pumpkin_pie_cooked_chicken_hells_kitchen": { - "conversation": "We need to make pumpkin_pie and cooked_chicken together. You are supposed to make cooked_chicken and I am supposed to make pumpkin_pie, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "pumpkin_pie", - "cooked_chicken" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make pumpkin_pie, but you don't have the recipe for it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_chicken, but you don't have the recipe for it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 6, - "max_steps_per_recipe": 4, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_suspicious_stew_cookie_hells_kitchen": { - "conversation": "We need to make suspicious_stew and cookie together. You are supposed to make cookie and I am supposed to make suspicious_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "suspicious_stew", - "cookie" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make suspicious_stew, but you don't have the recipe for it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cookie, but you don't have the recipe for it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 6, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_pumpkin_pie_beetroot_soup_hells_kitchen": { - "conversation": "We need to make pumpkin_pie and beetroot_soup together. You are supposed to make beetroot_soup and I am supposed to make pumpkin_pie, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "pumpkin_pie", - "beetroot_soup" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make pumpkin_pie, but you don't have the recipe for it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make beetroot_soup, but you don't have the recipe for it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 7, - "max_steps_per_recipe": 4, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_suspicious_stew_cooked_porkchop_hells_kitchen": { - "conversation": "We need to make suspicious_stew and cooked_porkchop together. You are supposed to make cooked_porkchop and I am supposed to make suspicious_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "suspicious_stew", - "cooked_porkchop" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make suspicious_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_porkchop, but you don't have the recipe for it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_chicken_beetroot_soup_hells_kitchen": { - "conversation": "We need to make cooked_chicken and beetroot_soup together. You are supposed to make beetroot_soup and I am supposed to make cooked_chicken, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_chicken", - "beetroot_soup" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_chicken, but you don't have the recipe for it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make beetroot_soup, but you don't have the recipe for it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_golden_apple_suspicious_stew_hells_kitchen": { - "conversation": "We need to make golden_apple and suspicious_stew together. You are supposed to make suspicious_stew and I am supposed to make golden_apple, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "golden_apple", - "suspicious_stew" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make golden_apple, but you don't have the recipe for it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make suspicious_stew, but you don't have the recipe for it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_chicken_golden_apple_hells_kitchen": { - "conversation": "We need to make cooked_chicken and golden_apple together. You are supposed to make golden_apple and I am supposed to make cooked_chicken, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_chicken", - "golden_apple" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_chicken, but you don't have the recipe for it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make golden_apple, but you don't have the recipe for it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 4, - "max_steps_per_recipe": 2, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cookie_cooked_beef_hells_kitchen": { - "conversation": "We need to make cookie and cooked_beef together. You are supposed to make cooked_beef and I am supposed to make cookie, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cookie", - "cooked_beef" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cookie, but you don't have the recipe for it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_beef, but you don't have the recipe for it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_rabbit_stew_cookie_hells_kitchen": { - "conversation": "We need to make rabbit_stew and cookie together. You are supposed to make cookie and I am supposed to make rabbit_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "rabbit_stew", - "cookie" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make rabbit_stew, but you don't have the recipe for it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cookie, but you don't have the recipe for it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 9, - "max_steps_per_recipe": 6, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_rabbit_stew_pumpkin_pie_hells_kitchen": { - "conversation": "We need to make rabbit_stew and pumpkin_pie together. You are supposed to make pumpkin_pie and I am supposed to make rabbit_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "rabbit_stew", - "pumpkin_pie" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make rabbit_stew, but you don't have the recipe for it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make pumpkin_pie, but you don't have the recipe for it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 10, - "max_steps_per_recipe": 6, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_suspicious_stew_rabbit_stew_hells_kitchen": { - "conversation": "We need to make suspicious_stew and rabbit_stew together. You are supposed to make rabbit_stew and I am supposed to make suspicious_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "suspicious_stew", - "rabbit_stew" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make suspicious_stew, but you don't have the recipe for it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make rabbit_stew, but you don't have the recipe for it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 9, - "max_steps_per_recipe": 6, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_beetroot_soup_suspicious_stew_hells_kitchen": { - "conversation": "We need to make beetroot_soup and suspicious_stew together. You are supposed to make suspicious_stew and I am supposed to make beetroot_soup, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "beetroot_soup", - "suspicious_stew" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make beetroot_soup, but you don't have the recipe for it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make suspicious_stew, but you don't have the recipe for it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 6, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_suspicious_stew_golden_apple_hells_kitchen": { - "conversation": "We need to make suspicious_stew and golden_apple together. You are supposed to make golden_apple and I am supposed to make suspicious_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "suspicious_stew", - "golden_apple" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make suspicious_stew, but you don't have the recipe for it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make golden_apple, but you don't have the recipe for it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_beef_cooked_chicken_hells_kitchen": { - "conversation": "We need to make cooked_beef and cooked_chicken together. You are supposed to make cooked_chicken and I am supposed to make cooked_beef, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_beef", - "cooked_chicken" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_beef, but you don't have the recipe for it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_chicken, but you don't have the recipe for it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 4, - "max_steps_per_recipe": 2, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_beef_cookie_hells_kitchen": { - "conversation": "We need to make cooked_beef and cookie together. You are supposed to make cookie and I am supposed to make cooked_beef, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_beef", - "cookie" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_beef, but you don't have the recipe for it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cookie, but you don't have the recipe for it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_suspicious_stew_cooked_beef_hells_kitchen": { - "conversation": "We need to make suspicious_stew and cooked_beef together. You are supposed to make cooked_beef and I am supposed to make suspicious_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "suspicious_stew", - "cooked_beef" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make suspicious_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_beef, but you don't have the recipe for it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_golden_apple_cooked_porkchop_hells_kitchen": { - "conversation": "We need to make golden_apple and cooked_porkchop together. You are supposed to make cooked_porkchop and I am supposed to make golden_apple, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "golden_apple", - "cooked_porkchop" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make golden_apple, but you don't have the recipe for it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_porkchop, but you don't have the recipe for it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 4, - "max_steps_per_recipe": 2, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_pumpkin_pie_golden_apple_hells_kitchen": { - "conversation": "We need to make pumpkin_pie and golden_apple together. You are supposed to make golden_apple and I am supposed to make pumpkin_pie, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "pumpkin_pie", - "golden_apple" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make pumpkin_pie, but you don't have the recipe for it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make golden_apple, but you don't have the recipe for it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 6, - "max_steps_per_recipe": 4, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cookie_beetroot_soup_hells_kitchen": { - "conversation": "We need to make cookie and beetroot_soup together. You are supposed to make beetroot_soup and I am supposed to make cookie, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cookie", - "beetroot_soup" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cookie, but you don't have the recipe for it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make beetroot_soup, but you don't have the recipe for it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 6, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_beef_pumpkin_pie_hells_kitchen": { - "conversation": "We need to make cooked_beef and pumpkin_pie together. You are supposed to make pumpkin_pie and I am supposed to make cooked_beef, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_beef", - "pumpkin_pie" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_beef, but you don't have the recipe for it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make pumpkin_pie, but you don't have the recipe for it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 6, - "max_steps_per_recipe": 4, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_chicken_cooked_porkchop_hells_kitchen": { - "conversation": "We need to make cooked_chicken and cooked_porkchop together. You are supposed to make cooked_porkchop and I am supposed to make cooked_chicken, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_chicken", - "cooked_porkchop" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_chicken, but you don't have the recipe for it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_porkchop, but you don't have the recipe for it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 4, - "max_steps_per_recipe": 2, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_beetroot_soup_cookie_hells_kitchen": { - "conversation": "We need to make beetroot_soup and cookie together. You are supposed to make cookie and I am supposed to make beetroot_soup, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "beetroot_soup", - "cookie" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make beetroot_soup, but you don't have the recipe for it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cookie, but you don't have the recipe for it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 6, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_beetroot_soup_rabbit_stew_hells_kitchen": { - "conversation": "We need to make beetroot_soup and rabbit_stew together. You are supposed to make rabbit_stew and I am supposed to make beetroot_soup, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "beetroot_soup", - "rabbit_stew" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make beetroot_soup, but you don't have the recipe for it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make rabbit_stew, but you don't have the recipe for it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 9, - "max_steps_per_recipe": 6, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_cooked_chicken_pumpkin_pie_hells_kitchen": { - "conversation": "We need to make cooked_chicken and pumpkin_pie together. You are supposed to make pumpkin_pie and I am supposed to make cooked_chicken, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_chicken", - "pumpkin_pie" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_chicken, but you don't have the recipe for it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make pumpkin_pie, but you don't have the recipe for it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 6, - "max_steps_per_recipe": 4, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_porkchop_cooked_beef_hells_kitchen": { - "conversation": "We need to make cooked_porkchop and cooked_beef together. You are supposed to make cooked_beef and I am supposed to make cooked_porkchop, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_porkchop", - "cooked_beef" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_porkchop, but you don't have the recipe for it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_beef, but you don't have the recipe for it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 4, - "max_steps_per_recipe": 2, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_porkchop_cookie_hells_kitchen": { - "conversation": "We need to make cooked_porkchop and cookie together. You are supposed to make cookie and I am supposed to make cooked_porkchop, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_porkchop", - "cookie" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_porkchop, but you don't have the recipe for it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cookie, but you don't have the recipe for it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_rabbit_cooked_porkchop_hells_kitchen": { - "conversation": "We need to make cooked_rabbit and cooked_porkchop together. You are supposed to make cooked_porkchop and I am supposed to make cooked_rabbit, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_rabbit", - "cooked_porkchop" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_rabbit, but you don't have the recipe for it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_porkchop, but you don't have the recipe for it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 4, - "max_steps_per_recipe": 2, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_beetroot_soup_cooked_rabbit_hells_kitchen": { - "conversation": "We need to make beetroot_soup and cooked_rabbit together. You are supposed to make cooked_rabbit and I am supposed to make beetroot_soup, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "beetroot_soup", - "cooked_rabbit" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make beetroot_soup, but you don't have the recipe for it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_rabbit, but you don't have the recipe for it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_golden_apple_cooked_beef_hells_kitchen": { - "conversation": "We need to make golden_apple and cooked_beef together. You are supposed to make cooked_beef and I am supposed to make golden_apple, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "golden_apple", - "cooked_beef" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make golden_apple, but you don't have the recipe for it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_beef, but you don't have the recipe for it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 4, - "max_steps_per_recipe": 2, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_rabbit_stew_cooked_chicken_hells_kitchen": { - "conversation": "We need to make rabbit_stew and cooked_chicken together. You are supposed to make cooked_chicken and I am supposed to make rabbit_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "rabbit_stew", - "cooked_chicken" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make rabbit_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_chicken, but you don't have the recipe for it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 8, - "max_steps_per_recipe": 6, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_porkchop_beetroot_soup_hells_kitchen": { - "conversation": "We need to make cooked_porkchop and beetroot_soup together. You are supposed to make beetroot_soup and I am supposed to make cooked_porkchop, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_porkchop", - "beetroot_soup" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_porkchop, but you don't have the recipe for it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make beetroot_soup, but you don't have the recipe for it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_porkchop_golden_apple_hells_kitchen": { - "conversation": "We need to make cooked_porkchop and golden_apple together. You are supposed to make golden_apple and I am supposed to make cooked_porkchop, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_porkchop", - "golden_apple" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_porkchop, but you don't have the recipe for it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make golden_apple, but you don't have the recipe for it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 4, - "max_steps_per_recipe": 2, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_rabbit_stew_cooked_rabbit_hells_kitchen": { - "conversation": "We need to make rabbit_stew and cooked_rabbit together. You are supposed to make cooked_rabbit and I am supposed to make rabbit_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "rabbit_stew", - "cooked_rabbit" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make rabbit_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_rabbit, but you don't have the recipe for it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 8, - "max_steps_per_recipe": 6, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_chicken_cooked_beef_hells_kitchen": { - "conversation": "We need to make cooked_chicken and cooked_beef together. You are supposed to make cooked_beef and I am supposed to make cooked_chicken, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_chicken", - "cooked_beef" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_chicken, but you don't have the recipe for it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_beef, but you don't have the recipe for it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 4, - "max_steps_per_recipe": 2, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_golden_apple_pumpkin_pie_hells_kitchen": { - "conversation": "We need to make golden_apple and pumpkin_pie together. You are supposed to make pumpkin_pie and I am supposed to make golden_apple, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "golden_apple", - "pumpkin_pie" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make golden_apple, but you don't have the recipe for it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make pumpkin_pie, but you don't have the recipe for it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 6, - "max_steps_per_recipe": 4, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_pumpkin_pie_cooked_porkchop_hells_kitchen": { - "conversation": "We need to make pumpkin_pie and cooked_porkchop together. You are supposed to make cooked_porkchop and I am supposed to make pumpkin_pie, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "pumpkin_pie", - "cooked_porkchop" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make pumpkin_pie, but you don't have the recipe for it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_porkchop, but you don't have the recipe for it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 6, - "max_steps_per_recipe": 4, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_porkchop_rabbit_stew_hells_kitchen": { - "conversation": "We need to make cooked_porkchop and rabbit_stew together. You are supposed to make rabbit_stew and I am supposed to make cooked_porkchop, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_porkchop", - "rabbit_stew" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_porkchop, but you don't have the recipe for it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make rabbit_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 8, - "max_steps_per_recipe": 6, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_pumpkin_pie_rabbit_stew_hells_kitchen": { - "conversation": "We need to make pumpkin_pie and rabbit_stew together. You are supposed to make rabbit_stew and I am supposed to make pumpkin_pie, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "pumpkin_pie", - "rabbit_stew" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make pumpkin_pie, but you don't have the recipe for it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make rabbit_stew, but you don't have the recipe for it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 10, - "max_steps_per_recipe": 6, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_cookie_golden_apple_hells_kitchen": { - "conversation": "We need to make cookie and golden_apple together. You are supposed to make golden_apple and I am supposed to make cookie, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cookie", - "golden_apple" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cookie, but you don't have the recipe for it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make golden_apple, but you don't have the recipe for it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_beef_cooked_porkchop_hells_kitchen": { - "conversation": "We need to make cooked_beef and cooked_porkchop together. You are supposed to make cooked_porkchop and I am supposed to make cooked_beef, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_beef", - "cooked_porkchop" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_beef, but you don't have the recipe for it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_porkchop, but you don't have the recipe for it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 4, - "max_steps_per_recipe": 2, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cookie_cooked_rabbit_hells_kitchen": { - "conversation": "We need to make cookie and cooked_rabbit together. You are supposed to make cooked_rabbit and I am supposed to make cookie, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cookie", - "cooked_rabbit" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cookie, but you don't have the recipe for it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_rabbit, but you don't have the recipe for it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_golden_apple_cooked_rabbit_hells_kitchen": { - "conversation": "We need to make golden_apple and cooked_rabbit together. You are supposed to make cooked_rabbit and I am supposed to make golden_apple, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "golden_apple", - "cooked_rabbit" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make golden_apple, but you don't have the recipe for it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_rabbit, but you don't have the recipe for it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 4, - "max_steps_per_recipe": 2, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_porkchop_pumpkin_pie_hells_kitchen": { - "conversation": "We need to make cooked_porkchop and pumpkin_pie together. You are supposed to make pumpkin_pie and I am supposed to make cooked_porkchop, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_porkchop", - "pumpkin_pie" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_porkchop, but you don't have the recipe for it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make pumpkin_pie, but you don't have the recipe for it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 6, - "max_steps_per_recipe": 4, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_beetroot_soup_cooked_beef_hells_kitchen": { - "conversation": "We need to make beetroot_soup and cooked_beef together. You are supposed to make cooked_beef and I am supposed to make beetroot_soup, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "beetroot_soup", - "cooked_beef" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make beetroot_soup, but you don't have the recipe for it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_beef, but you don't have the recipe for it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_rabbit_stew_beetroot_soup_hells_kitchen": { - "conversation": "We need to make rabbit_stew and beetroot_soup together. You are supposed to make beetroot_soup and I am supposed to make rabbit_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "rabbit_stew", - "beetroot_soup" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make rabbit_stew, but you don't have the recipe for it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make beetroot_soup, but you don't have the recipe for it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 9, - "max_steps_per_recipe": 6, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_pumpkin_pie_suspicious_stew_hells_kitchen": { - "conversation": "We need to make pumpkin_pie and suspicious_stew together. You are supposed to make suspicious_stew and I am supposed to make pumpkin_pie, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "pumpkin_pie", - "suspicious_stew" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make pumpkin_pie, but you don't have the recipe for it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make suspicious_stew, but you don't have the recipe for it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 7, - "max_steps_per_recipe": 4, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_rabbit_suspicious_stew_hells_kitchen": { - "conversation": "We need to make cooked_rabbit and suspicious_stew together. You are supposed to make suspicious_stew and I am supposed to make cooked_rabbit, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_rabbit", - "suspicious_stew" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_rabbit, but you don't have the recipe for it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make suspicious_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_beef_golden_apple_hells_kitchen": { - "conversation": "We need to make cooked_beef and golden_apple together. You are supposed to make golden_apple and I am supposed to make cooked_beef, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_beef", - "golden_apple" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_beef, but you don't have the recipe for it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make golden_apple, but you don't have the recipe for it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 4, - "max_steps_per_recipe": 2, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_rabbit_golden_apple_hells_kitchen": { - "conversation": "We need to make cooked_rabbit and golden_apple together. You are supposed to make golden_apple and I am supposed to make cooked_rabbit, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_rabbit", - "golden_apple" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_rabbit, but you don't have the recipe for it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make golden_apple, but you don't have the recipe for it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 4, - "max_steps_per_recipe": 2, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_beetroot_soup_golden_apple_hells_kitchen": { - "conversation": "We need to make beetroot_soup and golden_apple together. You are supposed to make golden_apple and I am supposed to make beetroot_soup, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "beetroot_soup", - "golden_apple" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make beetroot_soup, but you don't have the recipe for it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make golden_apple, but you don't have the recipe for it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_pumpkin_pie_cookie_hells_kitchen": { - "conversation": "We need to make pumpkin_pie and cookie together. You are supposed to make cookie and I am supposed to make pumpkin_pie, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "pumpkin_pie", - "cookie" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make pumpkin_pie, but you don't have the recipe for it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cookie, but you don't have the recipe for it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 7, - "max_steps_per_recipe": 4, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_golden_apple_beetroot_soup_hells_kitchen": { - "conversation": "We need to make golden_apple and beetroot_soup together. You are supposed to make beetroot_soup and I am supposed to make golden_apple, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "golden_apple", - "beetroot_soup" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make golden_apple, but you don't have the recipe for it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make beetroot_soup, but you don't have the recipe for it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_suspicious_stew_beetroot_soup_hells_kitchen": { - "conversation": "We need to make suspicious_stew and beetroot_soup together. You are supposed to make beetroot_soup and I am supposed to make suspicious_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "suspicious_stew", - "beetroot_soup" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make suspicious_stew, but you don't have the recipe for it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make beetroot_soup, but you don't have the recipe for it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 6, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_pumpkin_pie_cooked_beef_hells_kitchen": { - "conversation": "We need to make pumpkin_pie and cooked_beef together. You are supposed to make cooked_beef and I am supposed to make pumpkin_pie, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "pumpkin_pie", - "cooked_beef" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make pumpkin_pie, but you don't have the recipe for it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_beef, but you don't have the recipe for it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 6, - "max_steps_per_recipe": 4, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_rabbit_cooked_chicken_hells_kitchen": { - "conversation": "We need to make cooked_rabbit and cooked_chicken together. You are supposed to make cooked_chicken and I am supposed to make cooked_rabbit, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_rabbit", - "cooked_chicken" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_rabbit, but you don't have the recipe for it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_chicken, but you don't have the recipe for it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 4, - "max_steps_per_recipe": 2, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_golden_apple_rabbit_stew_hells_kitchen": { - "conversation": "We need to make golden_apple and rabbit_stew together. You are supposed to make rabbit_stew and I am supposed to make golden_apple, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "golden_apple", - "rabbit_stew" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make golden_apple, but you don't have the recipe for it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make rabbit_stew, but you don't have the recipe for it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 8, - "max_steps_per_recipe": 6, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_porkchop_cooked_rabbit_hells_kitchen": { - "conversation": "We need to make cooked_porkchop and cooked_rabbit together. You are supposed to make cooked_rabbit and I am supposed to make cooked_porkchop, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_porkchop", - "cooked_rabbit" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_porkchop, but you don't have the recipe for it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_rabbit, but you don't have the recipe for it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 4, - "max_steps_per_recipe": 2, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cookie_rabbit_stew_hells_kitchen": { - "conversation": "We need to make cookie and rabbit_stew together. You are supposed to make rabbit_stew and I am supposed to make cookie, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cookie", - "rabbit_stew" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cookie, but you don't have the recipe for it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make rabbit_stew, but you don't have the recipe for it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 9, - "max_steps_per_recipe": 6, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_cookie_cooked_chicken_hells_kitchen": { - "conversation": "We need to make cookie and cooked_chicken together. You are supposed to make cooked_chicken and I am supposed to make cookie, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cookie", - "cooked_chicken" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cookie, but you don't have the recipe for it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_chicken, but you don't have the recipe for it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_chicken_cookie_hells_kitchen": { - "conversation": "We need to make cooked_chicken and cookie together. You are supposed to make cookie and I am supposed to make cooked_chicken, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_chicken", - "cookie" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_chicken, but you don't have the recipe for it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cookie, but you don't have the recipe for it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_rabbit_stew_golden_apple_hells_kitchen": { - "conversation": "We need to make rabbit_stew and golden_apple together. You are supposed to make golden_apple and I am supposed to make rabbit_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "rabbit_stew", - "golden_apple" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make rabbit_stew, but you don't have the recipe for it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make golden_apple, but you don't have the recipe for it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 8, - "max_steps_per_recipe": 6, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_chicken_rabbit_stew_hells_kitchen": { - "conversation": "We need to make cooked_chicken and rabbit_stew together. You are supposed to make rabbit_stew and I am supposed to make cooked_chicken, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_chicken", - "rabbit_stew" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_chicken, but you don't have the recipe for it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make rabbit_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 8, - "max_steps_per_recipe": 6, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_rabbit_cookie_hells_kitchen": { - "conversation": "We need to make cooked_rabbit and cookie together. You are supposed to make cookie and I am supposed to make cooked_rabbit, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_rabbit", - "cookie" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_rabbit, but you don't have the recipe for it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cookie, but you don't have the recipe for it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cookie_pumpkin_pie_hells_kitchen": { - "conversation": "We need to make cookie and pumpkin_pie together. You are supposed to make pumpkin_pie and I am supposed to make cookie, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cookie", - "pumpkin_pie" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cookie, but you don't have the recipe for it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make pumpkin_pie, but you don't have the recipe for it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 7, - "max_steps_per_recipe": 4, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_beetroot_soup_pumpkin_pie_hells_kitchen": { - "conversation": "We need to make beetroot_soup and pumpkin_pie together. You are supposed to make pumpkin_pie and I am supposed to make beetroot_soup, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "beetroot_soup", - "pumpkin_pie" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make beetroot_soup, but you don't have the recipe for it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make pumpkin_pie, but you don't have the recipe for it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 7, - "max_steps_per_recipe": 4, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_beef_cooked_rabbit_hells_kitchen": { - "conversation": "We need to make cooked_beef and cooked_rabbit together. You are supposed to make cooked_rabbit and I am supposed to make cooked_beef, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_beef", - "cooked_rabbit" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_beef, but you don't have the recipe for it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_rabbit, but you don't have the recipe for it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 4, - "max_steps_per_recipe": 2, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_pumpkin_pie_cooked_rabbit_hells_kitchen": { - "conversation": "We need to make pumpkin_pie and cooked_rabbit together. You are supposed to make cooked_rabbit and I am supposed to make pumpkin_pie, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "pumpkin_pie", - "cooked_rabbit" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make pumpkin_pie, but you don't have the recipe for it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_rabbit, but you don't have the recipe for it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 6, - "max_steps_per_recipe": 4, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_beef_beetroot_soup_hells_kitchen": { - "conversation": "We need to make cooked_beef and beetroot_soup together. You are supposed to make beetroot_soup and I am supposed to make cooked_beef, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_beef", - "beetroot_soup" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_beef, but you don't have the recipe for it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make beetroot_soup, but you don't have the recipe for it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_rabbit_rabbit_stew_hells_kitchen": { - "conversation": "We need to make cooked_rabbit and rabbit_stew together. You are supposed to make rabbit_stew and I am supposed to make cooked_rabbit, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_rabbit", - "rabbit_stew" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_rabbit, but you don't have the recipe for it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make rabbit_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 8, - "max_steps_per_recipe": 6, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_rabbit_stew_cooked_beef_hells_kitchen": { - "conversation": "We need to make rabbit_stew and cooked_beef together. You are supposed to make cooked_beef and I am supposed to make rabbit_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "rabbit_stew", - "cooked_beef" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make rabbit_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_beef, but you don't have the recipe for it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 8, - "max_steps_per_recipe": 6, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_golden_apple_cooked_chicken_hells_kitchen": { - "conversation": "We need to make golden_apple and cooked_chicken together. You are supposed to make cooked_chicken and I am supposed to make golden_apple, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "golden_apple", - "cooked_chicken" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make golden_apple, but you don't have the recipe for it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_chicken, but you don't have the recipe for it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 4, - "max_steps_per_recipe": 2, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_beetroot_soup_cooked_chicken_hells_kitchen": { - "conversation": "We need to make beetroot_soup and cooked_chicken together. You are supposed to make cooked_chicken and I am supposed to make beetroot_soup, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "beetroot_soup", - "cooked_chicken" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make beetroot_soup, but you don't have the recipe for it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_chicken, but you don't have the recipe for it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_chicken_suspicious_stew_hells_kitchen": { - "conversation": "We need to make cooked_chicken and suspicious_stew together. You are supposed to make suspicious_stew and I am supposed to make cooked_chicken, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_chicken", - "suspicious_stew" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_chicken, but you don't have the recipe for it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make suspicious_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_suspicious_stew_pumpkin_pie_hells_kitchen": { - "conversation": "We need to make suspicious_stew and pumpkin_pie together. You are supposed to make pumpkin_pie and I am supposed to make suspicious_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "suspicious_stew", - "pumpkin_pie" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make suspicious_stew, but you don't have the recipe for it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make pumpkin_pie, but you don't have the recipe for it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 7, - "max_steps_per_recipe": 4, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_rabbit_cooked_beef_hells_kitchen": { - "conversation": "We need to make cooked_rabbit and cooked_beef together. You are supposed to make cooked_beef and I am supposed to make cooked_rabbit, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_rabbit", - "cooked_beef" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_rabbit, but you don't have the recipe for it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_beef, but you don't have the recipe for it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 4, - "max_steps_per_recipe": 2, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_porkchop_cooked_chicken_hells_kitchen": { - "conversation": "We need to make cooked_porkchop and cooked_chicken together. You are supposed to make cooked_chicken and I am supposed to make cooked_porkchop, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_porkchop", - "cooked_chicken" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_porkchop, but you don't have the recipe for it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_chicken, but you don't have the recipe for it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 4, - "max_steps_per_recipe": 2, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_beef_rabbit_stew_hells_kitchen": { - "conversation": "We need to make cooked_beef and rabbit_stew together. You are supposed to make rabbit_stew and I am supposed to make cooked_beef, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_beef", - "rabbit_stew" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_beef, but you don't have the recipe for it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make rabbit_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 8, - "max_steps_per_recipe": 6, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_golden_apple_cookie_hells_kitchen": { - "conversation": "We need to make golden_apple and cookie together. You are supposed to make cookie and I am supposed to make golden_apple, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "golden_apple", - "cookie" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make golden_apple, but you don't have the recipe for it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cookie, but you don't have the recipe for it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_rabbit_pumpkin_pie_hells_kitchen": { - "conversation": "We need to make cooked_rabbit and pumpkin_pie together. You are supposed to make pumpkin_pie and I am supposed to make cooked_rabbit, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_rabbit", - "pumpkin_pie" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_rabbit, but you don't have the recipe for it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make pumpkin_pie, but you don't have the recipe for it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 6, - "max_steps_per_recipe": 4, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_rabbit_stew_suspicious_stew_hells_kitchen": { - "conversation": "We need to make rabbit_stew and suspicious_stew together. You are supposed to make suspicious_stew and I am supposed to make rabbit_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "rabbit_stew", - "suspicious_stew" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make rabbit_stew, but you don't have the recipe for it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make suspicious_stew, but you don't have the recipe for it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 9, - "max_steps_per_recipe": 6, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_beetroot_soup_cooked_porkchop_hells_kitchen": { - "conversation": "We need to make beetroot_soup and cooked_porkchop together. You are supposed to make cooked_porkchop and I am supposed to make beetroot_soup, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "beetroot_soup", - "cooked_porkchop" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make beetroot_soup, but you don't have the recipe for it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_porkchop, but you don't have the recipe for it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_suspicious_stew_cooked_rabbit_hells_kitchen": { - "conversation": "We need to make suspicious_stew and cooked_rabbit together. You are supposed to make cooked_rabbit and I am supposed to make suspicious_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "suspicious_stew", - "cooked_rabbit" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make suspicious_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_rabbit, but you don't have the recipe for it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cookie_suspicious_stew_hells_kitchen": { - "conversation": "We need to make cookie and suspicious_stew together. You are supposed to make suspicious_stew and I am supposed to make cookie, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cookie", - "suspicious_stew" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cookie, but you don't have the recipe for it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make suspicious_stew, but you don't have the recipe for it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 6, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_porkchop_suspicious_stew_hells_kitchen": { - "conversation": "We need to make cooked_porkchop and suspicious_stew together. You are supposed to make suspicious_stew and I am supposed to make cooked_porkchop, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_porkchop", - "suspicious_stew" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_porkchop, but you don't have the recipe for it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make suspicious_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_rabbit_beetroot_soup_hells_kitchen": { - "conversation": "We need to make cooked_rabbit and beetroot_soup together. You are supposed to make beetroot_soup and I am supposed to make cooked_rabbit, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_rabbit", - "beetroot_soup" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_rabbit, but you don't have the recipe for it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make beetroot_soup, but you don't have the recipe for it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cookie_cooked_porkchop_hells_kitchen": { - "conversation": "We need to make cookie and cooked_porkchop together. You are supposed to make cooked_porkchop and I am supposed to make cookie, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cookie", - "cooked_porkchop" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cookie, but you don't have the recipe for it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_porkchop, but you don't have the recipe for it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_chicken_cooked_rabbit_hells_kitchen": { - "conversation": "We need to make cooked_chicken and cooked_rabbit together. You are supposed to make cooked_rabbit and I am supposed to make cooked_chicken, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_chicken", - "cooked_rabbit" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_chicken, but you don't have the recipe for it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_rabbit, but you don't have the recipe for it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 4, - "max_steps_per_recipe": 2, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_beef_suspicious_stew_hells_kitchen": { - "conversation": "We need to make cooked_beef and suspicious_stew together. You are supposed to make suspicious_stew and I am supposed to make cooked_beef, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_beef", - "suspicious_stew" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_beef, but you don't have the recipe for it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make suspicious_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - } -} \ No newline at end of file diff --git a/tasks/cooking_tasks/train_tasks/train_tasks.json b/tasks/cooking_tasks/train_tasks/train_tasks.json deleted file mode 100644 index dc8350e..0000000 --- a/tasks/cooking_tasks/train_tasks/train_tasks.json +++ /dev/null @@ -1,2417 +0,0 @@ -{ - "multiagent_cooking_1_cooked_porkchop_1_cooked_rabbit_blocked_access_0": { - "conversation": "Let's collaborate to make cooked_rabbit and cooked_porkchop.", - "agent_count": 2, - "target": { - "cooked_rabbit": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop. ", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_cooked_mutton_blocked_access_1": { - "conversation": "Let's work together to make cooked_mutton.", - "agent_count": 2, - "target": { - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "1": "Collaborate with agents around you to make 1 cooked_mutton. " - }, - "difficulty_metrics": { - "total_recipe_steps": 2, - "blocked_agents_count": 1, - "unique_target_items": 1, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "multiagent_cooking_1_cookie_1_mushroom_stew": { - "conversation": "Let's collaborate to make cookie and mushroom_stew.", - "agent_count": 2, - "target": { - "cookie": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "1": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_beetroot_soup_1_golden_carrot_blocked_access_1": { - "conversation": "Let's collaborate to make beetroot_soup and golden_carrot.", - "agent_count": 2, - "target": { - "beetroot_soup": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 golden_carrot. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 golden_carrot. " - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_beetroot_soup_1_cooked_mutton": { - "conversation": "Let's collaborate to make cooked_mutton and beetroot_soup.", - "agent_count": 2, - "target": { - "cooked_mutton": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_cooked_porkchop": { - "conversation": "Let's work together to make cooked_porkchop.", - "agent_count": 2, - "target": { - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "1": "Collaborate with agents around you to make 1 cooked_porkchop. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." - }, - "difficulty_metrics": { - "total_recipe_steps": 2, - "blocked_agents_count": 0, - "unique_target_items": 1, - "overall_difficulty_score": 2, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "multiagent_cooking_1_cooked_porkchop_1_pumpkin_pie": { - "conversation": "Let's collaborate to make pumpkin_pie and cooked_porkchop.", - "agent_count": 2, - "target": { - "pumpkin_pie": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_porkchop. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_porkchop. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_cooked_chicken_1_suspicious_stew": { - "conversation": "Let's collaborate to make cooked_chicken and suspicious_stew.", - "agent_count": 2, - "target": { - "cooked_chicken": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_beetroot_soup_1_cooked_rabbit_blocked_access_0": { - "conversation": "Let's collaborate to make beetroot_soup and cooked_rabbit.", - "agent_count": 2, - "target": { - "beetroot_soup": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_rabbit. ", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_rabbit. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit." - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_cooked_chicken_1_cooked_rabbit_blocked_access_0_1": { - "conversation": "Let's collaborate to make cooked_rabbit and cooked_chicken.", - "agent_count": 2, - "target": { - "cooked_rabbit": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken. ", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken. " - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 2, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_cooked_mutton_1_cookie_blocked_access_1": { - "conversation": "Let's collaborate to make cookie and cooked_mutton.", - "agent_count": 2, - "target": { - "cookie": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_mutton. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_mutton. " - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_beetroot_soup_1_mushroom_stew_blocked_access_0_1": { - "conversation": "Let's collaborate to make mushroom_stew and beetroot_soup.", - "agent_count": 2, - "target": { - "mushroom_stew": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup. ", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup. " - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 2, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_1_beetroot_soup_1_suspicious_stew": { - "conversation": "Let's collaborate to make suspicious_stew and beetroot_soup.", - "agent_count": 2, - "target": { - "suspicious_stew": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_beetroot_soup_1_cooked_porkchop_blocked_access_0_1": { - "conversation": "Let's collaborate to make beetroot_soup and cooked_porkchop.", - "agent_count": 2, - "target": { - "beetroot_soup": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop. ", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop. " - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 2, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_1_beetroot_soup_1_pumpkin_pie_blocked_access_0": { - "conversation": "Let's collaborate to make beetroot_soup and pumpkin_pie.", - "agent_count": 2, - "target": { - "beetroot_soup": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie. ", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_beetroot_soup_1_mushroom_stew": { - "conversation": "Let's collaborate to make mushroom_stew and beetroot_soup.", - "agent_count": 2, - "target": { - "mushroom_stew": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_cookie_1_suspicious_stew": { - "conversation": "Let's collaborate to make cookie and suspicious_stew.", - "agent_count": 2, - "target": { - "cookie": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 suspicious_stew. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "1": "Collaborate with agents around you to make 1 cookie, 1 suspicious_stew. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_beetroot_soup_1_cookie": { - "conversation": "Let's collaborate to make beetroot_soup and cookie.", - "agent_count": 2, - "target": { - "beetroot_soup": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_golden_carrot_1_pumpkin_pie_blocked_access_0": { - "conversation": "Let's collaborate to make pumpkin_pie and golden_carrot.", - "agent_count": 2, - "target": { - "pumpkin_pie": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot. ", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_golden_carrot_1_suspicious_stew_blocked_access_0_1": { - "conversation": "Let's collaborate to make suspicious_stew and golden_carrot.", - "agent_count": 2, - "target": { - "suspicious_stew": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 golden_carrot. ", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 golden_carrot. " - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 2, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_1_cooked_porkchop_1_cooked_rabbit_blocked_access_0_1": { - "conversation": "Let's collaborate to make cooked_porkchop and cooked_rabbit.", - "agent_count": 2, - "target": { - "cooked_porkchop": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_rabbit. ", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_rabbit. " - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 2, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_cooked_porkchop_1_cookie_blocked_access_0": { - "conversation": "Let's collaborate to make cookie and cooked_porkchop.", - "agent_count": 2, - "target": { - "cookie": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop. ", - "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_cooked_chicken_1_mushroom_stew": { - "conversation": "Let's collaborate to make mushroom_stew and cooked_chicken.", - "agent_count": 2, - "target": { - "mushroom_stew": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_cooked_porkchop_1_cooked_rabbit": { - "conversation": "Let's collaborate to make cooked_rabbit and cooked_porkchop.", - "agent_count": 2, - "target": { - "cooked_rabbit": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "multiagent_cooking_1_cooked_chicken_1_mushroom_stew_blocked_access_1": { - "conversation": "Let's collaborate to make cooked_chicken and mushroom_stew.", - "agent_count": 2, - "target": { - "cooked_chicken": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 mushroom_stew. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 mushroom_stew. " - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_cookie_blocked_access_0_1": { - "conversation": "Let's work together to make cookie.", - "agent_count": 2, - "target": { - "cookie": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie. ", - "1": "Collaborate with agents around you to make 1 cookie. " - }, - "difficulty_metrics": { - "total_recipe_steps": 3, - "blocked_agents_count": 2, - "unique_target_items": 1, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_suspicious_stew_blocked_access_1": { - "conversation": "Let's work together to make suspicious_stew.", - "agent_count": 2, - "target": { - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "1": "Collaborate with agents around you to make 1 suspicious_stew. " - }, - "difficulty_metrics": { - "total_recipe_steps": 3, - "blocked_agents_count": 1, - "unique_target_items": 1, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "multiagent_cooking_1_cooked_porkchop_1_suspicious_stew_blocked_access_0": { - "conversation": "Let's collaborate to make suspicious_stew and cooked_porkchop.", - "agent_count": 2, - "target": { - "suspicious_stew": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop. ", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_cooked_rabbit_1_mushroom_stew_blocked_access_0_1": { - "conversation": "Let's collaborate to make cooked_rabbit and mushroom_stew.", - "agent_count": 2, - "target": { - "cooked_rabbit": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew. ", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew. " - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 2, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_1_cooked_rabbit_1_cookie": { - "conversation": "Let's collaborate to make cooked_rabbit and cookie.", - "agent_count": 2, - "target": { - "cooked_rabbit": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cookie. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cookie. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_cooked_mutton_blocked_access_0_1": { - "conversation": "Let's work together to make cooked_mutton.", - "agent_count": 2, - "target": { - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton. ", - "1": "Collaborate with agents around you to make 1 cooked_mutton. " - }, - "difficulty_metrics": { - "total_recipe_steps": 2, - "blocked_agents_count": 2, - "unique_target_items": 1, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_cooked_mutton_1_mushroom_stew": { - "conversation": "Let's collaborate to make mushroom_stew and cooked_mutton.", - "agent_count": 2, - "target": { - "mushroom_stew": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_beetroot_soup_1_cooked_porkchop": { - "conversation": "Let's collaborate to make beetroot_soup and cooked_porkchop.", - "agent_count": 2, - "target": { - "beetroot_soup": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_cooked_chicken_1_cooked_rabbit_blocked_access_1": { - "conversation": "Let's collaborate to make cooked_chicken and cooked_rabbit.", - "agent_count": 2, - "target": { - "cooked_chicken": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit. " - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_cooked_chicken_1_cooked_porkchop": { - "conversation": "Let's collaborate to make cooked_porkchop and cooked_chicken.", - "agent_count": 2, - "target": { - "cooked_porkchop": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "multiagent_cooking_1_suspicious_stew": { - "conversation": "Let's work together to make suspicious_stew.", - "agent_count": 2, - "target": { - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "1": "Collaborate with agents around you to make 1 suspicious_stew. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - }, - "difficulty_metrics": { - "total_recipe_steps": 3, - "blocked_agents_count": 0, - "unique_target_items": 1, - "overall_difficulty_score": 2, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "multiagent_cooking_1_pumpkin_pie_1_suspicious_stew": { - "conversation": "Let's collaborate to make pumpkin_pie and suspicious_stew.", - "agent_count": 2, - "target": { - "pumpkin_pie": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_cooked_chicken_1_mushroom_stew_blocked_access_0_1": { - "conversation": "Let's collaborate to make mushroom_stew and cooked_chicken.", - "agent_count": 2, - "target": { - "mushroom_stew": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken. ", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken. " - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 2, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_1_cookie": { - "conversation": "Let's work together to make cookie.", - "agent_count": 2, - "target": { - "cookie": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "1": "Collaborate with agents around you to make 1 cookie. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - }, - "difficulty_metrics": { - "total_recipe_steps": 3, - "blocked_agents_count": 0, - "unique_target_items": 1, - "overall_difficulty_score": 2, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "multiagent_cooking_1_cookie_1_golden_carrot": { - "conversation": "Let's collaborate to make cookie and golden_carrot.", - "agent_count": 2, - "target": { - "cookie": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 golden_carrot. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "1": "Collaborate with agents around you to make 1 cookie, 1 golden_carrot. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_beetroot_soup_1_golden_carrot": { - "conversation": "Let's collaborate to make golden_carrot and beetroot_soup.", - "agent_count": 2, - "target": { - "golden_carrot": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_cooked_rabbit_1_suspicious_stew_blocked_access_1": { - "conversation": "Let's collaborate to make cooked_rabbit and suspicious_stew.", - "agent_count": 2, - "target": { - "cooked_rabbit": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew. " - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_beetroot_soup_1_cookie_blocked_access_1": { - "conversation": "Let's collaborate to make beetroot_soup and cookie.", - "agent_count": 2, - "target": { - "beetroot_soup": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie. " - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_cooked_mutton_blocked_access_0": { - "conversation": "Let's work together to make cooked_mutton.", - "agent_count": 2, - "target": { - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton. ", - "1": "Collaborate with agents around you to make 1 cooked_mutton. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." - }, - "difficulty_metrics": { - "total_recipe_steps": 2, - "blocked_agents_count": 1, - "unique_target_items": 1, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "multiagent_cooking_1_cooked_mutton_1_suspicious_stew_blocked_access_1": { - "conversation": "Let's collaborate to make suspicious_stew and cooked_mutton.", - "agent_count": 2, - "target": { - "suspicious_stew": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton. " - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_cooked_rabbit_1_golden_carrot": { - "conversation": "Let's collaborate to make cooked_rabbit and golden_carrot.", - "agent_count": 2, - "target": { - "cooked_rabbit": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_pumpkin_pie_blocked_access_1": { - "conversation": "Let's work together to make pumpkin_pie.", - "agent_count": 2, - "target": { - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "1": "Collaborate with agents around you to make 1 pumpkin_pie. " - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 1, - "unique_target_items": 1, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "multiagent_cooking_1_cooked_porkchop_blocked_access_1": { - "conversation": "Let's work together to make cooked_porkchop.", - "agent_count": 2, - "target": { - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "1": "Collaborate with agents around you to make 1 cooked_porkchop. " - }, - "difficulty_metrics": { - "total_recipe_steps": 2, - "blocked_agents_count": 1, - "unique_target_items": 1, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "multiagent_cooking_1_cooked_rabbit_1_pumpkin_pie_blocked_access_0_1": { - "conversation": "Let's collaborate to make cooked_rabbit and pumpkin_pie.", - "agent_count": 2, - "target": { - "cooked_rabbit": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie. ", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie. " - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 2, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_1_cooked_rabbit_blocked_access_0_1": { - "conversation": "Let's work together to make cooked_rabbit.", - "agent_count": 2, - "target": { - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit. ", - "1": "Collaborate with agents around you to make 1 cooked_rabbit. " - }, - "difficulty_metrics": { - "total_recipe_steps": 2, - "blocked_agents_count": 2, - "unique_target_items": 1, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_cooked_mutton_1_cookie_blocked_access_0_1": { - "conversation": "Let's collaborate to make cooked_mutton and cookie.", - "agent_count": 2, - "target": { - "cooked_mutton": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cookie. ", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cookie. " - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 2, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_1_golden_carrot_1_suspicious_stew": { - "conversation": "Let's collaborate to make golden_carrot and suspicious_stew.", - "agent_count": 2, - "target": { - "golden_carrot": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_golden_carrot_1_pumpkin_pie_blocked_access_1": { - "conversation": "Let's collaborate to make pumpkin_pie and golden_carrot.", - "agent_count": 2, - "target": { - "pumpkin_pie": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot. " - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_cooked_mutton_1_cooked_porkchop_blocked_access_1": { - "conversation": "Let's collaborate to make cooked_porkchop and cooked_mutton.", - "agent_count": 2, - "target": { - "cooked_porkchop": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton. " - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_cooked_porkchop_1_golden_carrot": { - "conversation": "Let's collaborate to make golden_carrot and cooked_porkchop.", - "agent_count": 2, - "target": { - "golden_carrot": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_porkchop. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_porkchop. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_cooked_chicken_1_cooked_porkchop_blocked_access_1": { - "conversation": "Let's collaborate to make cooked_chicken and cooked_porkchop.", - "agent_count": 2, - "target": { - "cooked_chicken": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop. " - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_beetroot_soup_1_suspicious_stew_blocked_access_0_1": { - "conversation": "Let's collaborate to make suspicious_stew and beetroot_soup.", - "agent_count": 2, - "target": { - "suspicious_stew": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup. ", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup. " - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 2, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_1_beetroot_soup_blocked_access_0": { - "conversation": "Let's work together to make beetroot_soup.", - "agent_count": 2, - "target": { - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup. ", - "1": "Collaborate with agents around you to make 1 beetroot_soup. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - }, - "difficulty_metrics": { - "total_recipe_steps": 3, - "blocked_agents_count": 1, - "unique_target_items": 1, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "multiagent_cooking_1_cooked_mutton_1_cooked_rabbit": { - "conversation": "Let's collaborate to make cooked_rabbit and cooked_mutton.", - "agent_count": 2, - "target": { - "cooked_rabbit": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_mutton. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_mutton. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "multiagent_cooking_1_beetroot_soup": { - "conversation": "Let's work together to make beetroot_soup.", - "agent_count": 2, - "target": { - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "1": "Collaborate with agents around you to make 1 beetroot_soup. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - }, - "difficulty_metrics": { - "total_recipe_steps": 3, - "blocked_agents_count": 0, - "unique_target_items": 1, - "overall_difficulty_score": 2, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "multiagent_cooking_1_beetroot_soup_1_cooked_chicken_blocked_access_0": { - "conversation": "Let's collaborate to make beetroot_soup and cooked_chicken.", - "agent_count": 2, - "target": { - "beetroot_soup": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_chicken. ", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_chicken. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_cooked_chicken_1_cooked_mutton_blocked_access_0": { - "conversation": "Let's collaborate to make cooked_chicken and cooked_mutton.", - "agent_count": 2, - "target": { - "cooked_chicken": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_mutton. ", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_mutton. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_beetroot_soup_1_cooked_mutton_blocked_access_0_1": { - "conversation": "Let's collaborate to make cooked_mutton and beetroot_soup.", - "agent_count": 2, - "target": { - "cooked_mutton": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup. ", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup. " - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 2, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_1_cookie_blocked_access_0": { - "conversation": "Let's work together to make cookie.", - "agent_count": 2, - "target": { - "cookie": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie. ", - "1": "Collaborate with agents around you to make 1 cookie. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - }, - "difficulty_metrics": { - "total_recipe_steps": 3, - "blocked_agents_count": 1, - "unique_target_items": 1, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "multiagent_cooking_1_cooked_rabbit_1_suspicious_stew_blocked_access_0": { - "conversation": "Let's collaborate to make suspicious_stew and cooked_rabbit.", - "agent_count": 2, - "target": { - "suspicious_stew": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_rabbit. ", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_rabbit. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit." - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_cooked_mutton_1_cookie": { - "conversation": "Let's collaborate to make cookie and cooked_mutton.", - "agent_count": 2, - "target": { - "cookie": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_mutton. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_mutton. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_cooked_mutton_1_cooked_porkchop": { - "conversation": "Let's collaborate to make cooked_mutton and cooked_porkchop.", - "agent_count": 2, - "target": { - "cooked_mutton": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "multiagent_cooking_1_cooked_chicken_1_cooked_mutton_blocked_access_1": { - "conversation": "Let's collaborate to make cooked_mutton and cooked_chicken.", - "agent_count": 2, - "target": { - "cooked_mutton": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_chicken. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_chicken. " - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_mushroom_stew_1_suspicious_stew": { - "conversation": "Let's collaborate to make suspicious_stew and mushroom_stew.", - "agent_count": 2, - "target": { - "suspicious_stew": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 mushroom_stew. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 mushroom_stew. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_beetroot_soup_1_cooked_rabbit_blocked_access_1": { - "conversation": "Let's collaborate to make cooked_rabbit and beetroot_soup.", - "agent_count": 2, - "target": { - "cooked_rabbit": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup. " - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - } -} \ No newline at end of file diff --git a/tasks/cooking_tasks/train_tasks/train_tasks_3_agents.json b/tasks/cooking_tasks/train_tasks/train_tasks_3_agents.json deleted file mode 100644 index 35e9248..0000000 --- a/tasks/cooking_tasks/train_tasks/train_tasks_3_agents.json +++ /dev/null @@ -1,2864 +0,0 @@ -{ - "multiagent_cooking_3_1_cooked_mutton_1_golden_carrot_1_pumpkin_pie_blocked_access_0": { - "conversation": "Let's work together to make golden_carrot, cooked_mutton, pumpkin_pie.", - "agent_count": 3, - "target": { - "golden_carrot": 1, - "cooked_mutton": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton, 1 pumpkin_pie. ", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton, 1 pumpkin_pie. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton, 1 pumpkin_pie. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - }, - "difficulty_metrics": { - "total_recipe_steps": 9, - "blocked_agents_count": 1, - "unique_target_items": 3, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_3_1_cooked_chicken_1_cooked_rabbit_1_mushroom_stew_blocked_access_0_1_2": { - "conversation": "Let's work together to make mushroom_stew, cooked_chicken, cooked_rabbit.", - "agent_count": 3, - "target": { - "mushroom_stew": 1, - "cooked_chicken": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken, 1 cooked_rabbit. ", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken, 1 cooked_rabbit. ", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken, 1 cooked_rabbit. " - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 3, - "unique_target_items": 3, - "overall_difficulty_score": 8, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_3_1_cookie_1_suspicious_stew_blocked_access_1": { - "conversation": "Let's work together to make cookie, suspicious_stew.", - "agent_count": 3, - "target": { - "cookie": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 suspicious_stew. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "1": "Collaborate with agents around you to make 1 cookie, 1 suspicious_stew. ", - "2": "Collaborate with agents around you to make 1 cookie, 1 suspicious_stew. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_3_1_cookie_1_golden_carrot_1_suspicious_stew_blocked_access_1": { - "conversation": "Let's work together to make golden_carrot, cookie, suspicious_stew.", - "agent_count": 3, - "target": { - "golden_carrot": 1, - "cookie": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cookie, 1 suspicious_stew. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cookie, 1 suspicious_stew. ", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 cookie, 1 suspicious_stew. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - }, - "difficulty_metrics": { - "total_recipe_steps": 9, - "blocked_agents_count": 1, - "unique_target_items": 3, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_3_1_cooked_chicken_1_cookie_1_pumpkin_pie": { - "conversation": "Let's work together to make cooked_chicken, cookie, pumpkin_pie.", - "agent_count": 3, - "target": { - "cooked_chicken": 1, - "cookie": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cookie, 1 pumpkin_pie. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cookie, 1 pumpkin_pie. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 cookie, 1 pumpkin_pie. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - }, - "difficulty_metrics": { - "total_recipe_steps": 9, - "blocked_agents_count": 0, - "unique_target_items": 3, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_3_1_beetroot_soup_1_cooked_porkchop_1_golden_carrot_blocked_access_0_1_2": { - "conversation": "Let's work together to make golden_carrot, cooked_porkchop, beetroot_soup.", - "agent_count": 3, - "target": { - "golden_carrot": 1, - "cooked_porkchop": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_porkchop, 1 beetroot_soup. ", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_porkchop, 1 beetroot_soup. ", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_porkchop, 1 beetroot_soup. " - }, - "difficulty_metrics": { - "total_recipe_steps": 8, - "blocked_agents_count": 3, - "unique_target_items": 3, - "overall_difficulty_score": 8, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_3_1_cooked_rabbit_1_pumpkin_pie_1_suspicious_stew": { - "conversation": "Let's work together to make cooked_rabbit, suspicious_stew, pumpkin_pie.", - "agent_count": 3, - "target": { - "cooked_rabbit": 1, - "suspicious_stew": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew, 1 pumpkin_pie. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew, 1 pumpkin_pie. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew, 1 pumpkin_pie. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - }, - "difficulty_metrics": { - "total_recipe_steps": 9, - "blocked_agents_count": 0, - "unique_target_items": 3, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_3_1_cooked_porkchop_1_cooked_rabbit_1_pumpkin_pie_blocked_access_1": { - "conversation": "Let's work together to make cooked_porkchop, pumpkin_pie, cooked_rabbit.", - "agent_count": 3, - "target": { - "cooked_porkchop": 1, - "pumpkin_pie": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie, 1 cooked_rabbit. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie, 1 cooked_rabbit. ", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie, 1 cooked_rabbit. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit." - }, - "difficulty_metrics": { - "total_recipe_steps": 8, - "blocked_agents_count": 1, - "unique_target_items": 3, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_3_1_cooked_chicken_1_golden_carrot_blocked_access_2": { - "conversation": "Let's work together to make cooked_chicken, golden_carrot.", - "agent_count": 3, - "target": { - "cooked_chicken": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [ - "2" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot. " - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_3_1_cooked_mutton_1_cooked_rabbit_1_mushroom_stew_blocked_access_0_1_2": { - "conversation": "Let's work together to make cooked_rabbit, mushroom_stew, cooked_mutton.", - "agent_count": 3, - "target": { - "cooked_rabbit": 1, - "mushroom_stew": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew, 1 cooked_mutton. ", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew, 1 cooked_mutton. ", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew, 1 cooked_mutton. " - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 3, - "unique_target_items": 3, - "overall_difficulty_score": 8, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_3_1_cooked_porkchop_1_mushroom_stew_1_pumpkin_pie": { - "conversation": "Let's work together to make pumpkin_pie, mushroom_stew, cooked_porkchop.", - "agent_count": 3, - "target": { - "pumpkin_pie": 1, - "mushroom_stew": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 cooked_porkchop. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 cooked_porkchop. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 cooked_porkchop. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." - }, - "difficulty_metrics": { - "total_recipe_steps": 9, - "blocked_agents_count": 0, - "unique_target_items": 3, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_3_1_cooked_porkchop_1_mushroom_stew_1_suspicious_stew": { - "conversation": "Let's work together to make suspicious_stew, mushroom_stew, cooked_porkchop.", - "agent_count": 3, - "target": { - "suspicious_stew": 1, - "mushroom_stew": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 mushroom_stew, 1 cooked_porkchop. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 mushroom_stew, 1 cooked_porkchop. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 mushroom_stew, 1 cooked_porkchop. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." - }, - "difficulty_metrics": { - "total_recipe_steps": 8, - "blocked_agents_count": 0, - "unique_target_items": 3, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_3_1_cookie_1_mushroom_stew_1_suspicious_stew_blocked_access_0_1_2": { - "conversation": "Let's work together to make mushroom_stew, cookie, suspicious_stew.", - "agent_count": 3, - "target": { - "mushroom_stew": 1, - "cookie": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cookie, 1 suspicious_stew. ", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cookie, 1 suspicious_stew. ", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cookie, 1 suspicious_stew. " - }, - "difficulty_metrics": { - "total_recipe_steps": 9, - "blocked_agents_count": 3, - "unique_target_items": 3, - "overall_difficulty_score": 9, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_3_1_cooked_chicken_1_cooked_mutton_1_mushroom_stew_blocked_access_0": { - "conversation": "Let's work together to make cooked_chicken, mushroom_stew, cooked_mutton.", - "agent_count": 3, - "target": { - "cooked_chicken": 1, - "mushroom_stew": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 mushroom_stew, 1 cooked_mutton. ", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 mushroom_stew, 1 cooked_mutton. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 mushroom_stew, 1 cooked_mutton. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 1, - "unique_target_items": 3, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_3_1_beetroot_soup_1_cooked_mutton_1_cooked_porkchop_blocked_access_0": { - "conversation": "Let's work together to make cooked_porkchop, cooked_mutton, beetroot_soup.", - "agent_count": 3, - "target": { - "cooked_porkchop": 1, - "cooked_mutton": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton, 1 beetroot_soup. ", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton, 1 beetroot_soup. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton, 1 beetroot_soup. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 1, - "unique_target_items": 3, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_3_1_cooked_rabbit_1_golden_carrot_1_suspicious_stew": { - "conversation": "Let's work together to make suspicious_stew, cooked_rabbit, golden_carrot.", - "agent_count": 3, - "target": { - "suspicious_stew": 1, - "cooked_rabbit": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_rabbit, 1 golden_carrot. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_rabbit, 1 golden_carrot. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_rabbit, 1 golden_carrot. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - }, - "difficulty_metrics": { - "total_recipe_steps": 8, - "blocked_agents_count": 0, - "unique_target_items": 3, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_3_1_cooked_mutton_1_cooked_rabbit_1_golden_carrot": { - "conversation": "Let's work together to make golden_carrot, cooked_rabbit, cooked_mutton.", - "agent_count": 3, - "target": { - "golden_carrot": 1, - "cooked_rabbit": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_rabbit, 1 cooked_mutton. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_rabbit, 1 cooked_mutton. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_rabbit, 1 cooked_mutton. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 0, - "unique_target_items": 3, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_3_1_cooked_porkchop_1_pumpkin_pie_blocked_access_0_1_2": { - "conversation": "Let's work together to make cooked_porkchop, pumpkin_pie.", - "agent_count": 3, - "target": { - "cooked_porkchop": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie. ", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie. ", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie. " - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 3, - "unique_target_items": 2, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_3_1_beetroot_soup_1_cooked_mutton_1_mushroom_stew_blocked_access_1": { - "conversation": "Let's work together to make beetroot_soup, cooked_mutton, mushroom_stew.", - "agent_count": 3, - "target": { - "beetroot_soup": 1, - "cooked_mutton": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 mushroom_stew. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 mushroom_stew. ", - "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 mushroom_stew. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - }, - "difficulty_metrics": { - "total_recipe_steps": 8, - "blocked_agents_count": 1, - "unique_target_items": 3, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_3_1_cooked_mutton_1_cooked_porkchop_1_pumpkin_pie_blocked_access_0": { - "conversation": "Let's work together to make cooked_mutton, cooked_porkchop, pumpkin_pie.", - "agent_count": 3, - "target": { - "cooked_mutton": 1, - "cooked_porkchop": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 pumpkin_pie. ", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 pumpkin_pie. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 pumpkin_pie. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - }, - "difficulty_metrics": { - "total_recipe_steps": 8, - "blocked_agents_count": 1, - "unique_target_items": 3, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_3_1_golden_carrot_1_mushroom_stew_1_suspicious_stew_blocked_access_0": { - "conversation": "Let's work together to make suspicious_stew, golden_carrot, mushroom_stew.", - "agent_count": 3, - "target": { - "suspicious_stew": 1, - "golden_carrot": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 golden_carrot, 1 mushroom_stew. ", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 golden_carrot, 1 mushroom_stew. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 golden_carrot, 1 mushroom_stew. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - }, - "difficulty_metrics": { - "total_recipe_steps": 9, - "blocked_agents_count": 1, - "unique_target_items": 3, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_3_1_beetroot_soup_1_cooked_porkchop_1_suspicious_stew_blocked_access_1": { - "conversation": "Let's work together to make cooked_porkchop, suspicious_stew, beetroot_soup.", - "agent_count": 3, - "target": { - "cooked_porkchop": 1, - "suspicious_stew": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 beetroot_soup. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 beetroot_soup. ", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 beetroot_soup. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - }, - "difficulty_metrics": { - "total_recipe_steps": 8, - "blocked_agents_count": 1, - "unique_target_items": 3, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_3_1_cooked_chicken_1_golden_carrot_1_pumpkin_pie_blocked_access_0_1_2": { - "conversation": "Let's work together to make cooked_chicken, golden_carrot, pumpkin_pie.", - "agent_count": 3, - "target": { - "cooked_chicken": 1, - "golden_carrot": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 pumpkin_pie. ", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 pumpkin_pie. ", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 pumpkin_pie. " - }, - "difficulty_metrics": { - "total_recipe_steps": 9, - "blocked_agents_count": 3, - "unique_target_items": 3, - "overall_difficulty_score": 9, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_3_1_cooked_rabbit_1_mushroom_stew_blocked_access_2": { - "conversation": "Let's work together to make mushroom_stew, cooked_rabbit.", - "agent_count": 3, - "target": { - "mushroom_stew": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [ - "2" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_rabbit. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_rabbit. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_rabbit. " - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_3_1_cooked_chicken_1_cooked_porkchop_1_mushroom_stew_blocked_access_0": { - "conversation": "Let's work together to make mushroom_stew, cooked_porkchop, cooked_chicken.", - "agent_count": 3, - "target": { - "mushroom_stew": 1, - "cooked_porkchop": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop, 1 cooked_chicken. ", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop, 1 cooked_chicken. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop, 1 cooked_chicken. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 1, - "unique_target_items": 3, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_3_1_cooked_chicken_1_cooked_rabbit_blocked_access_0_1_2": { - "conversation": "Let's work together to make cooked_rabbit, cooked_chicken.", - "agent_count": 3, - "target": { - "cooked_rabbit": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken. ", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken. ", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken. " - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 3, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "medium" - }, - "multiagent_cooking_3_1_cooked_mutton_1_cooked_porkchop_blocked_access_0_1_2": { - "conversation": "Let's work together to make cooked_porkchop, cooked_mutton.", - "agent_count": 3, - "target": { - "cooked_porkchop": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton. ", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton. ", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton. " - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 3, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "medium" - }, - "multiagent_cooking_3_1_mushroom_stew_1_pumpkin_pie_1_suspicious_stew": { - "conversation": "Let's work together to make mushroom_stew, suspicious_stew, pumpkin_pie.", - "agent_count": 3, - "target": { - "mushroom_stew": 1, - "suspicious_stew": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 pumpkin_pie. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 pumpkin_pie. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 pumpkin_pie. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - }, - "difficulty_metrics": { - "total_recipe_steps": 10, - "blocked_agents_count": 0, - "unique_target_items": 3, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_3_1_cooked_porkchop_1_pumpkin_pie": { - "conversation": "Let's work together to make cooked_porkchop, pumpkin_pie.", - "agent_count": 3, - "target": { - "cooked_porkchop": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_3_1_cooked_porkchop_1_suspicious_stew_blocked_access_1": { - "conversation": "Let's work together to make suspicious_stew, cooked_porkchop.", - "agent_count": 3, - "target": { - "suspicious_stew": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop. ", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_3_1_beetroot_soup_1_cooked_chicken_1_cooked_rabbit_blocked_access_2": { - "conversation": "Let's work together to make beetroot_soup, cooked_rabbit, cooked_chicken.", - "agent_count": 3, - "target": { - "beetroot_soup": 1, - "cooked_rabbit": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [ - "2" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_rabbit, 1 cooked_chicken. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_rabbit, 1 cooked_chicken. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_rabbit, 1 cooked_chicken. " - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 1, - "unique_target_items": 3, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_3_1_cooked_porkchop_1_golden_carrot_1_pumpkin_pie_blocked_access_2": { - "conversation": "Let's work together to make golden_carrot, pumpkin_pie, cooked_porkchop.", - "agent_count": 3, - "target": { - "golden_carrot": 1, - "pumpkin_pie": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [ - "2" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie, 1 cooked_porkchop. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie, 1 cooked_porkchop. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie, 1 cooked_porkchop. " - }, - "difficulty_metrics": { - "total_recipe_steps": 9, - "blocked_agents_count": 1, - "unique_target_items": 3, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_3_1_cooked_rabbit_1_pumpkin_pie_1_suspicious_stew_blocked_access_2": { - "conversation": "Let's work together to make suspicious_stew, cooked_rabbit, pumpkin_pie.", - "agent_count": 3, - "target": { - "suspicious_stew": 1, - "cooked_rabbit": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [ - "2" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_rabbit, 1 pumpkin_pie. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_rabbit, 1 pumpkin_pie. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_rabbit, 1 pumpkin_pie. " - }, - "difficulty_metrics": { - "total_recipe_steps": 9, - "blocked_agents_count": 1, - "unique_target_items": 3, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_3_1_beetroot_soup_1_cooked_chicken_1_cooked_porkchop": { - "conversation": "Let's work together to make cooked_chicken, cooked_porkchop, beetroot_soup.", - "agent_count": 3, - "target": { - "cooked_chicken": 1, - "cooked_porkchop": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop, 1 beetroot_soup. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop, 1 beetroot_soup. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop, 1 beetroot_soup. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 0, - "unique_target_items": 3, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_3_1_golden_carrot_1_mushroom_stew_blocked_access_0_1_2": { - "conversation": "Let's work together to make golden_carrot, mushroom_stew.", - "agent_count": 3, - "target": { - "golden_carrot": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew. ", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew. ", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew. " - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 3, - "unique_target_items": 2, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_3_1_cooked_chicken_1_cooked_porkchop_1_cooked_rabbit": { - "conversation": "Let's work together to make cooked_porkchop, cooked_chicken, cooked_rabbit.", - "agent_count": 3, - "target": { - "cooked_porkchop": 1, - "cooked_chicken": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 cooked_rabbit. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 cooked_rabbit. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 cooked_rabbit. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit." - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 0, - "unique_target_items": 3, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_3_1_beetroot_soup_1_cooked_chicken_1_cooked_porkchop_blocked_access_0": { - "conversation": "Let's work together to make beetroot_soup, cooked_chicken, cooked_porkchop.", - "agent_count": 3, - "target": { - "beetroot_soup": 1, - "cooked_chicken": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_chicken, 1 cooked_porkchop. ", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_chicken, 1 cooked_porkchop. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_chicken, 1 cooked_porkchop. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 1, - "unique_target_items": 3, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_3_1_beetroot_soup_1_cookie": { - "conversation": "Let's work together to make beetroot_soup, cookie.", - "agent_count": 3, - "target": { - "beetroot_soup": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_3_1_cooked_mutton_1_cookie_1_mushroom_stew_blocked_access_0_1_2": { - "conversation": "Let's work together to make cooked_mutton, cookie, mushroom_stew.", - "agent_count": 3, - "target": { - "cooked_mutton": 1, - "cookie": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cookie, 1 mushroom_stew. ", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cookie, 1 mushroom_stew. ", - "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 cookie, 1 mushroom_stew. " - }, - "difficulty_metrics": { - "total_recipe_steps": 8, - "blocked_agents_count": 3, - "unique_target_items": 3, - "overall_difficulty_score": 8, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_3_1_cooked_chicken_1_cooked_rabbit": { - "conversation": "Let's work together to make cooked_rabbit, cooked_chicken.", - "agent_count": 3, - "target": { - "cooked_rabbit": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "multiagent_cooking_3_1_cooked_mutton_1_cooked_porkchop_1_cookie": { - "conversation": "Let's work together to make cooked_mutton, cooked_porkchop, cookie.", - "agent_count": 3, - "target": { - "cooked_mutton": 1, - "cooked_porkchop": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 cookie. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 cookie. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 cookie. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 0, - "unique_target_items": 3, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_3_1_cooked_porkchop_1_golden_carrot_1_pumpkin_pie_blocked_access_0_1_2": { - "conversation": "Let's work together to make golden_carrot, cooked_porkchop, pumpkin_pie.", - "agent_count": 3, - "target": { - "golden_carrot": 1, - "cooked_porkchop": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_porkchop, 1 pumpkin_pie. ", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_porkchop, 1 pumpkin_pie. ", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_porkchop, 1 pumpkin_pie. " - }, - "difficulty_metrics": { - "total_recipe_steps": 9, - "blocked_agents_count": 3, - "unique_target_items": 3, - "overall_difficulty_score": 9, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_3_1_beetroot_soup_1_pumpkin_pie_blocked_access_0_1_2": { - "conversation": "Let's work together to make beetroot_soup, pumpkin_pie.", - "agent_count": 3, - "target": { - "beetroot_soup": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie. ", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie. ", - "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie. " - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 3, - "unique_target_items": 2, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_3_1_cooked_chicken_1_cooked_porkchop_1_suspicious_stew": { - "conversation": "Let's work together to make cooked_porkchop, cooked_chicken, suspicious_stew.", - "agent_count": 3, - "target": { - "cooked_porkchop": 1, - "cooked_chicken": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 suspicious_stew. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 suspicious_stew. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 suspicious_stew. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 0, - "unique_target_items": 3, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_3_1_cooked_chicken_1_cooked_porkchop": { - "conversation": "Let's work together to make cooked_porkchop, cooked_chicken.", - "agent_count": 3, - "target": { - "cooked_porkchop": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "multiagent_cooking_3_1_cooked_chicken_1_cooked_mutton_1_suspicious_stew_blocked_access_2": { - "conversation": "Let's work together to make suspicious_stew, cooked_chicken, cooked_mutton.", - "agent_count": 3, - "target": { - "suspicious_stew": 1, - "cooked_chicken": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [ - "2" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_mutton. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_mutton. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_mutton. " - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 1, - "unique_target_items": 3, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_3_1_cooked_rabbit_1_pumpkin_pie_blocked_access_0": { - "conversation": "Let's work together to make pumpkin_pie, cooked_rabbit.", - "agent_count": 3, - "target": { - "pumpkin_pie": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_rabbit. ", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_rabbit. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", - "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_rabbit. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit." - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_3_1_golden_carrot_1_pumpkin_pie_1_suspicious_stew": { - "conversation": "Let's work together to make golden_carrot, pumpkin_pie, suspicious_stew.", - "agent_count": 3, - "target": { - "golden_carrot": 1, - "pumpkin_pie": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie, 1 suspicious_stew. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie, 1 suspicious_stew. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie, 1 suspicious_stew. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - }, - "difficulty_metrics": { - "total_recipe_steps": 10, - "blocked_agents_count": 0, - "unique_target_items": 3, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_3_1_cooked_chicken_1_cooked_porkchop_1_suspicious_stew_blocked_access_2": { - "conversation": "Let's work together to make cooked_chicken, suspicious_stew, cooked_porkchop.", - "agent_count": 3, - "target": { - "cooked_chicken": 1, - "suspicious_stew": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [ - "2" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew, 1 cooked_porkchop. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew, 1 cooked_porkchop. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew, 1 cooked_porkchop. " - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 1, - "unique_target_items": 3, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_3_1_cooked_chicken_1_cookie_blocked_access_2": { - "conversation": "Let's work together to make cooked_chicken, cookie.", - "agent_count": 3, - "target": { - "cooked_chicken": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [ - "2" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cookie. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cookie. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 cookie. " - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_3_1_cooked_rabbit_1_mushroom_stew": { - "conversation": "Let's work together to make mushroom_stew, cooked_rabbit.", - "agent_count": 3, - "target": { - "mushroom_stew": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_rabbit. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_rabbit. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_rabbit. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit." - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_3_1_cooked_chicken_1_pumpkin_pie_blocked_access_0_1_2": { - "conversation": "Let's work together to make pumpkin_pie, cooked_chicken.", - "agent_count": 3, - "target": { - "pumpkin_pie": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken. ", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken. ", - "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken. " - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 3, - "unique_target_items": 2, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_3_1_beetroot_soup_1_cooked_mutton_1_cooked_porkchop": { - "conversation": "Let's work together to make beetroot_soup, cooked_porkchop, cooked_mutton.", - "agent_count": 3, - "target": { - "beetroot_soup": 1, - "cooked_porkchop": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop, 1 cooked_mutton. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop, 1 cooked_mutton. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop, 1 cooked_mutton. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 0, - "unique_target_items": 3, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_3_1_beetroot_soup_1_cooked_chicken_1_golden_carrot": { - "conversation": "Let's work together to make cooked_chicken, golden_carrot, beetroot_soup.", - "agent_count": 3, - "target": { - "cooked_chicken": 1, - "golden_carrot": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 beetroot_soup. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 beetroot_soup. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 beetroot_soup. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - }, - "difficulty_metrics": { - "total_recipe_steps": 8, - "blocked_agents_count": 0, - "unique_target_items": 3, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_3_1_cooked_mutton_1_pumpkin_pie_blocked_access_1": { - "conversation": "Let's work together to make cooked_mutton, pumpkin_pie.", - "agent_count": 3, - "target": { - "cooked_mutton": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie. ", - "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_3_1_cooked_rabbit_1_golden_carrot_1_mushroom_stew_blocked_access_2": { - "conversation": "Let's work together to make cooked_rabbit, mushroom_stew, golden_carrot.", - "agent_count": 3, - "target": { - "cooked_rabbit": 1, - "mushroom_stew": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [ - "2" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew, 1 golden_carrot. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew, 1 golden_carrot. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew, 1 golden_carrot. " - }, - "difficulty_metrics": { - "total_recipe_steps": 8, - "blocked_agents_count": 1, - "unique_target_items": 3, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_3_1_cooked_mutton_1_cooked_rabbit_1_cookie_blocked_access_0_1_2": { - "conversation": "Let's work together to make cookie, cooked_mutton, cooked_rabbit.", - "agent_count": 3, - "target": { - "cookie": 1, - "cooked_mutton": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_mutton, 1 cooked_rabbit. ", - "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_mutton, 1 cooked_rabbit. ", - "2": "Collaborate with agents around you to make 1 cookie, 1 cooked_mutton, 1 cooked_rabbit. " - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 3, - "unique_target_items": 3, - "overall_difficulty_score": 8, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_3_1_cooked_porkchop_1_mushroom_stew_1_pumpkin_pie_blocked_access_0": { - "conversation": "Let's work together to make pumpkin_pie, cooked_porkchop, mushroom_stew.", - "agent_count": 3, - "target": { - "pumpkin_pie": 1, - "cooked_porkchop": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_porkchop, 1 mushroom_stew. ", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_porkchop, 1 mushroom_stew. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_porkchop, 1 mushroom_stew. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - }, - "difficulty_metrics": { - "total_recipe_steps": 9, - "blocked_agents_count": 1, - "unique_target_items": 3, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_3_1_cooked_chicken_1_golden_carrot_1_suspicious_stew_blocked_access_2": { - "conversation": "Let's work together to make golden_carrot, suspicious_stew, cooked_chicken.", - "agent_count": 3, - "target": { - "golden_carrot": 1, - "suspicious_stew": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [ - "2" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_chicken. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_chicken. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_chicken. " - }, - "difficulty_metrics": { - "total_recipe_steps": 8, - "blocked_agents_count": 1, - "unique_target_items": 3, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_3_1_cooked_chicken_1_cookie_1_golden_carrot": { - "conversation": "Let's work together to make golden_carrot, cooked_chicken, cookie.", - "agent_count": 3, - "target": { - "golden_carrot": 1, - "cooked_chicken": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_chicken, 1 cookie. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_chicken, 1 cookie. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_chicken, 1 cookie. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - }, - "difficulty_metrics": { - "total_recipe_steps": 8, - "blocked_agents_count": 0, - "unique_target_items": 3, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_3_1_beetroot_soup_1_cooked_chicken_1_cookie": { - "conversation": "Let's work together to make cooked_chicken, beetroot_soup, cookie.", - "agent_count": 3, - "target": { - "cooked_chicken": 1, - "beetroot_soup": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 beetroot_soup, 1 cookie. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 beetroot_soup, 1 cookie. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 beetroot_soup, 1 cookie. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - }, - "difficulty_metrics": { - "total_recipe_steps": 8, - "blocked_agents_count": 0, - "unique_target_items": 3, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_3_1_cooked_mutton_1_cooked_porkchop_1_golden_carrot": { - "conversation": "Let's work together to make cooked_mutton, cooked_porkchop, golden_carrot.", - "agent_count": 3, - "target": { - "cooked_mutton": 1, - "cooked_porkchop": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 golden_carrot. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 golden_carrot. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 golden_carrot. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 0, - "unique_target_items": 3, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_3_1_cooked_rabbit_1_pumpkin_pie": { - "conversation": "Let's work together to make cooked_rabbit, pumpkin_pie.", - "agent_count": 3, - "target": { - "cooked_rabbit": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_3_1_cooked_chicken_1_cookie_1_suspicious_stew": { - "conversation": "Let's work together to make cooked_chicken, suspicious_stew, cookie.", - "agent_count": 3, - "target": { - "cooked_chicken": 1, - "suspicious_stew": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew, 1 cookie. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew, 1 cookie. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew, 1 cookie. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - }, - "difficulty_metrics": { - "total_recipe_steps": 8, - "blocked_agents_count": 0, - "unique_target_items": 3, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_3_1_beetroot_soup_1_cooked_chicken_1_pumpkin_pie": { - "conversation": "Let's work together to make pumpkin_pie, beetroot_soup, cooked_chicken.", - "agent_count": 3, - "target": { - "pumpkin_pie": 1, - "beetroot_soup": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 beetroot_soup, 1 cooked_chicken. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 beetroot_soup, 1 cooked_chicken. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 beetroot_soup, 1 cooked_chicken. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." - }, - "difficulty_metrics": { - "total_recipe_steps": 9, - "blocked_agents_count": 0, - "unique_target_items": 3, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_3_1_cooked_mutton_1_cooked_rabbit_1_suspicious_stew_blocked_access_2": { - "conversation": "Let's work together to make cooked_mutton, suspicious_stew, cooked_rabbit.", - "agent_count": 3, - "target": { - "cooked_mutton": 1, - "suspicious_stew": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [ - "2" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 suspicious_stew, 1 cooked_rabbit. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 suspicious_stew, 1 cooked_rabbit. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", - "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 suspicious_stew, 1 cooked_rabbit. " - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 1, - "unique_target_items": 3, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_3_1_beetroot_soup_1_pumpkin_pie": { - "conversation": "Let's work together to make beetroot_soup, pumpkin_pie.", - "agent_count": 3, - "target": { - "beetroot_soup": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_3_1_cooked_mutton_1_cookie": { - "conversation": "Let's work together to make cooked_mutton, cookie.", - "agent_count": 3, - "target": { - "cooked_mutton": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cookie. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cookie. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 cookie. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_3_1_beetroot_soup_1_cooked_mutton_1_suspicious_stew": { - "conversation": "Let's work together to make cooked_mutton, suspicious_stew, beetroot_soup.", - "agent_count": 3, - "target": { - "cooked_mutton": 1, - "suspicious_stew": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 suspicious_stew, 1 beetroot_soup. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 suspicious_stew, 1 beetroot_soup. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 suspicious_stew, 1 beetroot_soup. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - }, - "difficulty_metrics": { - "total_recipe_steps": 8, - "blocked_agents_count": 0, - "unique_target_items": 3, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_3_1_cooked_chicken_1_cooked_porkchop_1_golden_carrot_blocked_access_1": { - "conversation": "Let's work together to make cooked_chicken, golden_carrot, cooked_porkchop.", - "agent_count": 3, - "target": { - "cooked_chicken": 1, - "golden_carrot": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cooked_porkchop. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cooked_porkchop. ", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cooked_porkchop. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 1, - "unique_target_items": 3, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - } -} \ No newline at end of file diff --git a/tasks/cooking_tasks/train_tasks/train_tasks_4_agents.json b/tasks/cooking_tasks/train_tasks/train_tasks_4_agents.json deleted file mode 100644 index f074fd8..0000000 --- a/tasks/cooking_tasks/train_tasks/train_tasks_4_agents.json +++ /dev/null @@ -1,3345 +0,0 @@ -{ - "multiagent_cooking_4_1_beetroot_soup_1_golden_carrot_1_pumpkin_pie_blocked_access_1_3": { - "conversation": "Let's work together to make golden_carrot, pumpkin_pie, beetroot_soup.", - "agent_count": 4, - "target": { - "golden_carrot": 1, - "pumpkin_pie": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [ - "3", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie, 1 beetroot_soup. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie, 1 beetroot_soup. ", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie, 1 beetroot_soup. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "3": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie, 1 beetroot_soup. " - }, - "difficulty_metrics": { - "total_recipe_steps": 10, - "blocked_agents_count": 2, - "unique_target_items": 3, - "overall_difficulty_score": 8, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_4_1_cooked_chicken_1_cooked_porkchop_1_golden_carrot_1_pumpkin_pie": { - "conversation": "Let's work together to make cooked_porkchop, golden_carrot, cooked_chicken, pumpkin_pie.", - "agent_count": 4, - "target": { - "cooked_porkchop": 1, - "golden_carrot": 1, - "cooked_chicken": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot, 1 cooked_chicken, 1 pumpkin_pie. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot, 1 cooked_chicken, 1 pumpkin_pie. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot, 1 cooked_chicken, 1 pumpkin_pie. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "3": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot, 1 cooked_chicken, 1 pumpkin_pie. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - }, - "difficulty_metrics": { - "total_recipe_steps": 11, - "blocked_agents_count": 0, - "unique_target_items": 4, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_4_1_cooked_chicken_1_cookie_1_mushroom_stew_1_pumpkin_pie_blocked_access_1_3": { - "conversation": "Let's work together to make pumpkin_pie, cookie, mushroom_stew, cooked_chicken.", - "agent_count": 4, - "target": { - "pumpkin_pie": 1, - "cookie": 1, - "mushroom_stew": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [ - "3", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 mushroom_stew, 1 cooked_chicken. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 mushroom_stew, 1 cooked_chicken. ", - "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 mushroom_stew, 1 cooked_chicken. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 mushroom_stew, 1 cooked_chicken. " - }, - "difficulty_metrics": { - "total_recipe_steps": 12, - "blocked_agents_count": 2, - "unique_target_items": 4, - "overall_difficulty_score": 9, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_4_1_beetroot_soup_1_cooked_chicken_1_golden_carrot_1_suspicious_stew": { - "conversation": "Let's work together to make golden_carrot, beetroot_soup, cooked_chicken, suspicious_stew.", - "agent_count": 4, - "target": { - "golden_carrot": 1, - "beetroot_soup": 1, - "cooked_chicken": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup, 1 cooked_chicken, 1 suspicious_stew. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup, 1 cooked_chicken, 1 suspicious_stew. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup, 1 cooked_chicken, 1 suspicious_stew. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "3": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup, 1 cooked_chicken, 1 suspicious_stew. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - }, - "difficulty_metrics": { - "total_recipe_steps": 11, - "blocked_agents_count": 0, - "unique_target_items": 4, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_4_1_cooked_chicken_1_cooked_porkchop_1_golden_carrot_1_pumpkin_pie_blocked_access_0_2": { - "conversation": "Let's work together to make pumpkin_pie, cooked_chicken, cooked_porkchop, golden_carrot.", - "agent_count": 4, - "target": { - "pumpkin_pie": 1, - "cooked_chicken": 1, - "cooked_porkchop": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [ - "2", - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken, 1 cooked_porkchop, 1 golden_carrot. ", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken, 1 cooked_porkchop, 1 golden_carrot. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken, 1 cooked_porkchop, 1 golden_carrot. ", - "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken, 1 cooked_porkchop, 1 golden_carrot. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - }, - "difficulty_metrics": { - "total_recipe_steps": 11, - "blocked_agents_count": 2, - "unique_target_items": 4, - "overall_difficulty_score": 9, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_4_1_beetroot_soup_1_cookie_1_pumpkin_pie_blocked_access_2_3": { - "conversation": "Let's work together to make pumpkin_pie, cookie, beetroot_soup.", - "agent_count": 4, - "target": { - "pumpkin_pie": 1, - "cookie": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [ - "2", - "3" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 beetroot_soup. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 beetroot_soup. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 beetroot_soup. ", - "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 beetroot_soup. " - }, - "difficulty_metrics": { - "total_recipe_steps": 10, - "blocked_agents_count": 2, - "unique_target_items": 3, - "overall_difficulty_score": 8, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_4_1_cookie_1_mushroom_stew_1_pumpkin_pie_1_suspicious_stew": { - "conversation": "Let's work together to make mushroom_stew, cookie, pumpkin_pie, suspicious_stew.", - "agent_count": 4, - "target": { - "mushroom_stew": 1, - "cookie": 1, - "pumpkin_pie": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cookie, 1 pumpkin_pie, 1 suspicious_stew. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cookie, 1 pumpkin_pie, 1 suspicious_stew. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cookie, 1 pumpkin_pie, 1 suspicious_stew. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 cookie, 1 pumpkin_pie, 1 suspicious_stew. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - }, - "difficulty_metrics": { - "total_recipe_steps": 13, - "blocked_agents_count": 0, - "unique_target_items": 4, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_4_1_cooked_porkchop_1_golden_carrot_1_suspicious_stew_blocked_access_0_1_2_3": { - "conversation": "Let's work together to make golden_carrot, suspicious_stew, cooked_porkchop.", - "agent_count": 4, - "target": { - "golden_carrot": 1, - "suspicious_stew": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2", - "3" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_porkchop. ", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_porkchop. ", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_porkchop. ", - "3": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_porkchop. " - }, - "difficulty_metrics": { - "total_recipe_steps": 8, - "blocked_agents_count": 4, - "unique_target_items": 3, - "overall_difficulty_score": 9, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_4_1_cooked_mutton_1_mushroom_stew_1_pumpkin_pie_1_suspicious_stew": { - "conversation": "Let's work together to make pumpkin_pie, suspicious_stew, cooked_mutton, mushroom_stew.", - "agent_count": 4, - "target": { - "pumpkin_pie": 1, - "suspicious_stew": 1, - "cooked_mutton": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew, 1 cooked_mutton, 1 mushroom_stew. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew, 1 cooked_mutton, 1 mushroom_stew. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew, 1 cooked_mutton, 1 mushroom_stew. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew, 1 cooked_mutton, 1 mushroom_stew. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - }, - "difficulty_metrics": { - "total_recipe_steps": 12, - "blocked_agents_count": 0, - "unique_target_items": 4, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_4_1_beetroot_soup_1_cooked_chicken_1_mushroom_stew_1_pumpkin_pie_blocked_access_2_3": { - "conversation": "Let's work together to make mushroom_stew, cooked_chicken, beetroot_soup, pumpkin_pie.", - "agent_count": 4, - "target": { - "mushroom_stew": 1, - "cooked_chicken": 1, - "beetroot_soup": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [ - "3", - "2" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken, 1 beetroot_soup, 1 pumpkin_pie. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken, 1 beetroot_soup, 1 pumpkin_pie. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken, 1 beetroot_soup, 1 pumpkin_pie. ", - "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken, 1 beetroot_soup, 1 pumpkin_pie. " - }, - "difficulty_metrics": { - "total_recipe_steps": 12, - "blocked_agents_count": 2, - "unique_target_items": 4, - "overall_difficulty_score": 9, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_4_1_cooked_chicken_1_cooked_porkchop_1_golden_carrot_1_suspicious_stew": { - "conversation": "Let's work together to make cooked_chicken, cooked_porkchop, golden_carrot, suspicious_stew.", - "agent_count": 4, - "target": { - "cooked_chicken": 1, - "cooked_porkchop": 1, - "golden_carrot": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop, 1 golden_carrot, 1 suspicious_stew. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop, 1 golden_carrot, 1 suspicious_stew. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop, 1 golden_carrot, 1 suspicious_stew. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop, 1 golden_carrot, 1 suspicious_stew. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - }, - "difficulty_metrics": { - "total_recipe_steps": 10, - "blocked_agents_count": 0, - "unique_target_items": 4, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_4_1_cooked_porkchop_1_cookie_1_suspicious_stew": { - "conversation": "Let's work together to make cookie, cooked_porkchop, suspicious_stew.", - "agent_count": 4, - "target": { - "cookie": 1, - "cooked_porkchop": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop, 1 suspicious_stew. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop, 1 suspicious_stew. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "2": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop, 1 suspicious_stew. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "3": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop, 1 suspicious_stew. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - }, - "difficulty_metrics": { - "total_recipe_steps": 8, - "blocked_agents_count": 0, - "unique_target_items": 3, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_4_1_cooked_mutton_1_cookie_1_suspicious_stew": { - "conversation": "Let's work together to make suspicious_stew, cooked_mutton, cookie.", - "agent_count": 4, - "target": { - "suspicious_stew": 1, - "cooked_mutton": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton, 1 cookie. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton, 1 cookie. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton, 1 cookie. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton, 1 cookie. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - }, - "difficulty_metrics": { - "total_recipe_steps": 8, - "blocked_agents_count": 0, - "unique_target_items": 3, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_4_1_cooked_mutton_1_cooked_porkchop_1_suspicious_stew_blocked_access_1_3": { - "conversation": "Let's work together to make suspicious_stew, cooked_porkchop, cooked_mutton.", - "agent_count": 4, - "target": { - "suspicious_stew": 1, - "cooked_porkchop": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [ - "3", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop, 1 cooked_mutton. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop, 1 cooked_mutton. ", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop, 1 cooked_mutton. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop, 1 cooked_mutton. " - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 2, - "unique_target_items": 3, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_4_1_cooked_chicken_1_cooked_mutton_1_cooked_rabbit_1_cookie": { - "conversation": "Let's work together to make cooked_chicken, cooked_mutton, cookie, cooked_rabbit.", - "agent_count": 4, - "target": { - "cooked_chicken": 1, - "cooked_mutton": 1, - "cookie": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_mutton, 1 cookie, 1 cooked_rabbit. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_mutton, 1 cookie, 1 cooked_rabbit. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_mutton, 1 cookie, 1 cooked_rabbit. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", - "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_mutton, 1 cookie, 1 cooked_rabbit. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit." - }, - "difficulty_metrics": { - "total_recipe_steps": 9, - "blocked_agents_count": 0, - "unique_target_items": 4, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_4_1_beetroot_soup_1_cooked_porkchop_1_pumpkin_pie_1_suspicious_stew_blocked_access_0_1": { - "conversation": "Let's work together to make suspicious_stew, cooked_porkchop, pumpkin_pie, beetroot_soup.", - "agent_count": 4, - "target": { - "suspicious_stew": 1, - "cooked_porkchop": 1, - "pumpkin_pie": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [ - "1", - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop, 1 pumpkin_pie, 1 beetroot_soup. ", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop, 1 pumpkin_pie, 1 beetroot_soup. ", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop, 1 pumpkin_pie, 1 beetroot_soup. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop, 1 pumpkin_pie, 1 beetroot_soup. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - }, - "difficulty_metrics": { - "total_recipe_steps": 12, - "blocked_agents_count": 2, - "unique_target_items": 4, - "overall_difficulty_score": 9, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_4_1_beetroot_soup_1_cookie_1_golden_carrot_1_pumpkin_pie": { - "conversation": "Let's work together to make golden_carrot, beetroot_soup, pumpkin_pie, cookie.", - "agent_count": 4, - "target": { - "golden_carrot": 1, - "beetroot_soup": 1, - "pumpkin_pie": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup, 1 pumpkin_pie, 1 cookie. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup, 1 pumpkin_pie, 1 cookie. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup, 1 pumpkin_pie, 1 cookie. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "3": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup, 1 pumpkin_pie, 1 cookie. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - }, - "difficulty_metrics": { - "total_recipe_steps": 13, - "blocked_agents_count": 0, - "unique_target_items": 4, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_4_1_cooked_mutton_1_cookie_1_pumpkin_pie_1_suspicious_stew": { - "conversation": "Let's work together to make cooked_mutton, suspicious_stew, cookie, pumpkin_pie.", - "agent_count": 4, - "target": { - "cooked_mutton": 1, - "suspicious_stew": 1, - "cookie": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 suspicious_stew, 1 cookie, 1 pumpkin_pie. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 suspicious_stew, 1 cookie, 1 pumpkin_pie. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 suspicious_stew, 1 cookie, 1 pumpkin_pie. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "3": "Collaborate with agents around you to make 1 cooked_mutton, 1 suspicious_stew, 1 cookie, 1 pumpkin_pie. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - }, - "difficulty_metrics": { - "total_recipe_steps": 12, - "blocked_agents_count": 0, - "unique_target_items": 4, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_4_1_cooked_rabbit_1_golden_carrot_1_mushroom_stew": { - "conversation": "Let's work together to make golden_carrot, mushroom_stew, cooked_rabbit.", - "agent_count": 4, - "target": { - "golden_carrot": 1, - "mushroom_stew": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew, 1 cooked_rabbit. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew, 1 cooked_rabbit. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew, 1 cooked_rabbit. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", - "3": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew, 1 cooked_rabbit. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit." - }, - "difficulty_metrics": { - "total_recipe_steps": 8, - "blocked_agents_count": 0, - "unique_target_items": 3, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_4_1_cooked_chicken_1_mushroom_stew_1_suspicious_stew_blocked_access_0_3": { - "conversation": "Let's work together to make cooked_chicken, mushroom_stew, suspicious_stew.", - "agent_count": 4, - "target": { - "cooked_chicken": 1, - "mushroom_stew": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [ - "3", - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 mushroom_stew, 1 suspicious_stew. ", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 mushroom_stew, 1 suspicious_stew. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 mushroom_stew, 1 suspicious_stew. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 mushroom_stew, 1 suspicious_stew. " - }, - "difficulty_metrics": { - "total_recipe_steps": 8, - "blocked_agents_count": 2, - "unique_target_items": 3, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_4_1_cooked_chicken_1_cookie_1_pumpkin_pie": { - "conversation": "Let's work together to make pumpkin_pie, cooked_chicken, cookie.", - "agent_count": 4, - "target": { - "pumpkin_pie": 1, - "cooked_chicken": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken, 1 cookie. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken, 1 cookie. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken, 1 cookie. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken, 1 cookie. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - }, - "difficulty_metrics": { - "total_recipe_steps": 9, - "blocked_agents_count": 0, - "unique_target_items": 3, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_4_1_cooked_chicken_1_cooked_mutton_1_cookie_1_golden_carrot": { - "conversation": "Let's work together to make cooked_mutton, golden_carrot, cooked_chicken, cookie.", - "agent_count": 4, - "target": { - "cooked_mutton": 1, - "golden_carrot": 1, - "cooked_chicken": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 golden_carrot, 1 cooked_chicken, 1 cookie. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 golden_carrot, 1 cooked_chicken, 1 cookie. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 golden_carrot, 1 cooked_chicken, 1 cookie. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "3": "Collaborate with agents around you to make 1 cooked_mutton, 1 golden_carrot, 1 cooked_chicken, 1 cookie. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - }, - "difficulty_metrics": { - "total_recipe_steps": 10, - "blocked_agents_count": 0, - "unique_target_items": 4, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_4_1_cooked_mutton_1_cooked_porkchop_1_suspicious_stew_blocked_access_0_3": { - "conversation": "Let's work together to make cooked_porkchop, suspicious_stew, cooked_mutton.", - "agent_count": 4, - "target": { - "cooked_porkchop": 1, - "suspicious_stew": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [ - "0", - "3" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 cooked_mutton. ", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 cooked_mutton. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 cooked_mutton. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "3": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 cooked_mutton. " - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 2, - "unique_target_items": 3, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_4_1_beetroot_soup_1_cooked_rabbit_1_golden_carrot_1_mushroom_stew_blocked_access_0_3": { - "conversation": "Let's work together to make mushroom_stew, cooked_rabbit, beetroot_soup, golden_carrot.", - "agent_count": 4, - "target": { - "mushroom_stew": 1, - "cooked_rabbit": 1, - "beetroot_soup": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [ - "3", - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_rabbit, 1 beetroot_soup, 1 golden_carrot. ", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_rabbit, 1 beetroot_soup, 1 golden_carrot. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_rabbit, 1 beetroot_soup, 1 golden_carrot. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_rabbit, 1 beetroot_soup, 1 golden_carrot. " - }, - "difficulty_metrics": { - "total_recipe_steps": 11, - "blocked_agents_count": 2, - "unique_target_items": 4, - "overall_difficulty_score": 9, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_4_1_cooked_porkchop_1_cooked_rabbit_1_cookie_1_pumpkin_pie": { - "conversation": "Let's work together to make cookie, cooked_rabbit, cooked_porkchop, pumpkin_pie.", - "agent_count": 4, - "target": { - "cookie": 1, - "cooked_rabbit": 1, - "cooked_porkchop": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit, 1 cooked_porkchop, 1 pumpkin_pie. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit, 1 cooked_porkchop, 1 pumpkin_pie. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "2": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit, 1 cooked_porkchop, 1 pumpkin_pie. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "3": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit, 1 cooked_porkchop, 1 pumpkin_pie. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - }, - "difficulty_metrics": { - "total_recipe_steps": 11, - "blocked_agents_count": 0, - "unique_target_items": 4, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_4_1_cooked_chicken_1_cooked_porkchop_1_cooked_rabbit_1_suspicious_stew": { - "conversation": "Let's work together to make cooked_rabbit, cooked_porkchop, cooked_chicken, suspicious_stew.", - "agent_count": 4, - "target": { - "cooked_rabbit": 1, - "cooked_porkchop": 1, - "cooked_chicken": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 cooked_chicken, 1 suspicious_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 cooked_chicken, 1 suspicious_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 cooked_chicken, 1 suspicious_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "3": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 cooked_chicken, 1 suspicious_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - }, - "difficulty_metrics": { - "total_recipe_steps": 9, - "blocked_agents_count": 0, - "unique_target_items": 4, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_4_1_cooked_porkchop_1_golden_carrot_1_mushroom_stew_1_suspicious_stew": { - "conversation": "Let's work together to make cooked_porkchop, suspicious_stew, mushroom_stew, golden_carrot.", - "agent_count": 4, - "target": { - "cooked_porkchop": 1, - "suspicious_stew": 1, - "mushroom_stew": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 mushroom_stew, 1 golden_carrot. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 mushroom_stew, 1 golden_carrot. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 mushroom_stew, 1 golden_carrot. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "3": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 mushroom_stew, 1 golden_carrot. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - }, - "difficulty_metrics": { - "total_recipe_steps": 11, - "blocked_agents_count": 0, - "unique_target_items": 4, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_4_1_cookie_1_mushroom_stew_1_suspicious_stew_blocked_access_0_1_2_3": { - "conversation": "Let's work together to make cookie, mushroom_stew, suspicious_stew.", - "agent_count": 4, - "target": { - "cookie": 1, - "mushroom_stew": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2", - "3" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew, 1 suspicious_stew. ", - "1": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew, 1 suspicious_stew. ", - "2": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew, 1 suspicious_stew. ", - "3": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew, 1 suspicious_stew. " - }, - "difficulty_metrics": { - "total_recipe_steps": 9, - "blocked_agents_count": 4, - "unique_target_items": 3, - "overall_difficulty_score": 10, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_4_1_cooked_mutton_1_golden_carrot_1_mushroom_stew_1_pumpkin_pie_blocked_access_0_1_2_3": { - "conversation": "Let's work together to make mushroom_stew, golden_carrot, cooked_mutton, pumpkin_pie.", - "agent_count": 4, - "target": { - "mushroom_stew": 1, - "golden_carrot": 1, - "cooked_mutton": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2", - "3" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 cooked_mutton, 1 pumpkin_pie. ", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 cooked_mutton, 1 pumpkin_pie. ", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 cooked_mutton, 1 pumpkin_pie. ", - "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 cooked_mutton, 1 pumpkin_pie. " - }, - "difficulty_metrics": { - "total_recipe_steps": 12, - "blocked_agents_count": 4, - "unique_target_items": 4, - "overall_difficulty_score": 11, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_4_1_cooked_mutton_1_cooked_rabbit_1_mushroom_stew_1_suspicious_stew": { - "conversation": "Let's work together to make mushroom_stew, suspicious_stew, cooked_mutton, cooked_rabbit.", - "agent_count": 4, - "target": { - "mushroom_stew": 1, - "suspicious_stew": 1, - "cooked_mutton": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 cooked_mutton, 1 cooked_rabbit. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 cooked_mutton, 1 cooked_rabbit. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 cooked_mutton, 1 cooked_rabbit. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", - "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 cooked_mutton, 1 cooked_rabbit. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit." - }, - "difficulty_metrics": { - "total_recipe_steps": 10, - "blocked_agents_count": 0, - "unique_target_items": 4, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_4_1_beetroot_soup_1_cooked_chicken_1_cooked_porkchop_1_cookie": { - "conversation": "Let's work together to make beetroot_soup, cookie, cooked_porkchop, cooked_chicken.", - "agent_count": 4, - "target": { - "beetroot_soup": 1, - "cookie": 1, - "cooked_porkchop": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie, 1 cooked_porkchop, 1 cooked_chicken. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie, 1 cooked_porkchop, 1 cooked_chicken. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie, 1 cooked_porkchop, 1 cooked_chicken. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "3": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie, 1 cooked_porkchop, 1 cooked_chicken. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." - }, - "difficulty_metrics": { - "total_recipe_steps": 10, - "blocked_agents_count": 0, - "unique_target_items": 4, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_4_1_cooked_mutton_1_cooked_porkchop_1_golden_carrot_1_pumpkin_pie_blocked_access_0_3": { - "conversation": "Let's work together to make golden_carrot, pumpkin_pie, cooked_porkchop, cooked_mutton.", - "agent_count": 4, - "target": { - "golden_carrot": 1, - "pumpkin_pie": 1, - "cooked_porkchop": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [ - "3", - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie, 1 cooked_porkchop, 1 cooked_mutton. ", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie, 1 cooked_porkchop, 1 cooked_mutton. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie, 1 cooked_porkchop, 1 cooked_mutton. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "3": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie, 1 cooked_porkchop, 1 cooked_mutton. " - }, - "difficulty_metrics": { - "total_recipe_steps": 11, - "blocked_agents_count": 2, - "unique_target_items": 4, - "overall_difficulty_score": 9, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_4_1_cooked_rabbit_1_cookie_1_golden_carrot_1_mushroom_stew": { - "conversation": "Let's work together to make cooked_rabbit, cookie, golden_carrot, mushroom_stew.", - "agent_count": 4, - "target": { - "cooked_rabbit": 1, - "cookie": 1, - "golden_carrot": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cookie, 1 golden_carrot, 1 mushroom_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cookie, 1 golden_carrot, 1 mushroom_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cookie, 1 golden_carrot, 1 mushroom_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "3": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cookie, 1 golden_carrot, 1 mushroom_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - }, - "difficulty_metrics": { - "total_recipe_steps": 11, - "blocked_agents_count": 0, - "unique_target_items": 4, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_4_1_cooked_mutton_1_cookie_1_golden_carrot_1_pumpkin_pie_blocked_access_1_3": { - "conversation": "Let's work together to make pumpkin_pie, cookie, golden_carrot, cooked_mutton.", - "agent_count": 4, - "target": { - "pumpkin_pie": 1, - "cookie": 1, - "golden_carrot": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [ - "3", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 golden_carrot, 1 cooked_mutton. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 golden_carrot, 1 cooked_mutton. ", - "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 golden_carrot, 1 cooked_mutton. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 golden_carrot, 1 cooked_mutton. " - }, - "difficulty_metrics": { - "total_recipe_steps": 12, - "blocked_agents_count": 2, - "unique_target_items": 4, - "overall_difficulty_score": 9, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_4_1_beetroot_soup_1_cooked_mutton_1_cooked_rabbit_blocked_access_1_3": { - "conversation": "Let's work together to make cooked_mutton, beetroot_soup, cooked_rabbit.", - "agent_count": 4, - "target": { - "cooked_mutton": 1, - "beetroot_soup": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [ - "3", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup, 1 cooked_rabbit. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup, 1 cooked_rabbit. ", - "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup, 1 cooked_rabbit. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", - "3": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup, 1 cooked_rabbit. " - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 2, - "unique_target_items": 3, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_4_1_cooked_chicken_1_cooked_porkchop_1_pumpkin_pie_1_suspicious_stew_blocked_access_1_3": { - "conversation": "Let's work together to make suspicious_stew, cooked_chicken, cooked_porkchop, pumpkin_pie.", - "agent_count": 4, - "target": { - "suspicious_stew": 1, - "cooked_chicken": 1, - "cooked_porkchop": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [ - "1", - "3" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_porkchop, 1 pumpkin_pie. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_porkchop, 1 pumpkin_pie. ", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_porkchop, 1 pumpkin_pie. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_porkchop, 1 pumpkin_pie. " - }, - "difficulty_metrics": { - "total_recipe_steps": 11, - "blocked_agents_count": 2, - "unique_target_items": 4, - "overall_difficulty_score": 9, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_4_1_cooked_chicken_1_cooked_porkchop_1_mushroom_stew_1_suspicious_stew_blocked_access_0_1_2_3": { - "conversation": "Let's work together to make cooked_porkchop, cooked_chicken, suspicious_stew, mushroom_stew.", - "agent_count": 4, - "target": { - "cooked_porkchop": 1, - "cooked_chicken": 1, - "suspicious_stew": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2", - "3" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 suspicious_stew, 1 mushroom_stew. ", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 suspicious_stew, 1 mushroom_stew. ", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 suspicious_stew, 1 mushroom_stew. ", - "3": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 suspicious_stew, 1 mushroom_stew. " - }, - "difficulty_metrics": { - "total_recipe_steps": 10, - "blocked_agents_count": 4, - "unique_target_items": 4, - "overall_difficulty_score": 11, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_4_1_cooked_porkchop_1_golden_carrot_1_suspicious_stew_blocked_access_2_3": { - "conversation": "Let's work together to make golden_carrot, suspicious_stew, cooked_porkchop.", - "agent_count": 4, - "target": { - "golden_carrot": 1, - "suspicious_stew": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [ - "3", - "2" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_porkchop. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_porkchop. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_porkchop. ", - "3": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_porkchop. " - }, - "difficulty_metrics": { - "total_recipe_steps": 8, - "blocked_agents_count": 2, - "unique_target_items": 3, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_4_1_cooked_mutton_1_cooked_rabbit_1_cookie": { - "conversation": "Let's work together to make cookie, cooked_rabbit, cooked_mutton.", - "agent_count": 4, - "target": { - "cookie": 1, - "cooked_rabbit": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit, 1 cooked_mutton. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit, 1 cooked_mutton. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "2": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit, 1 cooked_mutton. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "3": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit, 1 cooked_mutton. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 0, - "unique_target_items": 3, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_4_1_cookie_1_pumpkin_pie_1_suspicious_stew": { - "conversation": "Let's work together to make cookie, pumpkin_pie, suspicious_stew.", - "agent_count": 4, - "target": { - "cookie": 1, - "pumpkin_pie": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 pumpkin_pie, 1 suspicious_stew. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "1": "Collaborate with agents around you to make 1 cookie, 1 pumpkin_pie, 1 suspicious_stew. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "2": "Collaborate with agents around you to make 1 cookie, 1 pumpkin_pie, 1 suspicious_stew. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "3": "Collaborate with agents around you to make 1 cookie, 1 pumpkin_pie, 1 suspicious_stew. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - }, - "difficulty_metrics": { - "total_recipe_steps": 10, - "blocked_agents_count": 0, - "unique_target_items": 3, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_4_1_cookie_1_golden_carrot_1_pumpkin_pie_blocked_access_0_1_2_3": { - "conversation": "Let's work together to make cookie, golden_carrot, pumpkin_pie.", - "agent_count": 4, - "target": { - "cookie": 1, - "golden_carrot": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2", - "3" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 golden_carrot, 1 pumpkin_pie. ", - "1": "Collaborate with agents around you to make 1 cookie, 1 golden_carrot, 1 pumpkin_pie. ", - "2": "Collaborate with agents around you to make 1 cookie, 1 golden_carrot, 1 pumpkin_pie. ", - "3": "Collaborate with agents around you to make 1 cookie, 1 golden_carrot, 1 pumpkin_pie. " - }, - "difficulty_metrics": { - "total_recipe_steps": 10, - "blocked_agents_count": 4, - "unique_target_items": 3, - "overall_difficulty_score": 10, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_4_1_cooked_chicken_1_cooked_porkchop_1_suspicious_stew_blocked_access_0_1_2_3": { - "conversation": "Let's work together to make suspicious_stew, cooked_chicken, cooked_porkchop.", - "agent_count": 4, - "target": { - "suspicious_stew": 1, - "cooked_chicken": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2", - "3" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_porkchop. ", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_porkchop. ", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_porkchop. ", - "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_porkchop. " - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 4, - "unique_target_items": 3, - "overall_difficulty_score": 9, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_4_1_beetroot_soup_1_cooked_chicken_1_golden_carrot_blocked_access_2_3": { - "conversation": "Let's work together to make golden_carrot, cooked_chicken, beetroot_soup.", - "agent_count": 4, - "target": { - "golden_carrot": 1, - "cooked_chicken": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [ - "3", - "2" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_chicken, 1 beetroot_soup. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_chicken, 1 beetroot_soup. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_chicken, 1 beetroot_soup. ", - "3": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_chicken, 1 beetroot_soup. " - }, - "difficulty_metrics": { - "total_recipe_steps": 8, - "blocked_agents_count": 2, - "unique_target_items": 3, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_4_1_beetroot_soup_1_cooked_chicken_1_cooked_mutton_1_cooked_porkchop_blocked_access_0_2": { - "conversation": "Let's work together to make beetroot_soup, cooked_mutton, cooked_chicken, cooked_porkchop.", - "agent_count": 4, - "target": { - "beetroot_soup": 1, - "cooked_mutton": 1, - "cooked_chicken": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [ - "0", - "2" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 cooked_chicken, 1 cooked_porkchop. ", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 cooked_chicken, 1 cooked_porkchop. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 cooked_chicken, 1 cooked_porkchop. ", - "3": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 cooked_chicken, 1 cooked_porkchop. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." - }, - "difficulty_metrics": { - "total_recipe_steps": 9, - "blocked_agents_count": 2, - "unique_target_items": 4, - "overall_difficulty_score": 9, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_4_1_cooked_mutton_1_mushroom_stew_1_pumpkin_pie_blocked_access_0_1_2_3": { - "conversation": "Let's work together to make mushroom_stew, cooked_mutton, pumpkin_pie.", - "agent_count": 4, - "target": { - "mushroom_stew": 1, - "cooked_mutton": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2", - "3" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 pumpkin_pie. ", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 pumpkin_pie. ", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 pumpkin_pie. ", - "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 pumpkin_pie. " - }, - "difficulty_metrics": { - "total_recipe_steps": 9, - "blocked_agents_count": 4, - "unique_target_items": 3, - "overall_difficulty_score": 10, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_4_1_beetroot_soup_1_cooked_mutton_1_cooked_rabbit_1_golden_carrot": { - "conversation": "Let's work together to make cooked_rabbit, beetroot_soup, cooked_mutton, golden_carrot.", - "agent_count": 4, - "target": { - "cooked_rabbit": 1, - "beetroot_soup": 1, - "cooked_mutton": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup, 1 cooked_mutton, 1 golden_carrot. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup, 1 cooked_mutton, 1 golden_carrot. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup, 1 cooked_mutton, 1 golden_carrot. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "3": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup, 1 cooked_mutton, 1 golden_carrot. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - }, - "difficulty_metrics": { - "total_recipe_steps": 10, - "blocked_agents_count": 0, - "unique_target_items": 4, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_4_1_cooked_rabbit_1_mushroom_stew_1_pumpkin_pie_1_suspicious_stew_blocked_access_0_1_2_3": { - "conversation": "Let's work together to make pumpkin_pie, cooked_rabbit, suspicious_stew, mushroom_stew.", - "agent_count": 4, - "target": { - "pumpkin_pie": 1, - "cooked_rabbit": 1, - "suspicious_stew": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2", - "3" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_rabbit, 1 suspicious_stew, 1 mushroom_stew. ", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_rabbit, 1 suspicious_stew, 1 mushroom_stew. ", - "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_rabbit, 1 suspicious_stew, 1 mushroom_stew. ", - "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_rabbit, 1 suspicious_stew, 1 mushroom_stew. " - }, - "difficulty_metrics": { - "total_recipe_steps": 12, - "blocked_agents_count": 4, - "unique_target_items": 4, - "overall_difficulty_score": 11, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_4_1_cooked_chicken_1_cooked_rabbit_1_suspicious_stew": { - "conversation": "Let's work together to make suspicious_stew, cooked_chicken, cooked_rabbit.", - "agent_count": 4, - "target": { - "suspicious_stew": 1, - "cooked_chicken": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_rabbit. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_rabbit. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_rabbit. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", - "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_rabbit. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit." - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 0, - "unique_target_items": 3, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_4_1_beetroot_soup_1_cooked_mutton_1_cookie_1_suspicious_stew_blocked_access_1_3": { - "conversation": "Let's work together to make cookie, beetroot_soup, cooked_mutton, suspicious_stew.", - "agent_count": 4, - "target": { - "cookie": 1, - "beetroot_soup": 1, - "cooked_mutton": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [ - "1", - "3" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 beetroot_soup, 1 cooked_mutton, 1 suspicious_stew. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "1": "Collaborate with agents around you to make 1 cookie, 1 beetroot_soup, 1 cooked_mutton, 1 suspicious_stew. ", - "2": "Collaborate with agents around you to make 1 cookie, 1 beetroot_soup, 1 cooked_mutton, 1 suspicious_stew. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "3": "Collaborate with agents around you to make 1 cookie, 1 beetroot_soup, 1 cooked_mutton, 1 suspicious_stew. " - }, - "difficulty_metrics": { - "total_recipe_steps": 11, - "blocked_agents_count": 2, - "unique_target_items": 4, - "overall_difficulty_score": 9, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_4_1_cooked_chicken_1_cooked_porkchop_1_cookie_1_golden_carrot_blocked_access_2_3": { - "conversation": "Let's work together to make golden_carrot, cooked_chicken, cookie, cooked_porkchop.", - "agent_count": 4, - "target": { - "golden_carrot": 1, - "cooked_chicken": 1, - "cookie": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [ - "2", - "3" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_chicken, 1 cookie, 1 cooked_porkchop. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_chicken, 1 cookie, 1 cooked_porkchop. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_chicken, 1 cookie, 1 cooked_porkchop. ", - "3": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_chicken, 1 cookie, 1 cooked_porkchop. " - }, - "difficulty_metrics": { - "total_recipe_steps": 10, - "blocked_agents_count": 2, - "unique_target_items": 4, - "overall_difficulty_score": 9, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_4_1_cooked_chicken_1_cooked_mutton_1_cooked_rabbit_blocked_access_1_3": { - "conversation": "Let's work together to make cooked_chicken, cooked_mutton, cooked_rabbit.", - "agent_count": 4, - "target": { - "cooked_chicken": 1, - "cooked_mutton": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [ - "1", - "3" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_mutton, 1 cooked_rabbit. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_mutton, 1 cooked_rabbit. ", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_mutton, 1 cooked_rabbit. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", - "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_mutton, 1 cooked_rabbit. " - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 2, - "unique_target_items": 3, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_4_1_cooked_chicken_1_cooked_porkchop_1_golden_carrot_blocked_access_2_3": { - "conversation": "Let's work together to make cooked_porkchop, cooked_chicken, golden_carrot.", - "agent_count": 4, - "target": { - "cooked_porkchop": 1, - "cooked_chicken": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [ - "2", - "3" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 golden_carrot. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 golden_carrot. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 golden_carrot. ", - "3": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 golden_carrot. " - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 2, - "unique_target_items": 3, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_4_1_beetroot_soup_1_cooked_mutton_1_cooked_porkchop_1_golden_carrot": { - "conversation": "Let's work together to make cooked_mutton, golden_carrot, cooked_porkchop, beetroot_soup.", - "agent_count": 4, - "target": { - "cooked_mutton": 1, - "golden_carrot": 1, - "cooked_porkchop": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 golden_carrot, 1 cooked_porkchop, 1 beetroot_soup. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 golden_carrot, 1 cooked_porkchop, 1 beetroot_soup. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 golden_carrot, 1 cooked_porkchop, 1 beetroot_soup. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "3": "Collaborate with agents around you to make 1 cooked_mutton, 1 golden_carrot, 1 cooked_porkchop, 1 beetroot_soup. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - }, - "difficulty_metrics": { - "total_recipe_steps": 10, - "blocked_agents_count": 0, - "unique_target_items": 4, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_4_1_cooked_mutton_1_cooked_porkchop_1_suspicious_stew_blocked_access_0_1": { - "conversation": "Let's work together to make cooked_mutton, cooked_porkchop, suspicious_stew.", - "agent_count": 4, - "target": { - "cooked_mutton": 1, - "cooked_porkchop": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [ - "1", - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 suspicious_stew. ", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 suspicious_stew. ", - "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 suspicious_stew. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "3": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 suspicious_stew. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 2, - "unique_target_items": 3, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_4_1_beetroot_soup_1_cooked_rabbit_1_golden_carrot_blocked_access_1_2": { - "conversation": "Let's work together to make beetroot_soup, golden_carrot, cooked_rabbit.", - "agent_count": 4, - "target": { - "beetroot_soup": 1, - "golden_carrot": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [ - "1", - "2" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 golden_carrot, 1 cooked_rabbit. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 golden_carrot, 1 cooked_rabbit. ", - "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 golden_carrot, 1 cooked_rabbit. ", - "3": "Collaborate with agents around you to make 1 beetroot_soup, 1 golden_carrot, 1 cooked_rabbit. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit." - }, - "difficulty_metrics": { - "total_recipe_steps": 8, - "blocked_agents_count": 2, - "unique_target_items": 3, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_4_1_beetroot_soup_1_mushroom_stew_1_pumpkin_pie_1_suspicious_stew_blocked_access_0_1_2_3": { - "conversation": "Let's work together to make mushroom_stew, beetroot_soup, pumpkin_pie, suspicious_stew.", - "agent_count": 4, - "target": { - "mushroom_stew": 1, - "beetroot_soup": 1, - "pumpkin_pie": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2", - "3" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 pumpkin_pie, 1 suspicious_stew. ", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 pumpkin_pie, 1 suspicious_stew. ", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 pumpkin_pie, 1 suspicious_stew. ", - "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 pumpkin_pie, 1 suspicious_stew. " - }, - "difficulty_metrics": { - "total_recipe_steps": 13, - "blocked_agents_count": 4, - "unique_target_items": 4, - "overall_difficulty_score": 11, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_4_1_beetroot_soup_1_cooked_rabbit_1_cookie_1_pumpkin_pie_blocked_access_0_2": { - "conversation": "Let's work together to make pumpkin_pie, cookie, beetroot_soup, cooked_rabbit.", - "agent_count": 4, - "target": { - "pumpkin_pie": 1, - "cookie": 1, - "beetroot_soup": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [ - "2", - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 beetroot_soup, 1 cooked_rabbit. ", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 beetroot_soup, 1 cooked_rabbit. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", - "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 beetroot_soup, 1 cooked_rabbit. ", - "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie, 1 beetroot_soup, 1 cooked_rabbit. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit." - }, - "difficulty_metrics": { - "total_recipe_steps": 12, - "blocked_agents_count": 2, - "unique_target_items": 4, - "overall_difficulty_score": 9, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_4_1_beetroot_soup_1_cooked_mutton_1_mushroom_stew_blocked_access_0_3": { - "conversation": "Let's work together to make mushroom_stew, cooked_mutton, beetroot_soup.", - "agent_count": 4, - "target": { - "mushroom_stew": 1, - "cooked_mutton": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [ - "3", - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 beetroot_soup. ", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 beetroot_soup. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 beetroot_soup. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 beetroot_soup. " - }, - "difficulty_metrics": { - "total_recipe_steps": 8, - "blocked_agents_count": 2, - "unique_target_items": 3, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_4_1_beetroot_soup_1_golden_carrot_1_mushroom_stew_blocked_access_0_2": { - "conversation": "Let's work together to make mushroom_stew, golden_carrot, beetroot_soup.", - "agent_count": 4, - "target": { - "mushroom_stew": 1, - "golden_carrot": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [ - "2", - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 beetroot_soup. ", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 beetroot_soup. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 beetroot_soup. ", - "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 beetroot_soup. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - }, - "difficulty_metrics": { - "total_recipe_steps": 9, - "blocked_agents_count": 2, - "unique_target_items": 3, - "overall_difficulty_score": 8, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_4_1_beetroot_soup_1_cooked_rabbit_1_pumpkin_pie_1_suspicious_stew": { - "conversation": "Let's work together to make cooked_rabbit, pumpkin_pie, suspicious_stew, beetroot_soup.", - "agent_count": 4, - "target": { - "cooked_rabbit": 1, - "pumpkin_pie": 1, - "suspicious_stew": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie, 1 suspicious_stew, 1 beetroot_soup. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie, 1 suspicious_stew, 1 beetroot_soup. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie, 1 suspicious_stew, 1 beetroot_soup. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "3": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie, 1 suspicious_stew, 1 beetroot_soup. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - }, - "difficulty_metrics": { - "total_recipe_steps": 12, - "blocked_agents_count": 0, - "unique_target_items": 4, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_4_1_cooked_mutton_1_cookie_1_golden_carrot_1_suspicious_stew": { - "conversation": "Let's work together to make cookie, suspicious_stew, golden_carrot, cooked_mutton.", - "agent_count": 4, - "target": { - "cookie": 1, - "suspicious_stew": 1, - "golden_carrot": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 suspicious_stew, 1 golden_carrot, 1 cooked_mutton. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "1": "Collaborate with agents around you to make 1 cookie, 1 suspicious_stew, 1 golden_carrot, 1 cooked_mutton. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "2": "Collaborate with agents around you to make 1 cookie, 1 suspicious_stew, 1 golden_carrot, 1 cooked_mutton. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "3": "Collaborate with agents around you to make 1 cookie, 1 suspicious_stew, 1 golden_carrot, 1 cooked_mutton. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." - }, - "difficulty_metrics": { - "total_recipe_steps": 11, - "blocked_agents_count": 0, - "unique_target_items": 4, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_4_1_cooked_chicken_1_cooked_mutton_1_cooked_porkchop_1_mushroom_stew": { - "conversation": "Let's work together to make cooked_porkchop, cooked_chicken, cooked_mutton, mushroom_stew.", - "agent_count": 4, - "target": { - "cooked_porkchop": 1, - "cooked_chicken": 1, - "cooked_mutton": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 cooked_mutton, 1 mushroom_stew. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 cooked_mutton, 1 mushroom_stew. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 cooked_mutton, 1 mushroom_stew. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "3": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 cooked_mutton, 1 mushroom_stew. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - }, - "difficulty_metrics": { - "total_recipe_steps": 9, - "blocked_agents_count": 0, - "unique_target_items": 4, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_4_1_cooked_chicken_1_cooked_mutton_1_mushroom_stew_blocked_access_0_1_2_3": { - "conversation": "Let's work together to make cooked_mutton, mushroom_stew, cooked_chicken.", - "agent_count": 4, - "target": { - "cooked_mutton": 1, - "mushroom_stew": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2", - "3" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 cooked_chicken. ", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 cooked_chicken. ", - "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 cooked_chicken. ", - "3": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 cooked_chicken. " - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 4, - "unique_target_items": 3, - "overall_difficulty_score": 9, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_4_1_cooked_porkchop_1_cooked_rabbit_1_golden_carrot": { - "conversation": "Let's work together to make golden_carrot, cooked_rabbit, cooked_porkchop.", - "agent_count": 4, - "target": { - "golden_carrot": 1, - "cooked_rabbit": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_rabbit, 1 cooked_porkchop. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_rabbit, 1 cooked_porkchop. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_rabbit, 1 cooked_porkchop. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "3": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_rabbit, 1 cooked_porkchop. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 0, - "unique_target_items": 3, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_4_1_cooked_porkchop_1_cookie_1_pumpkin_pie_1_suspicious_stew_blocked_access_0_1_2_3": { - "conversation": "Let's work together to make suspicious_stew, cookie, cooked_porkchop, pumpkin_pie.", - "agent_count": 4, - "target": { - "suspicious_stew": 1, - "cookie": 1, - "cooked_porkchop": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2", - "3" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cookie, 1 cooked_porkchop, 1 pumpkin_pie. ", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cookie, 1 cooked_porkchop, 1 pumpkin_pie. ", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cookie, 1 cooked_porkchop, 1 pumpkin_pie. ", - "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 cookie, 1 cooked_porkchop, 1 pumpkin_pie. " - }, - "difficulty_metrics": { - "total_recipe_steps": 12, - "blocked_agents_count": 4, - "unique_target_items": 4, - "overall_difficulty_score": 11, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_4_1_beetroot_soup_1_cooked_chicken_1_cooked_mutton_1_cooked_porkchop_blocked_access_0_3": { - "conversation": "Let's work together to make cooked_chicken, cooked_porkchop, cooked_mutton, beetroot_soup.", - "agent_count": 4, - "target": { - "cooked_chicken": 1, - "cooked_porkchop": 1, - "cooked_mutton": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [ - "3", - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop, 1 cooked_mutton, 1 beetroot_soup. ", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop, 1 cooked_mutton, 1 beetroot_soup. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop, 1 cooked_mutton, 1 beetroot_soup. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop, 1 cooked_mutton, 1 beetroot_soup. " - }, - "difficulty_metrics": { - "total_recipe_steps": 9, - "blocked_agents_count": 2, - "unique_target_items": 4, - "overall_difficulty_score": 9, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_4_1_beetroot_soup_1_cooked_chicken_1_cooked_mutton_1_mushroom_stew_blocked_access_0_1_2_3": { - "conversation": "Let's work together to make mushroom_stew, beetroot_soup, cooked_mutton, cooked_chicken.", - "agent_count": 4, - "target": { - "mushroom_stew": 1, - "beetroot_soup": 1, - "cooked_mutton": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2", - "3" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 cooked_mutton, 1 cooked_chicken. ", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 cooked_mutton, 1 cooked_chicken. ", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 cooked_mutton, 1 cooked_chicken. ", - "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 cooked_mutton, 1 cooked_chicken. " - }, - "difficulty_metrics": { - "total_recipe_steps": 10, - "blocked_agents_count": 4, - "unique_target_items": 4, - "overall_difficulty_score": 11, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_4_1_cooked_mutton_1_cooked_rabbit_1_mushroom_stew_1_pumpkin_pie_blocked_access_0_1_2_3": { - "conversation": "Let's work together to make cooked_rabbit, cooked_mutton, pumpkin_pie, mushroom_stew.", - "agent_count": 4, - "target": { - "cooked_rabbit": 1, - "cooked_mutton": 1, - "pumpkin_pie": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2", - "3" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_mutton, 1 pumpkin_pie, 1 mushroom_stew. ", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_mutton, 1 pumpkin_pie, 1 mushroom_stew. ", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_mutton, 1 pumpkin_pie, 1 mushroom_stew. ", - "3": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_mutton, 1 pumpkin_pie, 1 mushroom_stew. " - }, - "difficulty_metrics": { - "total_recipe_steps": 11, - "blocked_agents_count": 4, - "unique_target_items": 4, - "overall_difficulty_score": 11, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_4_1_cooked_chicken_1_cooked_rabbit_1_cookie_1_suspicious_stew_blocked_access_0_2": { - "conversation": "Let's work together to make cooked_rabbit, suspicious_stew, cookie, cooked_chicken.", - "agent_count": 4, - "target": { - "cooked_rabbit": 1, - "suspicious_stew": 1, - "cookie": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [ - "0", - "2" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew, 1 cookie, 1 cooked_chicken. ", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew, 1 cookie, 1 cooked_chicken. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew, 1 cookie, 1 cooked_chicken. ", - "3": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew, 1 cookie, 1 cooked_chicken. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." - }, - "difficulty_metrics": { - "total_recipe_steps": 10, - "blocked_agents_count": 2, - "unique_target_items": 4, - "overall_difficulty_score": 9, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_4_1_cooked_chicken_1_golden_carrot_1_mushroom_stew_1_suspicious_stew_blocked_access_0_1_2_3": { - "conversation": "Let's work together to make cooked_chicken, suspicious_stew, golden_carrot, mushroom_stew.", - "agent_count": 4, - "target": { - "cooked_chicken": 1, - "suspicious_stew": 1, - "golden_carrot": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2", - "3" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew, 1 golden_carrot, 1 mushroom_stew. ", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew, 1 golden_carrot, 1 mushroom_stew. ", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew, 1 golden_carrot, 1 mushroom_stew. ", - "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew, 1 golden_carrot, 1 mushroom_stew. " - }, - "difficulty_metrics": { - "total_recipe_steps": 11, - "blocked_agents_count": 4, - "unique_target_items": 4, - "overall_difficulty_score": 11, - "difficulty_category": "hard" - }, - "difficulty": "hard" - } -} \ No newline at end of file diff --git a/tasks/cooking_tasks/train_tasks/train_tasks_5_agents.json b/tasks/cooking_tasks/train_tasks/train_tasks_5_agents.json deleted file mode 100644 index 1704d6a..0000000 --- a/tasks/cooking_tasks/train_tasks/train_tasks_5_agents.json +++ /dev/null @@ -1,3772 +0,0 @@ -{ - "multiagent_cooking_5_1_cooked_chicken_1_cooked_porkchop_1_cooked_rabbit_1_mushroom_stew_1_pumpkin_pie_blocked_access_1_3": { - "conversation": "Let's work together to make cooked_porkchop, mushroom_stew, cooked_chicken, cooked_rabbit, pumpkin_pie.", - "agent_count": 5, - "target": { - "cooked_porkchop": 1, - "mushroom_stew": 1, - "cooked_chicken": 1, - "cooked_rabbit": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [ - "1", - "3" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew, 1 cooked_chicken, 1 cooked_rabbit, 1 pumpkin_pie. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew, 1 cooked_chicken, 1 cooked_rabbit, 1 pumpkin_pie. ", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew, 1 cooked_chicken, 1 cooked_rabbit, 1 pumpkin_pie. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "3": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew, 1 cooked_chicken, 1 cooked_rabbit, 1 pumpkin_pie. ", - "4": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew, 1 cooked_chicken, 1 cooked_rabbit, 1 pumpkin_pie. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - }, - "difficulty_metrics": { - "total_recipe_steps": 13, - "blocked_agents_count": 2, - "unique_target_items": 5, - "overall_difficulty_score": 10, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_5_1_beetroot_soup_1_cooked_chicken_1_cooked_porkchop_1_suspicious_stew_blocked_access_0_3": { - "conversation": "Let's work together to make beetroot_soup, cooked_porkchop, suspicious_stew, cooked_chicken.", - "agent_count": 5, - "target": { - "beetroot_soup": 1, - "cooked_porkchop": 1, - "suspicious_stew": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [ - "3", - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop, 1 suspicious_stew, 1 cooked_chicken. ", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop, 1 suspicious_stew, 1 cooked_chicken. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop, 1 suspicious_stew, 1 cooked_chicken. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "3": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop, 1 suspicious_stew, 1 cooked_chicken. ", - "4": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop, 1 suspicious_stew, 1 cooked_chicken. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." - }, - "difficulty_metrics": { - "total_recipe_steps": 10, - "blocked_agents_count": 2, - "unique_target_items": 4, - "overall_difficulty_score": 9, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_5_1_cooked_mutton_1_cooked_porkchop_1_cooked_rabbit_1_cookie_1_suspicious_stew": { - "conversation": "Let's work together to make cooked_mutton, cooked_rabbit, suspicious_stew, cooked_porkchop, cookie.", - "agent_count": 5, - "target": { - "cooked_mutton": 1, - "cooked_rabbit": 1, - "suspicious_stew": 1, - "cooked_porkchop": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 suspicious_stew, 1 cooked_porkchop, 1 cookie. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 suspicious_stew, 1 cooked_porkchop, 1 cookie. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 suspicious_stew, 1 cooked_porkchop, 1 cookie. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "3": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 suspicious_stew, 1 cooked_porkchop, 1 cookie. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "4": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 suspicious_stew, 1 cooked_porkchop, 1 cookie. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - }, - "difficulty_metrics": { - "total_recipe_steps": 12, - "blocked_agents_count": 0, - "unique_target_items": 5, - "overall_difficulty_score": 8, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_5_1_cooked_rabbit_1_mushroom_stew_1_pumpkin_pie_1_suspicious_stew_blocked_access_0_1_2_3_4": { - "conversation": "Let's work together to make mushroom_stew, suspicious_stew, pumpkin_pie, cooked_rabbit.", - "agent_count": 5, - "target": { - "mushroom_stew": 1, - "suspicious_stew": 1, - "pumpkin_pie": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2", - "3", - "4" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 pumpkin_pie, 1 cooked_rabbit. ", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 pumpkin_pie, 1 cooked_rabbit. ", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 pumpkin_pie, 1 cooked_rabbit. ", - "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 pumpkin_pie, 1 cooked_rabbit. ", - "4": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 pumpkin_pie, 1 cooked_rabbit. " - }, - "difficulty_metrics": { - "total_recipe_steps": 12, - "blocked_agents_count": 5, - "unique_target_items": 4, - "overall_difficulty_score": 12, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_5_1_cooked_mutton_1_cooked_porkchop_1_mushroom_stew_1_pumpkin_pie_blocked_access_0_1_2_3_4": { - "conversation": "Let's work together to make cooked_mutton, mushroom_stew, cooked_porkchop, pumpkin_pie.", - "agent_count": 5, - "target": { - "cooked_mutton": 1, - "mushroom_stew": 1, - "cooked_porkchop": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2", - "3", - "4" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 cooked_porkchop, 1 pumpkin_pie. ", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 cooked_porkchop, 1 pumpkin_pie. ", - "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 cooked_porkchop, 1 pumpkin_pie. ", - "3": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 cooked_porkchop, 1 pumpkin_pie. ", - "4": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 cooked_porkchop, 1 pumpkin_pie. " - }, - "difficulty_metrics": { - "total_recipe_steps": 11, - "blocked_agents_count": 5, - "unique_target_items": 4, - "overall_difficulty_score": 12, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_5_1_cooked_mutton_1_golden_carrot_1_mushroom_stew_1_pumpkin_pie_1_suspicious_stew": { - "conversation": "Let's work together to make pumpkin_pie, suspicious_stew, mushroom_stew, golden_carrot, cooked_mutton.", - "agent_count": 5, - "target": { - "pumpkin_pie": 1, - "suspicious_stew": 1, - "mushroom_stew": 1, - "golden_carrot": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew, 1 mushroom_stew, 1 golden_carrot, 1 cooked_mutton. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew, 1 mushroom_stew, 1 golden_carrot, 1 cooked_mutton. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew, 1 mushroom_stew, 1 golden_carrot, 1 cooked_mutton. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew, 1 mushroom_stew, 1 golden_carrot, 1 cooked_mutton. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "4": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew, 1 mushroom_stew, 1 golden_carrot, 1 cooked_mutton. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." - }, - "difficulty_metrics": { - "total_recipe_steps": 15, - "blocked_agents_count": 0, - "unique_target_items": 5, - "overall_difficulty_score": 8, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_5_1_beetroot_soup_1_cooked_mutton_1_cookie_1_pumpkin_pie_1_suspicious_stew_blocked_access_1_2": { - "conversation": "Let's work together to make cookie, beetroot_soup, cooked_mutton, suspicious_stew, pumpkin_pie.", - "agent_count": 5, - "target": { - "cookie": 1, - "beetroot_soup": 1, - "cooked_mutton": 1, - "suspicious_stew": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [ - "2", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 beetroot_soup, 1 cooked_mutton, 1 suspicious_stew, 1 pumpkin_pie. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "1": "Collaborate with agents around you to make 1 cookie, 1 beetroot_soup, 1 cooked_mutton, 1 suspicious_stew, 1 pumpkin_pie. ", - "2": "Collaborate with agents around you to make 1 cookie, 1 beetroot_soup, 1 cooked_mutton, 1 suspicious_stew, 1 pumpkin_pie. ", - "3": "Collaborate with agents around you to make 1 cookie, 1 beetroot_soup, 1 cooked_mutton, 1 suspicious_stew, 1 pumpkin_pie. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "4": "Collaborate with agents around you to make 1 cookie, 1 beetroot_soup, 1 cooked_mutton, 1 suspicious_stew, 1 pumpkin_pie. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - }, - "difficulty_metrics": { - "total_recipe_steps": 15, - "blocked_agents_count": 2, - "unique_target_items": 5, - "overall_difficulty_score": 10, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_5_1_beetroot_soup_1_cooked_porkchop_1_cooked_rabbit_1_cookie_1_mushroom_stew_blocked_access_0_1": { - "conversation": "Let's work together to make cooked_rabbit, cooked_porkchop, mushroom_stew, beetroot_soup, cookie.", - "agent_count": 5, - "target": { - "cooked_rabbit": 1, - "cooked_porkchop": 1, - "mushroom_stew": 1, - "beetroot_soup": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [ - "1", - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 mushroom_stew, 1 beetroot_soup, 1 cookie. ", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 mushroom_stew, 1 beetroot_soup, 1 cookie. ", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 mushroom_stew, 1 beetroot_soup, 1 cookie. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "3": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 mushroom_stew, 1 beetroot_soup, 1 cookie. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "4": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 mushroom_stew, 1 beetroot_soup, 1 cookie. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - }, - "difficulty_metrics": { - "total_recipe_steps": 13, - "blocked_agents_count": 2, - "unique_target_items": 5, - "overall_difficulty_score": 10, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_5_1_beetroot_soup_1_cooked_mutton_1_golden_carrot_1_suspicious_stew_blocked_access_0_4": { - "conversation": "Let's work together to make suspicious_stew, cooked_mutton, golden_carrot, beetroot_soup.", - "agent_count": 5, - "target": { - "suspicious_stew": 1, - "cooked_mutton": 1, - "golden_carrot": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [ - "0", - "4" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton, 1 golden_carrot, 1 beetroot_soup. ", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton, 1 golden_carrot, 1 beetroot_soup. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton, 1 golden_carrot, 1 beetroot_soup. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton, 1 golden_carrot, 1 beetroot_soup. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "4": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton, 1 golden_carrot, 1 beetroot_soup. " - }, - "difficulty_metrics": { - "total_recipe_steps": 11, - "blocked_agents_count": 2, - "unique_target_items": 4, - "overall_difficulty_score": 9, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_5_1_cooked_chicken_1_cooked_porkchop_1_cooked_rabbit_1_cookie_1_suspicious_stew": { - "conversation": "Let's work together to make cooked_porkchop, cooked_chicken, cookie, cooked_rabbit, suspicious_stew.", - "agent_count": 5, - "target": { - "cooked_porkchop": 1, - "cooked_chicken": 1, - "cookie": 1, - "cooked_rabbit": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 cookie, 1 cooked_rabbit, 1 suspicious_stew. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 cookie, 1 cooked_rabbit, 1 suspicious_stew. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 cookie, 1 cooked_rabbit, 1 suspicious_stew. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "3": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 cookie, 1 cooked_rabbit, 1 suspicious_stew. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "4": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken, 1 cookie, 1 cooked_rabbit, 1 suspicious_stew. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - }, - "difficulty_metrics": { - "total_recipe_steps": 12, - "blocked_agents_count": 0, - "unique_target_items": 5, - "overall_difficulty_score": 8, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_5_1_cooked_porkchop_1_golden_carrot_1_mushroom_stew_1_pumpkin_pie_blocked_access_0_2": { - "conversation": "Let's work together to make pumpkin_pie, mushroom_stew, golden_carrot, cooked_porkchop.", - "agent_count": 5, - "target": { - "pumpkin_pie": 1, - "mushroom_stew": 1, - "golden_carrot": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [ - "0", - "2" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 golden_carrot, 1 cooked_porkchop. ", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 golden_carrot, 1 cooked_porkchop. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 golden_carrot, 1 cooked_porkchop. ", - "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 golden_carrot, 1 cooked_porkchop. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "4": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 golden_carrot, 1 cooked_porkchop. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." - }, - "difficulty_metrics": { - "total_recipe_steps": 12, - "blocked_agents_count": 2, - "unique_target_items": 4, - "overall_difficulty_score": 9, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_5_1_cooked_porkchop_1_cooked_rabbit_1_mushroom_stew_1_suspicious_stew_blocked_access_0_3": { - "conversation": "Let's work together to make suspicious_stew, cooked_rabbit, cooked_porkchop, mushroom_stew.", - "agent_count": 5, - "target": { - "suspicious_stew": 1, - "cooked_rabbit": 1, - "cooked_porkchop": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [ - "3", - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_rabbit, 1 cooked_porkchop, 1 mushroom_stew. ", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_rabbit, 1 cooked_porkchop, 1 mushroom_stew. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_rabbit, 1 cooked_porkchop, 1 mushroom_stew. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_rabbit, 1 cooked_porkchop, 1 mushroom_stew. ", - "4": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_rabbit, 1 cooked_porkchop, 1 mushroom_stew. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - }, - "difficulty_metrics": { - "total_recipe_steps": 10, - "blocked_agents_count": 2, - "unique_target_items": 4, - "overall_difficulty_score": 9, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_5_1_cooked_chicken_1_cooked_mutton_1_cooked_porkchop_1_cooked_rabbit_1_pumpkin_pie": { - "conversation": "Let's work together to make cooked_chicken, cooked_porkchop, cooked_rabbit, cooked_mutton, pumpkin_pie.", - "agent_count": 5, - "target": { - "cooked_chicken": 1, - "cooked_porkchop": 1, - "cooked_rabbit": 1, - "cooked_mutton": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop, 1 cooked_rabbit, 1 cooked_mutton, 1 pumpkin_pie. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop, 1 cooked_rabbit, 1 cooked_mutton, 1 pumpkin_pie. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop, 1 cooked_rabbit, 1 cooked_mutton, 1 pumpkin_pie. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop, 1 cooked_rabbit, 1 cooked_mutton, 1 pumpkin_pie. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "4": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop, 1 cooked_rabbit, 1 cooked_mutton, 1 pumpkin_pie. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - }, - "difficulty_metrics": { - "total_recipe_steps": 12, - "blocked_agents_count": 0, - "unique_target_items": 5, - "overall_difficulty_score": 8, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_5_1_cooked_chicken_1_cookie_1_mushroom_stew_1_pumpkin_pie_1_suspicious_stew_blocked_access_0_1_2_3_4": { - "conversation": "Let's work together to make suspicious_stew, cooked_chicken, mushroom_stew, pumpkin_pie, cookie.", - "agent_count": 5, - "target": { - "suspicious_stew": 1, - "cooked_chicken": 1, - "mushroom_stew": 1, - "pumpkin_pie": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2", - "3", - "4" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 mushroom_stew, 1 pumpkin_pie, 1 cookie. ", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 mushroom_stew, 1 pumpkin_pie, 1 cookie. ", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 mushroom_stew, 1 pumpkin_pie, 1 cookie. ", - "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 mushroom_stew, 1 pumpkin_pie, 1 cookie. ", - "4": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 mushroom_stew, 1 pumpkin_pie, 1 cookie. " - }, - "difficulty_metrics": { - "total_recipe_steps": 15, - "blocked_agents_count": 5, - "unique_target_items": 5, - "overall_difficulty_score": 13, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_5_1_cooked_mutton_1_cooked_porkchop_1_cooked_rabbit_1_pumpkin_pie": { - "conversation": "Let's work together to make cooked_mutton, pumpkin_pie, cooked_rabbit, cooked_porkchop.", - "agent_count": 5, - "target": { - "cooked_mutton": 1, - "pumpkin_pie": 1, - "cooked_rabbit": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie, 1 cooked_rabbit, 1 cooked_porkchop. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie, 1 cooked_rabbit, 1 cooked_porkchop. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie, 1 cooked_rabbit, 1 cooked_porkchop. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "3": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie, 1 cooked_rabbit, 1 cooked_porkchop. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "4": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie, 1 cooked_rabbit, 1 cooked_porkchop. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." - }, - "difficulty_metrics": { - "total_recipe_steps": 10, - "blocked_agents_count": 0, - "unique_target_items": 4, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_5_1_beetroot_soup_1_cooked_chicken_1_mushroom_stew_1_suspicious_stew": { - "conversation": "Let's work together to make cooked_chicken, beetroot_soup, suspicious_stew, mushroom_stew.", - "agent_count": 5, - "target": { - "cooked_chicken": 1, - "beetroot_soup": 1, - "suspicious_stew": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 beetroot_soup, 1 suspicious_stew, 1 mushroom_stew. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 beetroot_soup, 1 suspicious_stew, 1 mushroom_stew. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 beetroot_soup, 1 suspicious_stew, 1 mushroom_stew. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 beetroot_soup, 1 suspicious_stew, 1 mushroom_stew. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "4": "Collaborate with agents around you to make 1 cooked_chicken, 1 beetroot_soup, 1 suspicious_stew, 1 mushroom_stew. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - }, - "difficulty_metrics": { - "total_recipe_steps": 11, - "blocked_agents_count": 0, - "unique_target_items": 4, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_5_1_cooked_chicken_1_cookie_1_mushroom_stew_1_suspicious_stew_blocked_access_1_3": { - "conversation": "Let's work together to make cookie, suspicious_stew, cooked_chicken, mushroom_stew.", - "agent_count": 5, - "target": { - "cookie": 1, - "suspicious_stew": 1, - "cooked_chicken": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [ - "3", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 suspicious_stew, 1 cooked_chicken, 1 mushroom_stew. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "1": "Collaborate with agents around you to make 1 cookie, 1 suspicious_stew, 1 cooked_chicken, 1 mushroom_stew. ", - "2": "Collaborate with agents around you to make 1 cookie, 1 suspicious_stew, 1 cooked_chicken, 1 mushroom_stew. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "3": "Collaborate with agents around you to make 1 cookie, 1 suspicious_stew, 1 cooked_chicken, 1 mushroom_stew. ", - "4": "Collaborate with agents around you to make 1 cookie, 1 suspicious_stew, 1 cooked_chicken, 1 mushroom_stew. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - }, - "difficulty_metrics": { - "total_recipe_steps": 11, - "blocked_agents_count": 2, - "unique_target_items": 4, - "overall_difficulty_score": 9, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_5_1_beetroot_soup_1_cooked_porkchop_1_golden_carrot_1_pumpkin_pie_1_suspicious_stew_blocked_access_2_3": { - "conversation": "Let's work together to make suspicious_stew, beetroot_soup, golden_carrot, pumpkin_pie, cooked_porkchop.", - "agent_count": 5, - "target": { - "suspicious_stew": 1, - "beetroot_soup": 1, - "golden_carrot": 1, - "pumpkin_pie": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [ - "2", - "3" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup, 1 golden_carrot, 1 pumpkin_pie, 1 cooked_porkchop. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup, 1 golden_carrot, 1 pumpkin_pie, 1 cooked_porkchop. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup, 1 golden_carrot, 1 pumpkin_pie, 1 cooked_porkchop. ", - "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup, 1 golden_carrot, 1 pumpkin_pie, 1 cooked_porkchop. ", - "4": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup, 1 golden_carrot, 1 pumpkin_pie, 1 cooked_porkchop. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." - }, - "difficulty_metrics": { - "total_recipe_steps": 15, - "blocked_agents_count": 2, - "unique_target_items": 5, - "overall_difficulty_score": 10, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_5_1_cooked_chicken_1_cooked_porkchop_1_cookie_1_suspicious_stew_blocked_access_0_4": { - "conversation": "Let's work together to make cooked_chicken, suspicious_stew, cooked_porkchop, cookie.", - "agent_count": 5, - "target": { - "cooked_chicken": 1, - "suspicious_stew": 1, - "cooked_porkchop": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [ - "4", - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew, 1 cooked_porkchop, 1 cookie. ", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew, 1 cooked_porkchop, 1 cookie. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew, 1 cooked_porkchop, 1 cookie. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew, 1 cooked_porkchop, 1 cookie. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "4": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew, 1 cooked_porkchop, 1 cookie. " - }, - "difficulty_metrics": { - "total_recipe_steps": 10, - "blocked_agents_count": 2, - "unique_target_items": 4, - "overall_difficulty_score": 9, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_5_1_cooked_mutton_1_cooked_rabbit_1_golden_carrot_1_mushroom_stew_1_suspicious_stew_blocked_access_2_4": { - "conversation": "Let's work together to make suspicious_stew, cooked_mutton, mushroom_stew, cooked_rabbit, golden_carrot.", - "agent_count": 5, - "target": { - "suspicious_stew": 1, - "cooked_mutton": 1, - "mushroom_stew": 1, - "cooked_rabbit": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [ - "4", - "2" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton, 1 mushroom_stew, 1 cooked_rabbit, 1 golden_carrot. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton, 1 mushroom_stew, 1 cooked_rabbit, 1 golden_carrot. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton, 1 mushroom_stew, 1 cooked_rabbit, 1 golden_carrot. ", - "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton, 1 mushroom_stew, 1 cooked_rabbit, 1 golden_carrot. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "4": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton, 1 mushroom_stew, 1 cooked_rabbit, 1 golden_carrot. " - }, - "difficulty_metrics": { - "total_recipe_steps": 13, - "blocked_agents_count": 2, - "unique_target_items": 5, - "overall_difficulty_score": 10, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_5_1_cooked_chicken_1_cooked_rabbit_1_golden_carrot_1_mushroom_stew_blocked_access_1_3": { - "conversation": "Let's work together to make cooked_chicken, cooked_rabbit, golden_carrot, mushroom_stew.", - "agent_count": 5, - "target": { - "cooked_chicken": 1, - "cooked_rabbit": 1, - "golden_carrot": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [ - "1", - "3" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 golden_carrot, 1 mushroom_stew. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 golden_carrot, 1 mushroom_stew. ", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 golden_carrot, 1 mushroom_stew. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 golden_carrot, 1 mushroom_stew. ", - "4": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 golden_carrot, 1 mushroom_stew. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - }, - "difficulty_metrics": { - "total_recipe_steps": 10, - "blocked_agents_count": 2, - "unique_target_items": 4, - "overall_difficulty_score": 9, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_5_1_cooked_chicken_1_cooked_mutton_1_cooked_rabbit_1_cookie": { - "conversation": "Let's work together to make cooked_mutton, cooked_rabbit, cooked_chicken, cookie.", - "agent_count": 5, - "target": { - "cooked_mutton": 1, - "cooked_rabbit": 1, - "cooked_chicken": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 cooked_chicken, 1 cookie. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 cooked_chicken, 1 cookie. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 cooked_chicken, 1 cookie. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "3": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 cooked_chicken, 1 cookie. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "4": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 cooked_chicken, 1 cookie. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - }, - "difficulty_metrics": { - "total_recipe_steps": 9, - "blocked_agents_count": 0, - "unique_target_items": 4, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_5_1_cooked_porkchop_1_cooked_rabbit_1_mushroom_stew_1_pumpkin_pie_1_suspicious_stew": { - "conversation": "Let's work together to make cooked_porkchop, suspicious_stew, mushroom_stew, cooked_rabbit, pumpkin_pie.", - "agent_count": 5, - "target": { - "cooked_porkchop": 1, - "suspicious_stew": 1, - "mushroom_stew": 1, - "cooked_rabbit": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 mushroom_stew, 1 cooked_rabbit, 1 pumpkin_pie. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 mushroom_stew, 1 cooked_rabbit, 1 pumpkin_pie. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 mushroom_stew, 1 cooked_rabbit, 1 pumpkin_pie. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "3": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 mushroom_stew, 1 cooked_rabbit, 1 pumpkin_pie. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "4": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 mushroom_stew, 1 cooked_rabbit, 1 pumpkin_pie. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - }, - "difficulty_metrics": { - "total_recipe_steps": 14, - "blocked_agents_count": 0, - "unique_target_items": 5, - "overall_difficulty_score": 8, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_5_1_beetroot_soup_1_cooked_chicken_1_cooked_porkchop_1_pumpkin_pie": { - "conversation": "Let's work together to make cooked_porkchop, beetroot_soup, cooked_chicken, pumpkin_pie.", - "agent_count": 5, - "target": { - "cooked_porkchop": 1, - "beetroot_soup": 1, - "cooked_chicken": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 beetroot_soup, 1 cooked_chicken, 1 pumpkin_pie. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 beetroot_soup, 1 cooked_chicken, 1 pumpkin_pie. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 beetroot_soup, 1 cooked_chicken, 1 pumpkin_pie. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "3": "Collaborate with agents around you to make 1 cooked_porkchop, 1 beetroot_soup, 1 cooked_chicken, 1 pumpkin_pie. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "4": "Collaborate with agents around you to make 1 cooked_porkchop, 1 beetroot_soup, 1 cooked_chicken, 1 pumpkin_pie. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - }, - "difficulty_metrics": { - "total_recipe_steps": 11, - "blocked_agents_count": 0, - "unique_target_items": 4, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_5_1_cooked_chicken_1_cookie_1_pumpkin_pie_1_suspicious_stew_blocked_access_0_1_2_3_4": { - "conversation": "Let's work together to make pumpkin_pie, suspicious_stew, cookie, cooked_chicken.", - "agent_count": 5, - "target": { - "pumpkin_pie": 1, - "suspicious_stew": 1, - "cookie": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2", - "3", - "4" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew, 1 cookie, 1 cooked_chicken. ", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew, 1 cookie, 1 cooked_chicken. ", - "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew, 1 cookie, 1 cooked_chicken. ", - "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew, 1 cookie, 1 cooked_chicken. ", - "4": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew, 1 cookie, 1 cooked_chicken. " - }, - "difficulty_metrics": { - "total_recipe_steps": 12, - "blocked_agents_count": 5, - "unique_target_items": 4, - "overall_difficulty_score": 12, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_5_1_beetroot_soup_1_cooked_rabbit_1_golden_carrot_1_mushroom_stew": { - "conversation": "Let's work together to make cooked_rabbit, golden_carrot, beetroot_soup, mushroom_stew.", - "agent_count": 5, - "target": { - "cooked_rabbit": 1, - "golden_carrot": 1, - "beetroot_soup": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot, 1 beetroot_soup, 1 mushroom_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot, 1 beetroot_soup, 1 mushroom_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot, 1 beetroot_soup, 1 mushroom_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "3": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot, 1 beetroot_soup, 1 mushroom_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "4": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot, 1 beetroot_soup, 1 mushroom_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - }, - "difficulty_metrics": { - "total_recipe_steps": 11, - "blocked_agents_count": 0, - "unique_target_items": 4, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_5_1_beetroot_soup_1_cooked_porkchop_1_mushroom_stew_1_pumpkin_pie_1_suspicious_stew_blocked_access_0_3": { - "conversation": "Let's work together to make mushroom_stew, cooked_porkchop, pumpkin_pie, suspicious_stew, beetroot_soup.", - "agent_count": 5, - "target": { - "mushroom_stew": 1, - "cooked_porkchop": 1, - "pumpkin_pie": 1, - "suspicious_stew": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [ - "0", - "3" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop, 1 pumpkin_pie, 1 suspicious_stew, 1 beetroot_soup. ", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop, 1 pumpkin_pie, 1 suspicious_stew, 1 beetroot_soup. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop, 1 pumpkin_pie, 1 suspicious_stew, 1 beetroot_soup. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop, 1 pumpkin_pie, 1 suspicious_stew, 1 beetroot_soup. ", - "4": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop, 1 pumpkin_pie, 1 suspicious_stew, 1 beetroot_soup. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - }, - "difficulty_metrics": { - "total_recipe_steps": 15, - "blocked_agents_count": 2, - "unique_target_items": 5, - "overall_difficulty_score": 10, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_5_1_cooked_mutton_1_cooked_rabbit_1_cookie_1_mushroom_stew_1_suspicious_stew_blocked_access_0_4": { - "conversation": "Let's work together to make mushroom_stew, cooked_mutton, cooked_rabbit, cookie, suspicious_stew.", - "agent_count": 5, - "target": { - "mushroom_stew": 1, - "cooked_mutton": 1, - "cooked_rabbit": 1, - "cookie": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [ - "4", - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 cooked_rabbit, 1 cookie, 1 suspicious_stew. ", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 cooked_rabbit, 1 cookie, 1 suspicious_stew. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 cooked_rabbit, 1 cookie, 1 suspicious_stew. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 cooked_rabbit, 1 cookie, 1 suspicious_stew. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "4": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 cooked_rabbit, 1 cookie, 1 suspicious_stew. " - }, - "difficulty_metrics": { - "total_recipe_steps": 13, - "blocked_agents_count": 2, - "unique_target_items": 5, - "overall_difficulty_score": 10, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_5_1_beetroot_soup_1_cooked_chicken_1_cooked_mutton_1_mushroom_stew": { - "conversation": "Let's work together to make cooked_mutton, mushroom_stew, cooked_chicken, beetroot_soup.", - "agent_count": 5, - "target": { - "cooked_mutton": 1, - "mushroom_stew": 1, - "cooked_chicken": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 cooked_chicken, 1 beetroot_soup. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 cooked_chicken, 1 beetroot_soup. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 cooked_chicken, 1 beetroot_soup. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "3": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 cooked_chicken, 1 beetroot_soup. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "4": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 cooked_chicken, 1 beetroot_soup. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - }, - "difficulty_metrics": { - "total_recipe_steps": 10, - "blocked_agents_count": 0, - "unique_target_items": 4, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_5_1_cooked_chicken_1_mushroom_stew_1_pumpkin_pie_1_suspicious_stew_blocked_access_0_1_2_3_4": { - "conversation": "Let's work together to make pumpkin_pie, mushroom_stew, suspicious_stew, cooked_chicken.", - "agent_count": 5, - "target": { - "pumpkin_pie": 1, - "mushroom_stew": 1, - "suspicious_stew": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2", - "3", - "4" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 suspicious_stew, 1 cooked_chicken. ", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 suspicious_stew, 1 cooked_chicken. ", - "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 suspicious_stew, 1 cooked_chicken. ", - "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 suspicious_stew, 1 cooked_chicken. ", - "4": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew, 1 suspicious_stew, 1 cooked_chicken. " - }, - "difficulty_metrics": { - "total_recipe_steps": 12, - "blocked_agents_count": 5, - "unique_target_items": 4, - "overall_difficulty_score": 12, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_5_1_cooked_chicken_1_cooked_porkchop_1_golden_carrot_1_suspicious_stew_blocked_access_3_4": { - "conversation": "Let's work together to make cooked_chicken, golden_carrot, cooked_porkchop, suspicious_stew.", - "agent_count": 5, - "target": { - "cooked_chicken": 1, - "golden_carrot": 1, - "cooked_porkchop": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [ - "3", - "4" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cooked_porkchop, 1 suspicious_stew. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cooked_porkchop, 1 suspicious_stew. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cooked_porkchop, 1 suspicious_stew. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cooked_porkchop, 1 suspicious_stew. ", - "4": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cooked_porkchop, 1 suspicious_stew. " - }, - "difficulty_metrics": { - "total_recipe_steps": 10, - "blocked_agents_count": 2, - "unique_target_items": 4, - "overall_difficulty_score": 9, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_5_1_beetroot_soup_1_golden_carrot_1_mushroom_stew_1_pumpkin_pie_1_suspicious_stew_blocked_access_0_1_2_3_4": { - "conversation": "Let's work together to make golden_carrot, beetroot_soup, mushroom_stew, suspicious_stew, pumpkin_pie.", - "agent_count": 5, - "target": { - "golden_carrot": 1, - "beetroot_soup": 1, - "mushroom_stew": 1, - "suspicious_stew": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2", - "3", - "4" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup, 1 mushroom_stew, 1 suspicious_stew, 1 pumpkin_pie. ", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup, 1 mushroom_stew, 1 suspicious_stew, 1 pumpkin_pie. ", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup, 1 mushroom_stew, 1 suspicious_stew, 1 pumpkin_pie. ", - "3": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup, 1 mushroom_stew, 1 suspicious_stew, 1 pumpkin_pie. ", - "4": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup, 1 mushroom_stew, 1 suspicious_stew, 1 pumpkin_pie. " - }, - "difficulty_metrics": { - "total_recipe_steps": 16, - "blocked_agents_count": 5, - "unique_target_items": 5, - "overall_difficulty_score": 13, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_5_1_cooked_chicken_1_cooked_mutton_1_cooked_rabbit_1_golden_carrot_1_pumpkin_pie": { - "conversation": "Let's work together to make cooked_rabbit, cooked_chicken, pumpkin_pie, golden_carrot, cooked_mutton.", - "agent_count": 5, - "target": { - "cooked_rabbit": 1, - "cooked_chicken": 1, - "pumpkin_pie": 1, - "golden_carrot": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken, 1 pumpkin_pie, 1 golden_carrot, 1 cooked_mutton. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken, 1 pumpkin_pie, 1 golden_carrot, 1 cooked_mutton. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken, 1 pumpkin_pie, 1 golden_carrot, 1 cooked_mutton. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "3": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken, 1 pumpkin_pie, 1 golden_carrot, 1 cooked_mutton. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "4": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken, 1 pumpkin_pie, 1 golden_carrot, 1 cooked_mutton. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." - }, - "difficulty_metrics": { - "total_recipe_steps": 13, - "blocked_agents_count": 0, - "unique_target_items": 5, - "overall_difficulty_score": 8, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_5_1_cooked_mutton_1_cookie_1_pumpkin_pie_1_suspicious_stew_blocked_access_2_4": { - "conversation": "Let's work together to make pumpkin_pie, cooked_mutton, cookie, suspicious_stew.", - "agent_count": 5, - "target": { - "pumpkin_pie": 1, - "cooked_mutton": 1, - "cookie": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [ - "2", - "4" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_mutton, 1 cookie, 1 suspicious_stew. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_mutton, 1 cookie, 1 suspicious_stew. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_mutton, 1 cookie, 1 suspicious_stew. ", - "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_mutton, 1 cookie, 1 suspicious_stew. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "4": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_mutton, 1 cookie, 1 suspicious_stew. " - }, - "difficulty_metrics": { - "total_recipe_steps": 12, - "blocked_agents_count": 2, - "unique_target_items": 4, - "overall_difficulty_score": 9, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_5_1_beetroot_soup_1_cooked_porkchop_1_cooked_rabbit_1_mushroom_stew_1_suspicious_stew": { - "conversation": "Let's work together to make cooked_porkchop, mushroom_stew, beetroot_soup, cooked_rabbit, suspicious_stew.", - "agent_count": 5, - "target": { - "cooked_porkchop": 1, - "mushroom_stew": 1, - "beetroot_soup": 1, - "cooked_rabbit": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew, 1 beetroot_soup, 1 cooked_rabbit, 1 suspicious_stew. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew, 1 beetroot_soup, 1 cooked_rabbit, 1 suspicious_stew. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew, 1 beetroot_soup, 1 cooked_rabbit, 1 suspicious_stew. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "3": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew, 1 beetroot_soup, 1 cooked_rabbit, 1 suspicious_stew. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "4": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew, 1 beetroot_soup, 1 cooked_rabbit, 1 suspicious_stew. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - }, - "difficulty_metrics": { - "total_recipe_steps": 13, - "blocked_agents_count": 0, - "unique_target_items": 5, - "overall_difficulty_score": 8, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_5_1_beetroot_soup_1_cooked_mutton_1_cookie_1_mushroom_stew_1_pumpkin_pie": { - "conversation": "Let's work together to make cooked_mutton, beetroot_soup, cookie, pumpkin_pie, mushroom_stew.", - "agent_count": 5, - "target": { - "cooked_mutton": 1, - "beetroot_soup": 1, - "cookie": 1, - "pumpkin_pie": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup, 1 cookie, 1 pumpkin_pie, 1 mushroom_stew. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup, 1 cookie, 1 pumpkin_pie, 1 mushroom_stew. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup, 1 cookie, 1 pumpkin_pie, 1 mushroom_stew. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "3": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup, 1 cookie, 1 pumpkin_pie, 1 mushroom_stew. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "4": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup, 1 cookie, 1 pumpkin_pie, 1 mushroom_stew. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - }, - "difficulty_metrics": { - "total_recipe_steps": 15, - "blocked_agents_count": 0, - "unique_target_items": 5, - "overall_difficulty_score": 8, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_5_1_beetroot_soup_1_cooked_mutton_1_cooked_porkchop_1_cooked_rabbit_1_cookie": { - "conversation": "Let's work together to make beetroot_soup, cookie, cooked_rabbit, cooked_porkchop, cooked_mutton.", - "agent_count": 5, - "target": { - "beetroot_soup": 1, - "cookie": 1, - "cooked_rabbit": 1, - "cooked_porkchop": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie, 1 cooked_rabbit, 1 cooked_porkchop, 1 cooked_mutton. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie, 1 cooked_rabbit, 1 cooked_porkchop, 1 cooked_mutton. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie, 1 cooked_rabbit, 1 cooked_porkchop, 1 cooked_mutton. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "3": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie, 1 cooked_rabbit, 1 cooked_porkchop, 1 cooked_mutton. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "4": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie, 1 cooked_rabbit, 1 cooked_porkchop, 1 cooked_mutton. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." - }, - "difficulty_metrics": { - "total_recipe_steps": 12, - "blocked_agents_count": 0, - "unique_target_items": 5, - "overall_difficulty_score": 8, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_5_1_beetroot_soup_1_cooked_chicken_1_cooked_porkchop_1_golden_carrot": { - "conversation": "Let's work together to make cooked_porkchop, beetroot_soup, golden_carrot, cooked_chicken.", - "agent_count": 5, - "target": { - "cooked_porkchop": 1, - "beetroot_soup": 1, - "golden_carrot": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 beetroot_soup, 1 golden_carrot, 1 cooked_chicken. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 beetroot_soup, 1 golden_carrot, 1 cooked_chicken. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 beetroot_soup, 1 golden_carrot, 1 cooked_chicken. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "3": "Collaborate with agents around you to make 1 cooked_porkchop, 1 beetroot_soup, 1 golden_carrot, 1 cooked_chicken. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "4": "Collaborate with agents around you to make 1 cooked_porkchop, 1 beetroot_soup, 1 golden_carrot, 1 cooked_chicken. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." - }, - "difficulty_metrics": { - "total_recipe_steps": 10, - "blocked_agents_count": 0, - "unique_target_items": 4, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_5_1_beetroot_soup_1_cooked_mutton_1_cooked_rabbit_1_golden_carrot_1_mushroom_stew_blocked_access_0_1_2_3_4": { - "conversation": "Let's work together to make beetroot_soup, mushroom_stew, golden_carrot, cooked_mutton, cooked_rabbit.", - "agent_count": 5, - "target": { - "beetroot_soup": 1, - "mushroom_stew": 1, - "golden_carrot": 1, - "cooked_mutton": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2", - "3", - "4" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 mushroom_stew, 1 golden_carrot, 1 cooked_mutton, 1 cooked_rabbit. ", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 mushroom_stew, 1 golden_carrot, 1 cooked_mutton, 1 cooked_rabbit. ", - "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 mushroom_stew, 1 golden_carrot, 1 cooked_mutton, 1 cooked_rabbit. ", - "3": "Collaborate with agents around you to make 1 beetroot_soup, 1 mushroom_stew, 1 golden_carrot, 1 cooked_mutton, 1 cooked_rabbit. ", - "4": "Collaborate with agents around you to make 1 beetroot_soup, 1 mushroom_stew, 1 golden_carrot, 1 cooked_mutton, 1 cooked_rabbit. " - }, - "difficulty_metrics": { - "total_recipe_steps": 13, - "blocked_agents_count": 5, - "unique_target_items": 5, - "overall_difficulty_score": 13, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_5_1_cooked_rabbit_1_golden_carrot_1_mushroom_stew_1_pumpkin_pie": { - "conversation": "Let's work together to make cooked_rabbit, mushroom_stew, pumpkin_pie, golden_carrot.", - "agent_count": 5, - "target": { - "cooked_rabbit": 1, - "mushroom_stew": 1, - "pumpkin_pie": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew, 1 pumpkin_pie, 1 golden_carrot. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew, 1 pumpkin_pie, 1 golden_carrot. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew, 1 pumpkin_pie, 1 golden_carrot. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "3": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew, 1 pumpkin_pie, 1 golden_carrot. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "4": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew, 1 pumpkin_pie, 1 golden_carrot. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - }, - "difficulty_metrics": { - "total_recipe_steps": 12, - "blocked_agents_count": 0, - "unique_target_items": 4, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_5_1_beetroot_soup_1_cooked_rabbit_1_cookie_1_mushroom_stew_blocked_access_0_1_2_3_4": { - "conversation": "Let's work together to make beetroot_soup, mushroom_stew, cookie, cooked_rabbit.", - "agent_count": 5, - "target": { - "beetroot_soup": 1, - "mushroom_stew": 1, - "cookie": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2", - "3", - "4" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 mushroom_stew, 1 cookie, 1 cooked_rabbit. ", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 mushroom_stew, 1 cookie, 1 cooked_rabbit. ", - "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 mushroom_stew, 1 cookie, 1 cooked_rabbit. ", - "3": "Collaborate with agents around you to make 1 beetroot_soup, 1 mushroom_stew, 1 cookie, 1 cooked_rabbit. ", - "4": "Collaborate with agents around you to make 1 beetroot_soup, 1 mushroom_stew, 1 cookie, 1 cooked_rabbit. " - }, - "difficulty_metrics": { - "total_recipe_steps": 11, - "blocked_agents_count": 5, - "unique_target_items": 4, - "overall_difficulty_score": 12, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_5_1_cooked_chicken_1_cooked_rabbit_1_cookie_1_pumpkin_pie_blocked_access_1_3": { - "conversation": "Let's work together to make cookie, cooked_rabbit, pumpkin_pie, cooked_chicken.", - "agent_count": 5, - "target": { - "cookie": 1, - "cooked_rabbit": 1, - "pumpkin_pie": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [ - "3", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit, 1 pumpkin_pie, 1 cooked_chicken. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit, 1 pumpkin_pie, 1 cooked_chicken. ", - "2": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit, 1 pumpkin_pie, 1 cooked_chicken. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "3": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit, 1 pumpkin_pie, 1 cooked_chicken. ", - "4": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit, 1 pumpkin_pie, 1 cooked_chicken. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." - }, - "difficulty_metrics": { - "total_recipe_steps": 11, - "blocked_agents_count": 2, - "unique_target_items": 4, - "overall_difficulty_score": 9, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_5_1_cooked_porkchop_1_cooked_rabbit_1_cookie_1_mushroom_stew_blocked_access_1_4": { - "conversation": "Let's work together to make cookie, mushroom_stew, cooked_rabbit, cooked_porkchop.", - "agent_count": 5, - "target": { - "cookie": 1, - "mushroom_stew": 1, - "cooked_rabbit": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [ - "4", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew, 1 cooked_rabbit, 1 cooked_porkchop. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "1": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew, 1 cooked_rabbit, 1 cooked_porkchop. ", - "2": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew, 1 cooked_rabbit, 1 cooked_porkchop. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "3": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew, 1 cooked_rabbit, 1 cooked_porkchop. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "4": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew, 1 cooked_rabbit, 1 cooked_porkchop. " - }, - "difficulty_metrics": { - "total_recipe_steps": 10, - "blocked_agents_count": 2, - "unique_target_items": 4, - "overall_difficulty_score": 9, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_5_1_cooked_chicken_1_cooked_mutton_1_golden_carrot_1_suspicious_stew_blocked_access_2_3": { - "conversation": "Let's work together to make golden_carrot, suspicious_stew, cooked_mutton, cooked_chicken.", - "agent_count": 5, - "target": { - "golden_carrot": 1, - "suspicious_stew": 1, - "cooked_mutton": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [ - "3", - "2" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_mutton, 1 cooked_chicken. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_mutton, 1 cooked_chicken. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_mutton, 1 cooked_chicken. ", - "3": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_mutton, 1 cooked_chicken. ", - "4": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cooked_mutton, 1 cooked_chicken. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." - }, - "difficulty_metrics": { - "total_recipe_steps": 10, - "blocked_agents_count": 2, - "unique_target_items": 4, - "overall_difficulty_score": 9, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_5_1_beetroot_soup_1_cooked_chicken_1_cooked_porkchop_1_cooked_rabbit_1_pumpkin_pie_blocked_access_0_4": { - "conversation": "Let's work together to make beetroot_soup, cooked_porkchop, pumpkin_pie, cooked_chicken, cooked_rabbit.", - "agent_count": 5, - "target": { - "beetroot_soup": 1, - "cooked_porkchop": 1, - "pumpkin_pie": 1, - "cooked_chicken": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [ - "0", - "4" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop, 1 pumpkin_pie, 1 cooked_chicken, 1 cooked_rabbit. ", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop, 1 pumpkin_pie, 1 cooked_chicken, 1 cooked_rabbit. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", - "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop, 1 pumpkin_pie, 1 cooked_chicken, 1 cooked_rabbit. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", - "3": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop, 1 pumpkin_pie, 1 cooked_chicken, 1 cooked_rabbit. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", - "4": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop, 1 pumpkin_pie, 1 cooked_chicken, 1 cooked_rabbit. " - }, - "difficulty_metrics": { - "total_recipe_steps": 13, - "blocked_agents_count": 2, - "unique_target_items": 5, - "overall_difficulty_score": 10, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_5_1_beetroot_soup_1_cooked_mutton_1_cooked_porkchop_1_cooked_rabbit_1_suspicious_stew": { - "conversation": "Let's work together to make cooked_mutton, cooked_rabbit, suspicious_stew, beetroot_soup, cooked_porkchop.", - "agent_count": 5, - "target": { - "cooked_mutton": 1, - "cooked_rabbit": 1, - "suspicious_stew": 1, - "beetroot_soup": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 suspicious_stew, 1 beetroot_soup, 1 cooked_porkchop. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 suspicious_stew, 1 beetroot_soup, 1 cooked_porkchop. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 suspicious_stew, 1 beetroot_soup, 1 cooked_porkchop. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "3": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 suspicious_stew, 1 beetroot_soup, 1 cooked_porkchop. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "4": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 suspicious_stew, 1 beetroot_soup, 1 cooked_porkchop. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." - }, - "difficulty_metrics": { - "total_recipe_steps": 12, - "blocked_agents_count": 0, - "unique_target_items": 5, - "overall_difficulty_score": 8, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_5_1_beetroot_soup_1_cooked_rabbit_1_cookie_1_pumpkin_pie": { - "conversation": "Let's work together to make pumpkin_pie, beetroot_soup, cooked_rabbit, cookie.", - "agent_count": 5, - "target": { - "pumpkin_pie": 1, - "beetroot_soup": 1, - "cooked_rabbit": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 beetroot_soup, 1 cooked_rabbit, 1 cookie. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 beetroot_soup, 1 cooked_rabbit, 1 cookie. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 beetroot_soup, 1 cooked_rabbit, 1 cookie. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 beetroot_soup, 1 cooked_rabbit, 1 cookie. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "4": "Collaborate with agents around you to make 1 pumpkin_pie, 1 beetroot_soup, 1 cooked_rabbit, 1 cookie. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - }, - "difficulty_metrics": { - "total_recipe_steps": 12, - "blocked_agents_count": 0, - "unique_target_items": 4, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_5_1_cooked_porkchop_1_cooked_rabbit_1_mushroom_stew_1_suspicious_stew_blocked_access_0_1_2_3_4": { - "conversation": "Let's work together to make cooked_rabbit, cooked_porkchop, mushroom_stew, suspicious_stew.", - "agent_count": 5, - "target": { - "cooked_rabbit": 1, - "cooked_porkchop": 1, - "mushroom_stew": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2", - "3", - "4" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 mushroom_stew, 1 suspicious_stew. ", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 mushroom_stew, 1 suspicious_stew. ", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 mushroom_stew, 1 suspicious_stew. ", - "3": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 mushroom_stew, 1 suspicious_stew. ", - "4": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 mushroom_stew, 1 suspicious_stew. " - }, - "difficulty_metrics": { - "total_recipe_steps": 10, - "blocked_agents_count": 5, - "unique_target_items": 4, - "overall_difficulty_score": 12, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_5_1_cooked_chicken_1_cooked_mutton_1_cooked_rabbit_1_golden_carrot": { - "conversation": "Let's work together to make cooked_chicken, golden_carrot, cooked_rabbit, cooked_mutton.", - "agent_count": 5, - "target": { - "cooked_chicken": 1, - "golden_carrot": 1, - "cooked_rabbit": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cooked_rabbit, 1 cooked_mutton. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cooked_rabbit, 1 cooked_mutton. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cooked_rabbit, 1 cooked_mutton. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cooked_rabbit, 1 cooked_mutton. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "4": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cooked_rabbit, 1 cooked_mutton. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." - }, - "difficulty_metrics": { - "total_recipe_steps": 9, - "blocked_agents_count": 0, - "unique_target_items": 4, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_5_1_beetroot_soup_1_cookie_1_pumpkin_pie_1_suspicious_stew_blocked_access_1_4": { - "conversation": "Let's work together to make pumpkin_pie, beetroot_soup, suspicious_stew, cookie.", - "agent_count": 5, - "target": { - "pumpkin_pie": 1, - "beetroot_soup": 1, - "suspicious_stew": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [ - "1", - "4" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 beetroot_soup, 1 suspicious_stew, 1 cookie. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 beetroot_soup, 1 suspicious_stew, 1 cookie. ", - "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 beetroot_soup, 1 suspicious_stew, 1 cookie. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "3": "Collaborate with agents around you to make 1 pumpkin_pie, 1 beetroot_soup, 1 suspicious_stew, 1 cookie. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "4": "Collaborate with agents around you to make 1 pumpkin_pie, 1 beetroot_soup, 1 suspicious_stew, 1 cookie. " - }, - "difficulty_metrics": { - "total_recipe_steps": 13, - "blocked_agents_count": 2, - "unique_target_items": 4, - "overall_difficulty_score": 9, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_5_1_beetroot_soup_1_cooked_mutton_1_golden_carrot_1_pumpkin_pie_1_suspicious_stew_blocked_access_0_1": { - "conversation": "Let's work together to make suspicious_stew, golden_carrot, beetroot_soup, cooked_mutton, pumpkin_pie.", - "agent_count": 5, - "target": { - "suspicious_stew": 1, - "golden_carrot": 1, - "beetroot_soup": 1, - "cooked_mutton": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 golden_carrot, 1 beetroot_soup, 1 cooked_mutton, 1 pumpkin_pie. ", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 golden_carrot, 1 beetroot_soup, 1 cooked_mutton, 1 pumpkin_pie. ", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 golden_carrot, 1 beetroot_soup, 1 cooked_mutton, 1 pumpkin_pie. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 golden_carrot, 1 beetroot_soup, 1 cooked_mutton, 1 pumpkin_pie. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "4": "Collaborate with agents around you to make 1 suspicious_stew, 1 golden_carrot, 1 beetroot_soup, 1 cooked_mutton, 1 pumpkin_pie. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - }, - "difficulty_metrics": { - "total_recipe_steps": 15, - "blocked_agents_count": 2, - "unique_target_items": 5, - "overall_difficulty_score": 10, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_5_1_cooked_mutton_1_cooked_rabbit_1_golden_carrot_1_mushroom_stew_1_suspicious_stew": { - "conversation": "Let's work together to make cooked_rabbit, golden_carrot, mushroom_stew, suspicious_stew, cooked_mutton.", - "agent_count": 5, - "target": { - "cooked_rabbit": 1, - "golden_carrot": 1, - "mushroom_stew": 1, - "suspicious_stew": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot, 1 mushroom_stew, 1 suspicious_stew, 1 cooked_mutton. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot, 1 mushroom_stew, 1 suspicious_stew, 1 cooked_mutton. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot, 1 mushroom_stew, 1 suspicious_stew, 1 cooked_mutton. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "3": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot, 1 mushroom_stew, 1 suspicious_stew, 1 cooked_mutton. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "4": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot, 1 mushroom_stew, 1 suspicious_stew, 1 cooked_mutton. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." - }, - "difficulty_metrics": { - "total_recipe_steps": 13, - "blocked_agents_count": 0, - "unique_target_items": 5, - "overall_difficulty_score": 8, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_5_1_cooked_chicken_1_cooked_rabbit_1_golden_carrot_1_mushroom_stew_1_suspicious_stew_blocked_access_0_1_2_3_4": { - "conversation": "Let's work together to make cooked_rabbit, suspicious_stew, mushroom_stew, golden_carrot, cooked_chicken.", - "agent_count": 5, - "target": { - "cooked_rabbit": 1, - "suspicious_stew": 1, - "mushroom_stew": 1, - "golden_carrot": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2", - "3", - "4" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew, 1 mushroom_stew, 1 golden_carrot, 1 cooked_chicken. ", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew, 1 mushroom_stew, 1 golden_carrot, 1 cooked_chicken. ", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew, 1 mushroom_stew, 1 golden_carrot, 1 cooked_chicken. ", - "3": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew, 1 mushroom_stew, 1 golden_carrot, 1 cooked_chicken. ", - "4": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew, 1 mushroom_stew, 1 golden_carrot, 1 cooked_chicken. " - }, - "difficulty_metrics": { - "total_recipe_steps": 13, - "blocked_agents_count": 5, - "unique_target_items": 5, - "overall_difficulty_score": 13, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_5_1_cooked_mutton_1_cookie_1_golden_carrot_1_mushroom_stew": { - "conversation": "Let's work together to make golden_carrot, cooked_mutton, mushroom_stew, cookie.", - "agent_count": 5, - "target": { - "golden_carrot": 1, - "cooked_mutton": 1, - "mushroom_stew": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton, 1 mushroom_stew, 1 cookie. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton, 1 mushroom_stew, 1 cookie. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton, 1 mushroom_stew, 1 cookie. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "3": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton, 1 mushroom_stew, 1 cookie. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "4": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton, 1 mushroom_stew, 1 cookie. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - }, - "difficulty_metrics": { - "total_recipe_steps": 11, - "blocked_agents_count": 0, - "unique_target_items": 4, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_5_1_cooked_chicken_1_cooked_rabbit_1_cookie_1_golden_carrot_blocked_access_0_1_2_3_4": { - "conversation": "Let's work together to make cooked_chicken, cooked_rabbit, golden_carrot, cookie.", - "agent_count": 5, - "target": { - "cooked_chicken": 1, - "cooked_rabbit": 1, - "golden_carrot": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2", - "3", - "4" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 golden_carrot, 1 cookie. ", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 golden_carrot, 1 cookie. ", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 golden_carrot, 1 cookie. ", - "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 golden_carrot, 1 cookie. ", - "4": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 golden_carrot, 1 cookie. " - }, - "difficulty_metrics": { - "total_recipe_steps": 10, - "blocked_agents_count": 5, - "unique_target_items": 4, - "overall_difficulty_score": 12, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_5_1_cooked_chicken_1_cookie_1_mushroom_stew_1_suspicious_stew_blocked_access_0_2": { - "conversation": "Let's work together to make mushroom_stew, suspicious_stew, cooked_chicken, cookie.", - "agent_count": 5, - "target": { - "mushroom_stew": 1, - "suspicious_stew": 1, - "cooked_chicken": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [ - "2", - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 cooked_chicken, 1 cookie. ", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 cooked_chicken, 1 cookie. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 cooked_chicken, 1 cookie. ", - "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 cooked_chicken, 1 cookie. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "4": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 cooked_chicken, 1 cookie. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - }, - "difficulty_metrics": { - "total_recipe_steps": 11, - "blocked_agents_count": 2, - "unique_target_items": 4, - "overall_difficulty_score": 9, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_5_1_beetroot_soup_1_cooked_chicken_1_golden_carrot_1_pumpkin_pie_1_suspicious_stew": { - "conversation": "Let's work together to make beetroot_soup, suspicious_stew, golden_carrot, pumpkin_pie, cooked_chicken.", - "agent_count": 5, - "target": { - "beetroot_soup": 1, - "suspicious_stew": 1, - "golden_carrot": 1, - "pumpkin_pie": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 suspicious_stew, 1 golden_carrot, 1 pumpkin_pie, 1 cooked_chicken. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 suspicious_stew, 1 golden_carrot, 1 pumpkin_pie, 1 cooked_chicken. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 suspicious_stew, 1 golden_carrot, 1 pumpkin_pie, 1 cooked_chicken. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "3": "Collaborate with agents around you to make 1 beetroot_soup, 1 suspicious_stew, 1 golden_carrot, 1 pumpkin_pie, 1 cooked_chicken. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "4": "Collaborate with agents around you to make 1 beetroot_soup, 1 suspicious_stew, 1 golden_carrot, 1 pumpkin_pie, 1 cooked_chicken. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." - }, - "difficulty_metrics": { - "total_recipe_steps": 15, - "blocked_agents_count": 0, - "unique_target_items": 5, - "overall_difficulty_score": 8, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_5_1_beetroot_soup_1_cooked_chicken_1_cooked_porkchop_1_golden_carrot_1_suspicious_stew_blocked_access_0_1_2_3_4": { - "conversation": "Let's work together to make suspicious_stew, cooked_chicken, cooked_porkchop, beetroot_soup, golden_carrot.", - "agent_count": 5, - "target": { - "suspicious_stew": 1, - "cooked_chicken": 1, - "cooked_porkchop": 1, - "beetroot_soup": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2", - "3", - "4" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_porkchop, 1 beetroot_soup, 1 golden_carrot. ", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_porkchop, 1 beetroot_soup, 1 golden_carrot. ", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_porkchop, 1 beetroot_soup, 1 golden_carrot. ", - "3": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_porkchop, 1 beetroot_soup, 1 golden_carrot. ", - "4": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken, 1 cooked_porkchop, 1 beetroot_soup, 1 golden_carrot. " - }, - "difficulty_metrics": { - "total_recipe_steps": 13, - "blocked_agents_count": 5, - "unique_target_items": 5, - "overall_difficulty_score": 13, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_5_1_cooked_chicken_1_cookie_1_golden_carrot_1_mushroom_stew_blocked_access_2_3": { - "conversation": "Let's work together to make mushroom_stew, golden_carrot, cooked_chicken, cookie.", - "agent_count": 5, - "target": { - "mushroom_stew": 1, - "golden_carrot": 1, - "cooked_chicken": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [ - "2", - "3" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 cooked_chicken, 1 cookie. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 cooked_chicken, 1 cookie. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 cooked_chicken, 1 cookie. ", - "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 cooked_chicken, 1 cookie. ", - "4": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 cooked_chicken, 1 cookie. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - }, - "difficulty_metrics": { - "total_recipe_steps": 11, - "blocked_agents_count": 2, - "unique_target_items": 4, - "overall_difficulty_score": 9, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_5_1_beetroot_soup_1_cooked_mutton_1_cookie_1_golden_carrot_blocked_access_0_3": { - "conversation": "Let's work together to make beetroot_soup, cooked_mutton, cookie, golden_carrot.", - "agent_count": 5, - "target": { - "beetroot_soup": 1, - "cooked_mutton": 1, - "cookie": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [ - "3", - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 cookie, 1 golden_carrot. ", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 cookie, 1 golden_carrot. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 cookie, 1 golden_carrot. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "3": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 cookie, 1 golden_carrot. ", - "4": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 cookie, 1 golden_carrot. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - }, - "difficulty_metrics": { - "total_recipe_steps": 11, - "blocked_agents_count": 2, - "unique_target_items": 4, - "overall_difficulty_score": 9, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_5_1_beetroot_soup_1_cooked_chicken_1_cooked_mutton_1_suspicious_stew": { - "conversation": "Let's work together to make beetroot_soup, cooked_mutton, suspicious_stew, cooked_chicken.", - "agent_count": 5, - "target": { - "beetroot_soup": 1, - "cooked_mutton": 1, - "suspicious_stew": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 suspicious_stew, 1 cooked_chicken. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 suspicious_stew, 1 cooked_chicken. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 suspicious_stew, 1 cooked_chicken. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "3": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 suspicious_stew, 1 cooked_chicken. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "4": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 suspicious_stew, 1 cooked_chicken. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." - }, - "difficulty_metrics": { - "total_recipe_steps": 10, - "blocked_agents_count": 0, - "unique_target_items": 4, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_5_1_beetroot_soup_1_cooked_chicken_1_cooked_porkchop_1_cooked_rabbit_1_cookie_blocked_access_0_1_2_3_4": { - "conversation": "Let's work together to make cooked_porkchop, beetroot_soup, cooked_chicken, cookie, cooked_rabbit.", - "agent_count": 5, - "target": { - "cooked_porkchop": 1, - "beetroot_soup": 1, - "cooked_chicken": 1, - "cookie": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2", - "3", - "4" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 beetroot_soup, 1 cooked_chicken, 1 cookie, 1 cooked_rabbit. ", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 beetroot_soup, 1 cooked_chicken, 1 cookie, 1 cooked_rabbit. ", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 beetroot_soup, 1 cooked_chicken, 1 cookie, 1 cooked_rabbit. ", - "3": "Collaborate with agents around you to make 1 cooked_porkchop, 1 beetroot_soup, 1 cooked_chicken, 1 cookie, 1 cooked_rabbit. ", - "4": "Collaborate with agents around you to make 1 cooked_porkchop, 1 beetroot_soup, 1 cooked_chicken, 1 cookie, 1 cooked_rabbit. " - }, - "difficulty_metrics": { - "total_recipe_steps": 12, - "blocked_agents_count": 5, - "unique_target_items": 5, - "overall_difficulty_score": 13, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_5_1_cooked_chicken_1_cooked_mutton_1_cooked_rabbit_1_mushroom_stew_1_pumpkin_pie": { - "conversation": "Let's work together to make cooked_rabbit, pumpkin_pie, cooked_mutton, cooked_chicken, mushroom_stew.", - "agent_count": 5, - "target": { - "cooked_rabbit": 1, - "pumpkin_pie": 1, - "cooked_mutton": 1, - "cooked_chicken": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie, 1 cooked_mutton, 1 cooked_chicken, 1 mushroom_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie, 1 cooked_mutton, 1 cooked_chicken, 1 mushroom_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie, 1 cooked_mutton, 1 cooked_chicken, 1 mushroom_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "3": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie, 1 cooked_mutton, 1 cooked_chicken, 1 mushroom_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "4": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie, 1 cooked_mutton, 1 cooked_chicken, 1 mushroom_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - }, - "difficulty_metrics": { - "total_recipe_steps": 13, - "blocked_agents_count": 0, - "unique_target_items": 5, - "overall_difficulty_score": 8, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_5_1_cooked_mutton_1_cooked_porkchop_1_cookie_1_mushroom_stew_1_suspicious_stew": { - "conversation": "Let's work together to make mushroom_stew, cooked_mutton, suspicious_stew, cookie, cooked_porkchop.", - "agent_count": 5, - "target": { - "mushroom_stew": 1, - "cooked_mutton": 1, - "suspicious_stew": 1, - "cookie": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 suspicious_stew, 1 cookie, 1 cooked_porkchop. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 suspicious_stew, 1 cookie, 1 cooked_porkchop. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 suspicious_stew, 1 cookie, 1 cooked_porkchop. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 suspicious_stew, 1 cookie, 1 cooked_porkchop. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "4": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 suspicious_stew, 1 cookie, 1 cooked_porkchop. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." - }, - "difficulty_metrics": { - "total_recipe_steps": 13, - "blocked_agents_count": 0, - "unique_target_items": 5, - "overall_difficulty_score": 8, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_5_1_beetroot_soup_1_cooked_chicken_1_cooked_mutton_1_cooked_porkchop_blocked_access_2_3": { - "conversation": "Let's work together to make cooked_porkchop, cooked_mutton, beetroot_soup, cooked_chicken.", - "agent_count": 5, - "target": { - "cooked_porkchop": 1, - "cooked_mutton": 1, - "beetroot_soup": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [ - "2", - "3" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton, 1 beetroot_soup, 1 cooked_chicken. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton, 1 beetroot_soup, 1 cooked_chicken. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton, 1 beetroot_soup, 1 cooked_chicken. ", - "3": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton, 1 beetroot_soup, 1 cooked_chicken. ", - "4": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton, 1 beetroot_soup, 1 cooked_chicken. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." - }, - "difficulty_metrics": { - "total_recipe_steps": 9, - "blocked_agents_count": 2, - "unique_target_items": 4, - "overall_difficulty_score": 9, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_5_1_beetroot_soup_1_cooked_mutton_1_cooked_rabbit_1_cookie_1_suspicious_stew_blocked_access_0_3": { - "conversation": "Let's work together to make cookie, cooked_rabbit, beetroot_soup, cooked_mutton, suspicious_stew.", - "agent_count": 5, - "target": { - "cookie": 1, - "cooked_rabbit": 1, - "beetroot_soup": 1, - "cooked_mutton": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [ - "3", - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit, 1 beetroot_soup, 1 cooked_mutton, 1 suspicious_stew. ", - "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit, 1 beetroot_soup, 1 cooked_mutton, 1 suspicious_stew. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "2": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit, 1 beetroot_soup, 1 cooked_mutton, 1 suspicious_stew. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "3": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit, 1 beetroot_soup, 1 cooked_mutton, 1 suspicious_stew. ", - "4": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit, 1 beetroot_soup, 1 cooked_mutton, 1 suspicious_stew. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - }, - "difficulty_metrics": { - "total_recipe_steps": 13, - "blocked_agents_count": 2, - "unique_target_items": 5, - "overall_difficulty_score": 10, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_5_1_cooked_porkchop_1_cookie_1_mushroom_stew_1_pumpkin_pie": { - "conversation": "Let's work together to make mushroom_stew, cooked_porkchop, pumpkin_pie, cookie.", - "agent_count": 5, - "target": { - "mushroom_stew": 1, - "cooked_porkchop": 1, - "pumpkin_pie": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop, 1 pumpkin_pie, 1 cookie. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop, 1 pumpkin_pie, 1 cookie. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop, 1 pumpkin_pie, 1 cookie. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop, 1 pumpkin_pie, 1 cookie. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "4": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop, 1 pumpkin_pie, 1 cookie. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - }, - "difficulty_metrics": { - "total_recipe_steps": 12, - "blocked_agents_count": 0, - "unique_target_items": 4, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_5_1_cooked_chicken_1_cooked_porkchop_1_golden_carrot_1_mushroom_stew_1_pumpkin_pie_blocked_access_0_1_2_3_4": { - "conversation": "Let's work together to make cooked_chicken, golden_carrot, cooked_porkchop, pumpkin_pie, mushroom_stew.", - "agent_count": 5, - "target": { - "cooked_chicken": 1, - "golden_carrot": 1, - "cooked_porkchop": 1, - "pumpkin_pie": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1", - "2", - "3", - "4" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cooked_porkchop, 1 pumpkin_pie, 1 mushroom_stew. ", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cooked_porkchop, 1 pumpkin_pie, 1 mushroom_stew. ", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cooked_porkchop, 1 pumpkin_pie, 1 mushroom_stew. ", - "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cooked_porkchop, 1 pumpkin_pie, 1 mushroom_stew. ", - "4": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cooked_porkchop, 1 pumpkin_pie, 1 mushroom_stew. " - }, - "difficulty_metrics": { - "total_recipe_steps": 14, - "blocked_agents_count": 5, - "unique_target_items": 5, - "overall_difficulty_score": 13, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_5_1_beetroot_soup_1_cooked_chicken_1_cooked_mutton_1_golden_carrot_1_pumpkin_pie_blocked_access_0_4": { - "conversation": "Let's work together to make beetroot_soup, pumpkin_pie, cooked_mutton, golden_carrot, cooked_chicken.", - "agent_count": 5, - "target": { - "beetroot_soup": 1, - "pumpkin_pie": 1, - "cooked_mutton": 1, - "golden_carrot": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [ - "0", - "4" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie, 1 cooked_mutton, 1 golden_carrot, 1 cooked_chicken. ", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie, 1 cooked_mutton, 1 golden_carrot, 1 cooked_chicken. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie, 1 cooked_mutton, 1 golden_carrot, 1 cooked_chicken. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "3": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie, 1 cooked_mutton, 1 golden_carrot, 1 cooked_chicken. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "4": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie, 1 cooked_mutton, 1 golden_carrot, 1 cooked_chicken. " - }, - "difficulty_metrics": { - "total_recipe_steps": 14, - "blocked_agents_count": 2, - "unique_target_items": 5, - "overall_difficulty_score": 10, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_5_1_beetroot_soup_1_cooked_chicken_1_cooked_mutton_1_cookie_1_golden_carrot": { - "conversation": "Let's work together to make cooked_chicken, golden_carrot, cookie, beetroot_soup, cooked_mutton.", - "agent_count": 5, - "target": { - "cooked_chicken": 1, - "golden_carrot": 1, - "cookie": 1, - "beetroot_soup": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cookie, 1 beetroot_soup, 1 cooked_mutton. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cookie, 1 beetroot_soup, 1 cooked_mutton. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cookie, 1 beetroot_soup, 1 cooked_mutton. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "3": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cookie, 1 beetroot_soup, 1 cooked_mutton. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "4": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 cookie, 1 beetroot_soup, 1 cooked_mutton. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." - }, - "difficulty_metrics": { - "total_recipe_steps": 13, - "blocked_agents_count": 0, - "unique_target_items": 5, - "overall_difficulty_score": 8, - "difficulty_category": "hard" - }, - "difficulty": "hard" - } -} \ No newline at end of file From b55f92800fd43a665be540e2820867c2d9aa00a7 Mon Sep 17 00:00:00 2001 From: Isadora White Date: Fri, 23 May 2025 11:56:40 -0700 Subject: [PATCH 058/101] restore settings.js --- settings.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/settings.js b/settings.js index c73502a..942a695 100644 --- a/settings.js +++ b/settings.js @@ -34,7 +34,7 @@ const settings = { "allow_insecure_coding": false, // allows newAction command and model can write/run code on your computer. enable at own risk "allow_vision": false, // allows vision model to interpret screenshots as inputs - "blocked_actions" : [] , // commands to disable and remove from docs. Ex: ["!setMode"] + "blocked_actions" : ["!checkBlueprint", "!checkBlueprintLevel", "!getBlueprint", "!getBlueprintLevel"], // commands to disable and remove from docs. Ex: ["!setMode"] "code_timeout_mins": -1, // minutes code is allowed to run. -1 for no timeout "relevant_docs_count": 5, // number of relevant code function docs to select for prompting. -1 for all @@ -44,7 +44,7 @@ const settings = { "verbose_commands": true, // show full command syntax "narrate_behavior": true, // chat simple automatic actions ('Picking up item!') "chat_bot_messages": true, // publicly chat messages to other bots - "log_all_prompts": true, // log ALL prompts to file + "log_all_prompts": false, // log ALL prompts to file } // these environment variables override certain settings From fa02028b8b2383ee36c69f2bbe5e77f7916be17c Mon Sep 17 00:00:00 2001 From: Isadora White Date: Fri, 23 May 2025 12:02:23 -0700 Subject: [PATCH 059/101] remove unnecessary changes --- settings.js | 2 +- src/agent/agent.js | 1 - .../evaluation_script.cpython-39.pyc | Bin 22057 -> 0 bytes test/test_get_crafting_plan.js | 16 ---------------- 4 files changed, 1 insertion(+), 18 deletions(-) delete mode 100644 tasks/__pycache__/evaluation_script.cpython-39.pyc delete mode 100644 test/test_get_crafting_plan.js diff --git a/settings.js b/settings.js index 942a695..b782097 100644 --- a/settings.js +++ b/settings.js @@ -34,7 +34,7 @@ const settings = { "allow_insecure_coding": false, // allows newAction command and model can write/run code on your computer. enable at own risk "allow_vision": false, // allows vision model to interpret screenshots as inputs - "blocked_actions" : ["!checkBlueprint", "!checkBlueprintLevel", "!getBlueprint", "!getBlueprintLevel"], // commands to disable and remove from docs. Ex: ["!setMode"] + "blocked_actions" : ["!checkBlueprint", "!checkBlueprintLevel", "!getBlueprint", "!getBlueprintLevel"] , // commands to disable and remove from docs. Ex: ["!setMode"] "code_timeout_mins": -1, // minutes code is allowed to run. -1 for no timeout "relevant_docs_count": 5, // number of relevant code function docs to select for prompting. -1 for all diff --git a/src/agent/agent.js b/src/agent/agent.js index 745abd5..3cd671b 100644 --- a/src/agent/agent.js +++ b/src/agent/agent.js @@ -198,7 +198,6 @@ export class Agent { if (!this.task || !this.task.agent_names) { return; } - console.log(this.task.agent_names) const missingPlayers = this.task.agent_names.filter(name => !this.bot.players[name]); if (missingPlayers.length > 0) { diff --git a/tasks/__pycache__/evaluation_script.cpython-39.pyc b/tasks/__pycache__/evaluation_script.cpython-39.pyc deleted file mode 100644 index 4d89ed24a77c458823f0e9c7df2801460b2ff3ad..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 22057 zcmbt+dvqMvdEd_Ld$D+fAP7?A0Fp?8A^=j7Et#QYQG7_0Nr)vV%UVg@EcXt;1sA*E zodF+{S>-`FmL1EM6UVV*DF$7~J+56hPWnjG)=hhwwE!RvT(^b~0W(!%l zZ?%~#rVBT)IR0BZWSifMfITCkJv7?s1B+b#3t1t z^$<$!R+rSQnnTJS^@5sLM-aPDeNa8D9zkrcdQrVcy%({4>M`{=$~)?P>KLw5>Ic+u zT&L9&>PcMhSMOI(;rf6&p`KPJmu+=QonA_)GwK=Ceo%c#J*&Lz{?0`C_ z&ZEXbwVdfxV z>{O}jSFR&tvwy1O`=#>L3)RvsS8onZm9Mzvt4~+g-8EgQ`I}=~63)5T-Rfp;s$6wT z`s9_8j}|0;W?k1xWp^_(Rj${(^;MUJbZN;iU9K`!RlIUZE5zKIdZu2gq8Dz>ulN<$ z+e}Tl*VZd*Xltont=4Zuz3HD?cKuFYMtW{dPcl=>^-J}qUA38ve65OZKI>|Cvu|o`-9KA9dByd7^h@JX(u{eoe;$pXNu=D8 z%hI}B>T5Ii=>�NJj&wlep6<25ANv23ZDNOS+Fi9>L}iU;JdfcHPxpiG9)i%o||9 zg{6lXj4&8wFveg9gPja^F_=VvhCGaY`O2BPKFtBVrFS!L4}<#{>}9EeDZg~pJ)`TZ z=KXS0*DLM~iO)>QE0~_Q`x^{k=Bib0@rg&j#sHIS6%11#pf5Cr3zwx-EnXF8tlmN zui&=iU3Kc~e!0Ht&gD#Pz3d&67~5i{;#$eS;vDpRJ#);tz&KiA?RK+K)r+nVrqop% zRh+tZ7V0(km~&~%^Bm-&droD^S*ows)M2NNM)i$~=Sqz^=|t1gg`_lFNa%XiZKk|i z9;mRH2HW$&(1M9ed|S2;H-=$%)tYu7pE1iRiX=jg&+67jniIHH-qX&t-!J^Teb zPitM*$DA`9!dl%o9mW&(MHy#n*GtukibkZaS4+NAsiDB!iJG%sb8oI;nWKL$+i~jU z^19aS?iDt;rt4+b<5W4D_AzIsznQ47xwU3u#j7K%)=R1x2V-vLDkuaFSu4BEI7Y9T zTtcSbOnPh83NIMYwdOE;xls4da8RXx&7|xtg+Wf(DYpz(Ytpl)ZhqH5*&Fn%n@x`?pI>^2RJUz%)j7)tIk)vlB(+xUc-0iD?xCpxLTB;2|=SIRvqsZRM?;l|eXeO(GoQ&z`g% zkEg5w{HLs;C>*o&6R6R{nYcNSI|*m{K}7u63b|1X+{p65dE`DpUUkPNhYD@)po(Et z#Ts#CgD2SFQqzs3pA3`W5#UxTwr=T1$wk7%ZM%^QQ;o#6N5cf`00YDqg4CfozKKxJ zOuA{;y=H=|rcgOE*!r4?D4PwJf&w4Qmu~?ZNT% z`|u)#9LWcxh)F4A+nI$d8ZxOeOC~su3eACN%@?udu2=mFNb|Tw#5khygq5)I!$|W# zXQga?26;WBNgmIwRYvnq5UIo(mLgxr$SlV&S{O(0Q(#YU*7z>)FqH_C;Mzx2qLHjk zg1htXNtMK19$cMwr~*9yUdG1foQNcr|kd?OL2FdymQy%_lvMm`f}R2njnlV&7hE(8F6#Ihl?~J2qPZ};g^Oli z%U-((9*Qe@=(USzKYIsUJxr<;p7(9EYVSs?A=+1cZ`+vTd?^LaU>N1{vUZn&={#YE zLdjmmbIcff;1Sw!OXVwwaALP*uh{rY)uJijIR~p1&j*h^hl^8RawIpZ?vRW;hfJ?j zsgYOoaA5D+T)&EbH8Z|jzT#`wZRUwgeZ4ME*84#<3&F5(o^GC}XOJ;t zH#omaMyLpF^13uTvQE?z2=3r)xNfs&aj&!*j@htSvqz!tcIJStNM|o%&*#Ffr?5}38 z1@hO4(E5~p4SS?4n3;HIAvcp1PgOLQzCCwDKZfdC7gp{#IU>O6+LJ$z?Ej8mEI3$Z z*CVFcT5xm6Wx;z-BGRhTvmcZyWux4G~n#l@F>>BTsdlO^hX-=0u z!Qg2G&3M(V3BSSQkl_`;f?KrSOh?<<)~OlWZWewLwY?(Gmr&SwxIjscaR0Gycg5vZ)R04z_*> zXo;2>C<5ByZUM~)Q&iZ_L;Fs=Var{*=PuK8*Uk&UF4;PmBdEx+Nu>=UPcae&N0erG}3M<^d75WiOz3?5B`gxB(LGdUN`IyxeAT-Cvr0 z{3}o&xi#Q()LRIKAU0q(d&PT5xl1MBwq`8oKm3Y!=-~UGc)9V)tFO)kiTU}tL(NR9 zv7Qm^S)32xA+k94$jAY(0;crF8-&C_=x0 z%zwqYA4Cv9yHird_84rlJZIAS5Zg0n$D2v%_ewDimwu2@ zgL!2i|3TjO$&eNW!EEVOv%jYwzmDP_)g&J7;GS1D38Jr_AiuAGuqb z48M#U>?szBP$h&6!S93&Es$aI`;(#3gBZdB+MR5~g}9*qp#DKW8$#j;pl2;_jTyXq_HEJS-6p8gjFfoKEQnHXJ#L~)A z1(GOA%nI%U&aCLUU|6cSH%qH)RoBQgq*MJ0gI5tO1le}0P3y*8>gc{=6;hD@K;APM znOn`Vl*!aCV$B4r2t#V7uoT?db;z0Pt7|h!y~L87T}{~3jH6^BivmUI)z(=ZT9=nA zvOSR<|1Bzc)aA*<3a80Iq{)%DTtjL(&b;W4@wU=xKW=A9savn1v(4nTL-HWj zTCuBN7&z0fBA*Ta z{4BK?8j9_j?`=-ESkAnW?y1QvT`oqcLNJ>XSA2i%*!=v_haa0eg8!q(9zSyA$o%!A zcd5&~RHpv5^+)2OM9Qi0zKKq4VfVw~u&lEYtTX7_jMi^^b{~#lMU94|WZ)mQ!%;u^ z1~hRhu`33A2)$xs%%ptO{)qJvd&%Zndp+Z)-T;ynroJN_QyIvAA5+=Jcx@7QIoy3# z_2Dj$yFBi`#Jq4w|FWM}{cl*|xEgpf-q=|ift4c-Y~5*Xr=OuzxdCk+`ZWP<9taBv zcY@^gQQ+hD9X2R%lRhCCPBrnS4ctB$?iBg@xmWDQp2mGXw2I-5a1SuL72fv-dJv|=Oqd1# zNrup%hJE2!xI4^;{oz137!IjjZ|*=V!y6-Nl1t$&>)J&>&oOQ64flrDSgf%RGQJZ! z;l8V}w`~0@{^&JOa9fT%& zZ-ex+!yo5U_zpc(G;$QZ_WW)h8m93cUsE&E%As(#w3Td3`(xp>^mpgRL^!?CcL&>O zG&T=KWAlrm3p%_Y`+A38%1#PS0IBkxT{;D#A0^?_+#tL3NW%hA!Nm7Q?88u|M0>Nf zAbjvE(MD`lz%uf+^;PJMG$a_e3fY^YYejj6VN&@c`|=>*s@a$4tEKf?`AWM=v1?Ut z2cq>^v{A?|u4C;lLEh2N;l2r24P598T-_X-izX-Em;e^98DG~`eF4vEroBgu z<}Xhr9yBo?ig;#rqg~iT)jFQBPVG-~Nfk40nq==;Sd6IQQn7+0!UA=$~Tn zX$GG`5UF6O@{-}vpJNWCfFM5~2_$nq>=-LZ+RT-1KsQ&`_o8c_!Roa1+7I{rZc{ zOp|iZhQ7lbj#JmL{Wx#mV(=*jGN?bz*v~L%kDvZLZ{KF{4ud5I0=p==%3v1;T1=!U zb_M-0LiG`afdLp+%|# z2Wi(88{bbhsDH zCMPXI^08vqHu&@~)oN2>yP<2`6;1+$^o9MZ?@fBL5ai1Eb zu22oV6K^=R%clRxd#WpM7^Q&yq*M~6j;oOd@CtoUK5UCUdK?JFfxd7GWuPyFHNgSW zxgcr#)L82YO!u>)BWPs|Px+>wRlrw30XfXUL^!b%y~KF$dNYBvzLmV11QOZ<%rmi^ zRD0DvVzO`y_~K!|Kb%lbIDQ*4oy4br)LQXrJfjuAA2T=v6xF(a0QbXP_wbrwUYJL# z`=zA=CdD5>UnWQowW>P!|M154wWoXDc*cxG=s;6ENaSUDB6q-FrXO+#6sGn|3^+_M zrUf*Y!1H$i%?*YVK+cEW%wZ-+Axb?|Iu52Pn#^+oNSu;$zEX3=b_mr8frRK&zyV;f zZVMg`6loRT*dLxE>{%5JnXsQ;<22ceh`aKT?y`VK$DFgLJepW21q&mhO&ibZE*!Dj zW6r|*>Sc5X#k+fQZw1qBSi09CG=+4(z%4&7{$>bOWxW4CQus_H!+C6&!vyfUzBv58?-2o)$SIh)=(I zAV^FfcBTXSz{?Aw?%TAck$%_-M!Du-4xrwEdSzJf+}8eI#Qu8=ucNOZfNh%ttr6Yq zgUi=!q-218L*XaTIVpPL!oc~n3#U(BJaOhy@xt>LFBJxHe`@jc#SfmoXc96PEbG#m%6j6&D@2L0n(viwUG#;M?^R z(zQUnX8>A08gLP9IuK2CDNVtE#rm4pOh<~CW)5Q+`8&)^3yjkOTK)zf^$i9a47Njb z?+WH9Flc$VcY}4!XdxI>*1o}H6$Yu#G0UVVv)7r;l&oubEI@AY3Vm1BS4&3iCs7#DQVuCZ zPkErOaopwX5u0di1o1s^Q5ZrQVk(v&vnT8nO7edQ|7?Xu)u@zUI6-mu;Ekd`3?xXpV!wIL2J9E z)E@IRX?+AGqo<>F-fe09+SjkWg_8G0Ps-550{@#Kr0ta_m}l;jxbqJEK5{^4uV2fk zDba{c1OJTzIp)Gq>a*1SL|~$gd0;^h^(FlYOmL7p)iRMen?ufxlChi_xlaY7Cq)2M z9YY$dZId9nI;# z!d6m7@)aSz)#MAZ(X!Pb!-f|hLBmRVz3RPZw^Ea(UuNvwf+JM7W!n)j3rn9B2!Z3wIanzZsfwU=q7^lrUL|P zg%s2>C{pO_>e^Pu_M52wTV!lxbMW^d+kybO2jbn3<$x&-2z#3pHbsv$vbYE2ZUDKw z%UIK3g_2Xux>ed3E&Rj={6s}V zNi(SAgWEu}1|w#x481@4MDLb|-mU*lo1Sjk$CC#5B=Pnz9vk3W@Bjg?Q$s-T!@<$> z*dGN!%di1Y1BaCWR>gsW$hw2*Wxt#YCQ*eXxV6IE++6VVyRI<-=%6?;Mj5?ub(aCH)h;$>PQs$)MrN zATDGOJamF2VZ5Q*?>FVVR9_bdspWcIaWyU1onxnhqg{n*jqj?k2oGET3g7((+H-Ee zdbI2uJGcN#nJj~s*sB{1ZZh~9gTIcTIcN;+GGfFQ`ZtgYgd(`X%zVV%|iWWZ413>$|r45ls~{{cg>p@zvDHdGs6dYIbC8FPtj$^8q_ zZalmw-oTyh*3thAuNq9Y_F=<%JNfXESz&>ERFNuL?y@ECinHBSyK zbC%>JRO0P8@{@4;n~O@&o%R=Gb7FZY7~3WCQ7tLYO^t1Ux-u}`Wzk~?4#M#jxc$N@ z7jzZ5KeSE2*Iog$`IGLRUwcL9D<2u)$P@~R>(%Nimhq=?V|3;e*d_7>duAZ z0Te!pUO0lvgx>U3R;eNYO$fIZnkh3?ID^ZWh>&#_${HT=TTK0J20zI_o=cWtl=lNtimde}XmS!FO27(@U2l8CDdN~D%8vrFOS%>@(E z0=LiZ3V;o=c^hlh-^Qzn)(8Cm?;sxJsysY5%T)^x6WL}tKh5ECeeG7Sh3B8J?g9cF zgy{3?>$+@?y%=*H%A>nt2+_a5k{@O>SsZ)wMGDwDcYhVxXE}Ehh+xYVkVi?C&b|Yd z{k=>aM;2JBXR{@*&*3K%^}i4aeuZlcyH&Uly-o{k*^O8EuSny61^+cdt08{JCP2 z+!c(Y?TfM6;|VxH-1=j<;itt7pU{-0(i9xK4l^PDwR8;!PI;B1Ogu`FiB>NeyS{;&x>;%T0Jn}8e()+6ly|RZ@20JZmsB-4eqYIQ4elKM4 z9<&Z5wuDQ8Uh5Paz}CyY@O5~iNfR&>){GC14%nw-47R8_NJt-QPd$_mSho0OfcJA? z?}wq-fS(yl^!KJYzPA*5cetweD6lv{->RnNL` zmT(NQv)bqyOXq($8~y~Emem4xBO`i^LWzs|J<9>iP(1la=K5bV=zYuP4jw_R71!5# zsx9-q$!TKrZ@2V+Lac|t`G#!*{}^t9y>z_-hk-@~oW(Y8YJdue=wT31{MH2!5psh` z;bXN7+Qa!0;7`M)4xa>D z=p9EO`(8h})=PPK{_J)sMKU;fni#8zLugaZ8uygM$fmLk=;gO$>{YYIDJ}GlB_y!;p z=b*Qv^)zQonR|$*y+jDZY5Ft=x_B%hx&ubVogCS@8pn}Q9L`oexD#I>kjJq(cR@j3c-YP^6PPm207eM65jfk9_RF-)}4CL-9v?nf9Ld417$h)!w zA%V8TXNQm{dkEQZ17$c!aG#-NN!*5*gXwMSMh@{f!Bf382ekA@7=l7duWlhJPJ=no zLv0ZFQJZ$Qj{JW_{*QCy2M~#YUZ@i$y@1IuPk$6aApxBcOgAeq<`~ub$C272P$iMT zO;)%pl>tOTVchUm!wF=Qg5U%J3uj}fQQ>zDLL0VQ2sR>Wf#{HquN%<5srn;b3($`m zkO{^)=G&GBjYD+OMfecP#&1&}X>=#MBdaGT{Nk<%P4pAcx{R6zH{w9Neh~Sd`RYrT2BKkigEx5lmnf>ZRUNaIikolOm3&VK*ic86>q($a0-kuhcz1 z*cXj1j|iHfp)p(L@;&c)-_iG8YL9<(mSfveX8=%B9$dd%zmPt0rU0@5zGhXf%!f20LinnwBCywa=eaDwMs_Igo?|=`;Q!U@%BAd+TOIiaeUq-ZowmhjirUZv8cE9C2(Md(cXT zysT^ENH^lI#p$}PBqs2hj_ldsx5b8T_zcf_@(dJo4)j+S4+Z7oBPIAwhuH@z{$Zks z`VF$A3O*emz7ntzE0^al0hYn&xBGkmj&8w-sCWRC+pP$Ea_XPQWY^%yhpKFoY%nUz z#@(B+H~8*h$DLcAJM6rC0C40=y>{TRb6^#MTkH7vfme+qNFj-iJ@W93Rp>9%cmrCe zqk(s6Cc#7TkmIprdbh+0lz3O*nJ^-Z)4hR2^Sa6o}%GLHo#-fN%JB- zN8y4|9PUSBT_^f+dcO}Cm1#=^u&tkFxSiwmb;EW+Y_5@zn= zGZ&wK;X*Tc0or05_rGxV!fCT~<7*YAA0c&%c#`1Cmf>usuHGo&Y+->%aX4k$Ng~Yw zGl#U)vdlL~)(6pAEMv!su?%`i0KwRQmPp$FCzT$;fmG_G%<+2tXDC}{h1MUp&Qbhi z`+OLj*N{BPya72C+ht^Apq57NL6Wj@lVJ;=YWD<4i*un=_e;X>YXf4_PFA0F!D???RuUG?!P zBDgL=1d$#;qz zBdt2W>ciZ#l4m-u{b>7l`~iN*2nPkMl_B*MbO+P?9Ky!%9V&)KHbz4^q|~DYFi!J{ zo;~kGn1F+PVq?c0XduWb4pYuI$6l!EXw`Y5eZT?*aTC z#BV=-2k<+H-wb|-@XO?5>fD>dfPU0$oL>m0FT%g3v$vf%8yyMkm{dKOp!y&l3Znxz z3x;QB;rneEl-Z>qUePVANI#fh>Qr4glPR#>-Z^6zQv3!LKPbY_HU)iMM(p4LV__5Z zoG~Tt4eVc()&YH>?3h~+s_H=4?4Np`(7%-(eDLAB?0(@ji zDLJbaJQis}x#96Bn6YD`NqjK|pNe2|*BP$%*)lH}!F+8wXAnF9)-LLY)*&o@{)>|q zrAy<%?(gHL7o=xr#p_2m_yS4vbgiOaV|>?%3uoo6?{V%UHEuc85R9KT9(}EJ?B-OT zvqhe9_))Y7tsZ5=-%q`&7ke-l0NIR(K(7>?3#o`5Hm}g-4-jf!=q1zrbz5s0P-u8|e7 ze4z%TGhpQ3N3vikIpWle9L37`+>kGxFPjz)H69N3b{1pjiJ;8u6@IDdV6b=UPCYT{D9&~p=JLV|BTa0~*f!JAoim^{K_-O{8Vem5yKF8o^ z8GN3>+YH26<)LNSmtn7rBzwjN?0f&772EqVWvW|A;NU zjG!>Mg;jTnA=HRUe+!uwOOWHK#=!hV<`Qvr8I*pWx2p_*n4q-+Z07g$I>%3%xexMt zErL@uEl+Z$plf*kKSqW+L3vLNr$D~xV{HFH1cd}Q01eatg?Ve1id8uOeSt-`NLLAZ zPW>JM=+rW1ZR00L+R0_ZrQsocW}5Qj4|)*<*YOu#8{ z0AGlL`ydW+3|L3t7)V(A?*FOp=mCyqrdVXpip7}$*{FmI3j34Y=Zvs*{Uhk|8DU|< ztEA)^XcLDtHxN_tZ!t!`d2gNPm{nvzPS>uTh)Vtr5-))_{voc=ftg!dH(B;anP!Pa z4;QMlaQOx=4{4lLyK_Sg;qP)6hzWVTAnGX04M`*Zs z)gLMBeEJ*|2&YdKPn^7T_W6ZHxYIuW0r=AvChp0g3omo_+>?WPmoB~_4akSB^`ECX>xPm>J0& z$vm3bof*ueLHO_X|DD|GyXKiX-_ET^CH^!wml@6V Date: Sun, 25 May 2025 08:06:03 +0100 Subject: [PATCH 060/101] bump mineflayer version from 4.26.0 to 4.29.0 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index bb3fd90..5fb95d7 100644 --- a/package.json +++ b/package.json @@ -11,7 +11,7 @@ "google-translate-api-x": "^10.7.1", "groq-sdk": "^0.15.0", "minecraft-data": "^3.78.0", - "mineflayer": "^4.26.0", + "mineflayer": "^4.29.0", "mineflayer-armor-manager": "^2.0.1", "mineflayer-auto-eat": "^3.3.6", "mineflayer-collectblock": "^1.4.1", From 6b4b895cc1739b3271e7299d781482d93915d64d Mon Sep 17 00:00:00 2001 From: Isadora White Date: Mon, 26 May 2025 16:46:42 -0700 Subject: [PATCH 061/101] human ai tasks --- minecollab.md | 2 + ..._three_agents.pdf => church_blueprint.pdf} | Bin .../human_ai/1_agent_1_human.json | 34 + .../human_ai_tasks/1_agent_1_human.json | 762 ------------------ tasks/running_human_ai.md | 20 + 5 files changed, 56 insertions(+), 762 deletions(-) rename tasks/construction_tasks/{church_three_agents.pdf => church_blueprint.pdf} (100%) create mode 100644 tasks/cooking_tasks/human_ai/1_agent_1_human.json create mode 100644 tasks/running_human_ai.md diff --git a/minecollab.md b/minecollab.md index 019d8b1..551c3b7 100644 --- a/minecollab.md +++ b/minecollab.md @@ -41,6 +41,8 @@ You can view the crafting task in action [here](https://www.youtube.com/shorts/V ## Installation +You **DO NOT** need Linux to run this, you can run on Windows with the --no-launch-world flag and by installing git bash. + Please follow the installation docs in the README to install mindcraft. You can create a docker image using the Dockerfile. Download the relevant task files and server data files, you can find the link [here](https://drive.google.com/drive/folders/1XygbitBBTsNO6q_doEiZHmdETpnyRmCS). The tasks files are for specifying the tasks to run and the server data is for allowing the models to launch the task in the correct world automatically. **Unzip the server_data.zip in the base `tasks/` folder**. diff --git a/tasks/construction_tasks/church_three_agents.pdf b/tasks/construction_tasks/church_blueprint.pdf similarity index 100% rename from tasks/construction_tasks/church_three_agents.pdf rename to tasks/construction_tasks/church_blueprint.pdf diff --git a/tasks/cooking_tasks/human_ai/1_agent_1_human.json b/tasks/cooking_tasks/human_ai/1_agent_1_human.json new file mode 100644 index 0000000..0212f7a --- /dev/null +++ b/tasks/cooking_tasks/human_ai/1_agent_1_human.json @@ -0,0 +1,34 @@ +{ + "multiagent_cooking_bread_golden_apple": { + "type": "cooking", + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "agent_count": 2, + "target": { + "bread": 1, + "golden_apple": 1 + }, + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1 + }, + "1": { + "gold_ingot": 4 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make bread, golden_apple, The recipes are as follows:\nRecipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']\nRecipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']\n", + "1": "Collaborate with other agents around you to make bread, golden_apple, The recipes are as follows:\nRecipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']\nRecipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']\n" + }, + "conversation": "Let's collaborate to make bread, golden_apple, " + } +} \ No newline at end of file diff --git a/tasks/crafting_tasks/human_ai_tasks/1_agent_1_human.json b/tasks/crafting_tasks/human_ai_tasks/1_agent_1_human.json index e539510..cf01d07 100644 --- a/tasks/crafting_tasks/human_ai_tasks/1_agent_1_human.json +++ b/tasks/crafting_tasks/human_ai_tasks/1_agent_1_human.json @@ -27,767 +27,5 @@ "izzycw" ], "requires_ctable": false - }, - "multiagent_crafting_lime_wool_partial_plan__depth_0": { - "goal": "Collaborate with other agents to craft an lime_wool", - "conversation": "Let's work together to craft an lime_wool.", - "initial_inventory": { - "0": { - "lime_dye": 1 - }, - "1": { - "black_wool": 1 - } - }, - "agent_count": 1, - "target": "lime_wool", - "number_of_target": 1, - "type": "techtree", - "max_depth": 2, - "depth": 0, - "timeout": 300, - "blocked_actions": { - "0": [], - "1": [ - "!getCraftingPlan" - ] - }, - "human_count": 1, - "usernames": [ - "izzycw" - ], - "missing_items": [], - "requires_ctable": false - }, - "multiagent_crafting_purple_banner_full_plan_requires_ctable__depth_0": { - "goal": "Collaborate with other agents to craft an purple_banner", - "conversation": "Let's work together to craft an purple_banner.", - "initial_inventory": { - "0": { - "purple_wool": 4, - "stick": 1 - }, - "1": { - "purple_wool": 3, - "crafting_table": 1 - } - }, - "agent_count": 1, - "target": "purple_banner", - "number_of_target": 1, - "type": "techtree", - "max_depth": 3, - "depth": 0, - "timeout": 300, - "human_count": 1, - "usernames": [ - "izzycw" - ], - "blocked_actions": { - "0": [], - "1": [] - }, - "missing_items": [], - "requires_ctable": true - }, - "multiagent_crafting_soul_campfire_partial_plan_requires_ctable__depth_0": { - "goal": "Collaborate with other agents to craft an soul_campfire", - "conversation": "Let's work together to craft an soul_campfire.", - "initial_inventory": { - "0": { - "oak_planks": 2, - "soul_sand": 1, - "dark_oak_log": 2 - }, - "1": { - "oak_planks": 1, - "dark_oak_log": 1, - "crafting_table": 1 - } - }, - "agent_count": 2, - "target": "soul_campfire", - "number_of_target": 1, - "type": "techtree", - "max_depth": 2, - "depth": 0, - "timeout": 300, - "human_count": 1, - "usernames": [ - "izzycw" - ], - "blocked_actions": { - "0": [ - "!getCraftingPlan" - ], - "1": [] - }, - "missing_items": [], - "requires_ctable": true - }, - "multiagent_crafting_bookshelf_full_plan_requires_ctable__depth_0": { - "goal": "Collaborate with other agents to craft a bookshelf", - "conversation": "Let's work together to craft a bookshelf.", - "initial_inventory": { - "0": { - "oak_planks": 4, - "book": 2 - }, - "1": { - "oak_planks": 2, - "book": 1, - "crafting_table": 1 - } - }, - "agent_count": 1, - "target": "bookshelf", - "number_of_target": 1, - "type": "techtree", - "max_depth": 1, - "depth": 0, - "timeout": 300, - "human_count": 1, - "usernames": [ - "izzycw" - ], - "blocked_actions": { - "0": [], - "1": [] - }, - "missing_items": [], - "requires_ctable": true - }, - "multiagent_crafting_compass_partial_plan_requires_ctable__depth_0": { - "goal": "Collaborate with other agents to craft a compass", - "conversation": "Let's work together to craft a compass.", - "initial_inventory": { - "0": { - "iron_ingot": 2 - }, - "1": { - "iron_ingot": 2, - "redstone": 1, - "crafting_table": 1 - } - }, - "agent_count": 1, - "target": "compass", - "number_of_target": 1, - "type": "techtree", - "max_depth": 2, - "depth": 0, - "timeout": 300, - "human_count": 1, - "usernames": [ - "izzycw" - ], - "blocked_actions": { - "0": [ - "!getCraftingPlan" - ], - "1": [] - }, - "missing_items": [], - "requires_ctable": true - }, - "multiagent_crafting_fishing_rod_full_plan_requires_ctable__depth_1": { - "goal": "Collaborate with other agents to craft a fishing_rod", - "conversation": "Let's work together to craft a fishing_rod.", - "initial_inventory": { - "0": { - "string": 1, - "oak_planks": 2 - }, - "1": { - "string": 1, - "crafting_table": 1 - } - }, - "agent_count": 1, - "target": "fishing_rod", - "number_of_target": 1, - "type": "techtree", - "max_depth": 3, - "depth": 1, - "timeout": 300, - "human_count": 1, - "usernames": [ - "izzycw" - ], - "blocked_actions": { - "0": [], - "1": [] - }, - "missing_items": [], - "requires_ctable": true - }, - "multiagent_crafting_cake_partial_plan_requires_ctable__depth_0": { - "goal": "Collaborate with other agents to craft a cake", - "conversation": "Let's work together to craft a cake.", - "initial_inventory": { - "0": { - "wheat": 2, - "sugar": 1, - "egg": 1 - }, - "1": { - "wheat": 1, - "milk_bucket": 2, - "crafting_table": 1 - } - }, - "agent_count": 1, - "target": "cake", - "number_of_target": 1, - "type": "techtree", - "max_depth": 3, - "depth": 0, - "timeout": 300, - "human_count": 1, - "usernames": [ - "izzycw" - ], - "blocked_actions": { - "0": [ - "!getCraftingPlan" - ], - "1": [] - }, - "missing_items": [], - "requires_ctable": true - }, - "multiagent_crafting_golden_carrot_full_plan_requires_ctable__depth_0": { - "goal": "Collaborate with other agents to craft a golden_carrot", - "conversation": "Let's work together to craft a golden_carrot.", - "initial_inventory": { - "0": { - "gold_nugget": 5, - "carrot": 1 - }, - "1": { - "gold_nugget": 3, - "crafting_table": 1 - } - }, - "agent_count": 1, - "target": "golden_carrot", - "number_of_target": 1, - "type": "techtree", - "max_depth": 2, - "depth": 0, - "timeout": 300, - "human_count": 1, - "usernames": [ - "izzycw" - ], - "blocked_actions": { - "0": [], - "1": [] - }, - "missing_items": [], - "requires_ctable": true - }, - "multiagent_crafting_map_partial_plan_requires_ctable__depth_0": { - "goal": "Collaborate with other agents to craft a map", - "conversation": "Let's work together to craft a map.", - "initial_inventory": { - "0": { - "paper": 5 - }, - "1": { - "paper": 3, - "compass": 1, - "crafting_table": 1 - } - }, - "agent_count": 1, - "target": "map", - "number_of_target": 1, - "type": "techtree", - "max_depth": 1, - "depth": 0, - "timeout": 300, - "human_count": 1, - "usernames": [ - "izzycw" - ], - "blocked_actions": { - "0": [ - "!getCraftingPlan" - ], - "1": [] - }, - "missing_items": [], - "requires_ctable": true - }, - "multiagent_crafting_blue_wool_full_plan__depth_0": { - "goal": "Collaborate with other agents to craft blue_wool", - "conversation": "Let's work together to craft blue_wool.", - "initial_inventory": { - "0": { - "blue_dye": 1 - }, - "1": { - "white_wool": 1 - } - }, - "agent_count": 2, - "target": "blue_wool", - "number_of_target": 1, - "type": "techtree", - "max_depth": 1, - "depth": 0, - "timeout": 300, - "human_count": 1, - "usernames": [ - "izzycw" - ], - "blocked_actions": { - "0": [], - "1": [] - }, - "missing_items": [], - "requires_ctable": false - }, - "multiagent_crafting_lime_wool_partial_plan__depth_2": { - "goal": "Collaborate with other agents to craft lime_wool", - "conversation": "Let's work together to craft lime_wool.", - "initial_inventory": { - "0": { - "green_dye": 1 - }, - "1": { - "white_wool": 1, - "bone_meal": 1 - } - }, - "agent_count": 2, - "target": "lime_wool", - "number_of_target": 1, - "type": "techtree", - "max_depth": 2, - "depth": 1, - "timeout": 300, - "human_count": 1, - "usernames": [ - "izzycw" - ], - "blocked_actions": { - "0": [ - "!getCraftingPlan" - ], - "1": [] - }, - "missing_items": [], - "requires_ctable": false - }, - "multiagent_crafting_magenta_wool_full_plan__depth_2": { - "goal": "Collaborate with other agents to craft magenta_wool", - "conversation": "Let's work together to craft magenta_wool.", - "initial_inventory": { - "0": { - "rose_red": 1, - "lapis_lazuli": 1 - }, - "1": { - "white_wool": 1, - "bone_meal": 1 - } - }, - "agent_count": 1, - "target": "magenta_wool", - "number_of_target": 1, - "type": "techtree", - "max_depth": 3, - "depth": 2, - "timeout": 300, - "human_count": 1, - "usernames": [ - "izzycw" - ], - "blocked_actions": { - "0": [], - "1": [] - }, - "missing_items": [], - "requires_ctable": false - }, - "multiagent_crafting_chest_full_plan_requires_ctable__depth_1": { - "goal": "Collaborate with other agents to craft a chest", - "conversation": "Let's work together to craft a chest.", - "initial_inventory": { - "0": { - "oak_log": 1 - }, - "1": { - "oak_planks": 4, - "crafting_table": 1 - } - }, - "agent_count": 2, - "target": "chest", - "number_of_target": 1, - "type": "techtree", - "max_depth": 1, - "depth": 1, - "timeout": 300, - "human_count": 1, - "usernames": [ - "izzycw" - ], - "blocked_actions": { - "0": [], - "1": [] - }, - "missing_items": [], - "requires_ctable": true - }, - "multiagent_crafting_barrel_partial_plan_requires_ctable__depth_1": { - "goal": "Collaborate with other agents to craft a barrel", - "conversation": "Let's work together to craft a barrel.", - "initial_inventory": { - "0": { - "spruce_planks": 3, - "crafting_table": 1 - }, - "1": { - "spruce_planks": 3, - "wooden_slab": 1 - } - }, - "agent_count": 2, - "target": "barrel", - "number_of_target": 1, - "type": "techtree", - "max_depth": 2, - "depth": 1, - "timeout": 300, - "human_count": 1, - "usernames": [ - "izzycw" - ], - "blocked_actions": { - "0": [ - "!getCraftingPlan" - ], - "1": [] - }, - "missing_items": [], - "requires_ctable": true - }, - "multiagent_crafting_lectern_full_plan_requires_ctable__depth_2": { - "goal": "Collaborate with other agents to craft a lectern", - "conversation": "Let's work together to craft a lectern.", - "initial_inventory": { - "0": { - "birch_slab": 5, - "crafting_table": 1 - }, - "1": { - "birch_log": 2, - "book": 3 - } - }, - "agent_count": 1, - "target": "lectern", - "number_of_target": 1, - "type": "techtree", - "max_depth": 2, - "depth": 2, - "timeout": 300, - "human_count": 1, - "usernames": [ - "izzycw" - ], - "blocked_actions": { - "0": [], - "1": [] - }, - "missing_items": [], - "requires_ctable": true - }, - "multiagent_crafting_clock_partial_plan_requires_ctable__depth_0": { - "goal": "Collaborate with other agents to craft a clock", - "conversation": "Let's work together to craft a clock.", - "initial_inventory": { - "0": { - "gold_ingot": 2 - }, - "1": { - "gold_ingot": 2, - "redstone": 1, - "crafting_table": 1 - } - }, - "agent_count": 1, - "target": "clock", - "number_of_target": 1, - "type": "techtree", - "max_depth": 2, - "depth": 0, - "timeout": 300, - "human_count": 1, - "usernames": [ - "izzycw" - ], - "blocked_actions": { - "0": [ - "!getCraftingPlan" - ], - "1": [] - }, - "missing_items": [], - "requires_ctable": true - }, - "multiagent_crafting_firework_rocket_partial_plan__depth_0": { - "goal": "Collaborate with other agents to craft firework_rocket", - "conversation": "Let's work together to craft firework_rocket.", - "initial_inventory": { - "0": { - "paper": 1 - }, - "1": { - "gunpowder": 3 - } - }, - "agent_count": 2, - "target": "firework_rocket", - "number_of_target": 1, - "type": "techtree", - "max_depth": 2, - "depth": 0, - "timeout": 300, - "human_count": 1, - "usernames": [ - "izzycw" - ], - "blocked_actions": { - "0": [ - "!getCraftingPlan" - ], - "1": [] - }, - "missing_items": [], - "requires_ctable": false - }, - "multiagent_crafting_enchanting_table_partial_plan_requires_ctable__depth_0": { - "goal": "Collaborate with other agents to craft an enchanting_table", - "conversation": "Let's work together to craft an enchanting_table.", - "initial_inventory": { - "0": { - "diamond": 2, - "obsidian": 2, - "crafting_table": 1 - }, - "1": { - "obsidian": 2, - "book": 1 - } - }, - "agent_count": 2, - "target": "enchanting_table", - "number_of_target": 1, - "type": "techtree", - "max_depth": 0, - "depth": 0, - "timeout": 300, - "human_count": 1, - "usernames": [ - "izzycw" - ], - "blocked_actions": { - "0": [ - "!getCraftingPlan" - ], - "1": [] - }, - "missing_items": [], - "requires_ctable": true - }, - "multiagent_crafting_jukebox_full_plan_requires_ctable__depth_1": { - "goal": "Collaborate with other agents to craft a jukebox", - "conversation": "Let's work together to craft a jukebox.", - "initial_inventory": { - "0": { - "diamond": 1 - }, - "1": { - "oak_log": 2, - "crafting_table": 1 - } - }, - "agent_count": 1, - "target": "jukebox", - "number_of_target": 1, - "type": "techtree", - "max_depth": 1, - "depth": 1, - "timeout": 300, - "human_count": 1, - "usernames": [ - "izzycw" - ], - "blocked_actions": { - "0": [], - "1": [] - }, - "missing_items": [], - "requires_ctable": true - }, - "multiagent_crafting_light_gray_wool_full_plan__depth_1": { - "goal": "Collaborate with other agents to craft light_gray_wool", - "conversation": "Let's work together to craft light_gray_wool.", - "initial_inventory": { - "0": { - "black_dye": 1 - }, - "1": { - "white_wool": 1, - "white_dye": 2 - } - }, - "agent_count": 1, - "target": "light_gray_wool", - "number_of_target": 1, - "type": "techtree", - "max_depth": 2, - "depth": 1, - "timeout": 300, - "human_count": 1, - "usernames": [ - "izzycw" - ], - "blocked_actions": { - "0": [], - "1": [] - }, - "missing_items": [], - "requires_ctable": false - }, - "multiagent_crafting_blast_furnace_full_plan_requires_ctable__depth_1": { - "goal": "Collaborate with other agents to craft a blast_furnace", - "conversation": "Let's work together to craft a blast_furnace.", - "initial_inventory": { - "0": { - "iron_ingot": 5, - "smooth_stone": 3 - }, - "1": { - "cobblestone": 8, - "crafting_table": 1 - } - }, - "agent_count": 2, - "target": "blast_furnace", - "number_of_target": 1, - "type": "techtree", - "max_depth": 2, - "depth": 1, - "timeout": 300, - "human_count": 1, - "usernames": [ - "izzycw" - ], - "blocked_actions": { - "0": [], - "1": [] - }, - "missing_items": [], - "requires_ctable": true - }, - "multiagent_crafting_activator_rail_full_plan_requires_ctable__depth_2": { - "goal": "Collaborate with other agents to craft activator_rail", - "conversation": "Let's work together to craft activator_rail.", - "initial_inventory": { - "0": { - "iron_ingot": 3, - "oak_planks": 6 - }, - "1": { - "redstone": 1, - "iron_ingot": 3, - "crafting_table": 1 - } - }, - "agent_count": 1, - "target": "activator_rail", - "number_of_target": 1, - "type": "techtree", - "max_depth": 3, - "depth": 2, - "timeout": 300, - "human_count": 1, - "usernames": [ - "izzycw" - ], - "blocked_actions": { - "0": [], - "1": [] - }, - "missing_items": [], - "requires_ctable": true - }, - "multiagent_crafting_campfire_partial_plan_requires_ctable__depth_2": { - "goal": "Collaborate with other agents to craft campfire", - "conversation": "Let's work together to craft campfire.", - "initial_inventory": { - "0": { - "oak_log": 8 - }, - "1": { - "coal": 1, - "crafting_table": 1 - } - }, - "agent_count": 1, - "target": "campfire", - "number_of_target": 1, - "type": "techtree", - "max_depth": 3, - "depth": 2, - "timeout": 300, - "human_count": 1, - "usernames": [ - "izzycw" - ], - "blocked_actions": { - "0": [ - "!getCraftingPlan" - ], - "1": [] - }, - "missing_items": [], - "requires_ctable": true - }, - "multiagent_crafting_crossbow_full_plan_requires_ctable__depth_2": { - "goal": "Collaborate with other agents to craft a crossbow", - "conversation": "Let's work together to craft a crossbow.", - "initial_inventory": { - "0": { - "oak_planks": 8, - "iron_ingot": 2 - }, - "1": { - "string": 2, - "crafting_table": 1 - } - }, - "agent_count": 1, - "target": "crossbow", - "number_of_target": 1, - "type": "techtree", - "max_depth": 3, - "depth": 2, - "timeout": 300, - "human_count": 1, - "usernames": [ - "izzycw" - ], - "blocked_actions": { - "0": [], - "1": [] - }, - "missing_items": [], - "requires_ctable": true } } \ No newline at end of file diff --git a/tasks/running_human_ai.md b/tasks/running_human_ai.md new file mode 100644 index 0000000..d1d04d6 --- /dev/null +++ b/tasks/running_human_ai.md @@ -0,0 +1,20 @@ +# Human AI Instructions + +## Construction +Press F3 to view the coordinates of the game. And pull up the file tasks/construction_tasks/church_blueprint.pdf +Run +``` +python tasks/evaluation_script.py --no_launch_world --template_profile profiles/tasks/construction_profile.json --task_path tasks/construction_tasks/human_ai/1_agent_1_human.json --usernames YOUR_USERNAME --num_agents 1 --insecure_coding +``` + +## Crafting + +``` +python tasks/evaluation_script.py --no_launch_world --template_profile profiles/tasks/crafting_profile.json --task_path tasks/crafting_tasks/human_ai/1_agent_1_human.json --usernames YOUR_USERNAME --num_agents 1 +``` + +## Cooking + +``` +python tasks/evaluation_script.py --no_launch_world --template_profile profiles/tasks/cooking_profile.json --task_path tasks/cooking_tasks/human_ai/1_agent_1_human.json --usernames YOUR_USERNAME --num_agents 1 +``` \ No newline at end of file From ef9fb747573946fb4ecd12b03baba98f38f69289 Mon Sep 17 00:00:00 2001 From: Isadora White Date: Mon, 26 May 2025 21:25:10 -0700 Subject: [PATCH 062/101] cleaning up human ai tasks --- .../human_ai/1_agent_1_human.json | 2 +- tasks/cooking_tasks/human_ai/1_agent_1_human.json | 8 ++++++-- .../1_agent_1_human.json | 2 +- .../1_agent_1_human_copy.json | 0 .../3_agent_1_human.json | 0 tasks/running_human_ai.md | 14 ++++++++++++++ 6 files changed, 22 insertions(+), 4 deletions(-) rename tasks/crafting_tasks/{human_ai_tasks => human_ai}/1_agent_1_human.json (96%) rename tasks/crafting_tasks/{human_ai_tasks => human_ai}/1_agent_1_human_copy.json (100%) rename tasks/crafting_tasks/{human_ai_tasks => human_ai}/3_agent_1_human.json (100%) diff --git a/tasks/construction_tasks/human_ai/1_agent_1_human.json b/tasks/construction_tasks/human_ai/1_agent_1_human.json index 2dfaa22..23171da 100644 --- a/tasks/construction_tasks/human_ai/1_agent_1_human.json +++ b/tasks/construction_tasks/human_ai/1_agent_1_human.json @@ -2351,7 +2351,7 @@ } }, "usernames": [ - "izzycw" + "erringnine" ] } } \ No newline at end of file diff --git a/tasks/cooking_tasks/human_ai/1_agent_1_human.json b/tasks/cooking_tasks/human_ai/1_agent_1_human.json index 0212f7a..a6b34b7 100644 --- a/tasks/cooking_tasks/human_ai/1_agent_1_human.json +++ b/tasks/cooking_tasks/human_ai/1_agent_1_human.json @@ -11,7 +11,8 @@ "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." ] }, - "agent_count": 2, + "agent_count": 1, + "human_count": 1, "target": { "bread": 1, "golden_apple": 1 @@ -29,6 +30,9 @@ "0": "Collaborate with other agents around you to make bread, golden_apple, The recipes are as follows:\nRecipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']\nRecipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']\n", "1": "Collaborate with other agents around you to make bread, golden_apple, The recipes are as follows:\nRecipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']\nRecipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']\n" }, - "conversation": "Let's collaborate to make bread, golden_apple, " + "conversation": "Let's collaborate to make bread, golden_apple, ", + "usernames": [ + "erringnine" + ] } } \ No newline at end of file diff --git a/tasks/crafting_tasks/human_ai_tasks/1_agent_1_human.json b/tasks/crafting_tasks/human_ai/1_agent_1_human.json similarity index 96% rename from tasks/crafting_tasks/human_ai_tasks/1_agent_1_human.json rename to tasks/crafting_tasks/human_ai/1_agent_1_human.json index cf01d07..f47a540 100644 --- a/tasks/crafting_tasks/human_ai_tasks/1_agent_1_human.json +++ b/tasks/crafting_tasks/human_ai/1_agent_1_human.json @@ -24,7 +24,7 @@ "missing_items": [], "human_count": 1, "usernames": [ - "izzycw" + "erringnine" ], "requires_ctable": false } diff --git a/tasks/crafting_tasks/human_ai_tasks/1_agent_1_human_copy.json b/tasks/crafting_tasks/human_ai/1_agent_1_human_copy.json similarity index 100% rename from tasks/crafting_tasks/human_ai_tasks/1_agent_1_human_copy.json rename to tasks/crafting_tasks/human_ai/1_agent_1_human_copy.json diff --git a/tasks/crafting_tasks/human_ai_tasks/3_agent_1_human.json b/tasks/crafting_tasks/human_ai/3_agent_1_human.json similarity index 100% rename from tasks/crafting_tasks/human_ai_tasks/3_agent_1_human.json rename to tasks/crafting_tasks/human_ai/3_agent_1_human.json diff --git a/tasks/running_human_ai.md b/tasks/running_human_ai.md index d1d04d6..1dcb8ec 100644 --- a/tasks/running_human_ai.md +++ b/tasks/running_human_ai.md @@ -1,5 +1,19 @@ # Human AI Instructions +## Finishing Installation + +Install the conda environment for running the experiments by executing this in your command line: + +``` +conda create --name mindcraft python=3.11 +conda activate mindcraft +pip install -r requirements.txt +``` + +## Setting up the world + +Setting up the world! Make sure your world has cheats enabled! You can do this on creation of your Minecraft world in the Minecraft console, or you can type ```/op @a``` in the chat or in the console of the world launched from the jar file. + ## Construction Press F3 to view the coordinates of the game. And pull up the file tasks/construction_tasks/church_blueprint.pdf Run From 133123983065e0af598f5dedb2065a439f6e79e9 Mon Sep 17 00:00:00 2001 From: Isadora White Date: Fri, 30 May 2025 17:39:47 -0500 Subject: [PATCH 063/101] small changes to tasks --- tasks/cooking_tasks/human_ai/1_agent_1_human.json | 2 +- tasks/crafting_tasks/human_ai/1_agent_1_human.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tasks/cooking_tasks/human_ai/1_agent_1_human.json b/tasks/cooking_tasks/human_ai/1_agent_1_human.json index a6b34b7..20a4973 100644 --- a/tasks/cooking_tasks/human_ai/1_agent_1_human.json +++ b/tasks/cooking_tasks/human_ai/1_agent_1_human.json @@ -32,7 +32,7 @@ }, "conversation": "Let's collaborate to make bread, golden_apple, ", "usernames": [ - "erringnine" + "izzycw" ] } } \ No newline at end of file diff --git a/tasks/crafting_tasks/human_ai/1_agent_1_human.json b/tasks/crafting_tasks/human_ai/1_agent_1_human.json index f47a540..cf01d07 100644 --- a/tasks/crafting_tasks/human_ai/1_agent_1_human.json +++ b/tasks/crafting_tasks/human_ai/1_agent_1_human.json @@ -24,7 +24,7 @@ "missing_items": [], "human_count": 1, "usernames": [ - "erringnine" + "izzycw" ], "requires_ctable": false } From 0bffe111b12b6d249d9677386ebd1db1570552dc Mon Sep 17 00:00:00 2001 From: Isadora White Date: Sun, 1 Jun 2025 18:43:28 -0500 Subject: [PATCH 064/101] fixing weird conversation thing maybe --- src/agent/tasks/tasks.js | 33 +++++++++++++++++---------------- src/models/vllm.js | 1 + 2 files changed, 18 insertions(+), 16 deletions(-) diff --git a/src/agent/tasks/tasks.js b/src/agent/tasks/tasks.js index 1c00d95..f2d0fb2 100644 --- a/src/agent/tasks/tasks.js +++ b/src/agent/tasks/tasks.js @@ -423,10 +423,24 @@ export class Task { console.log(`Setting goal for agent ${this.agent.count_id}: ${agentGoal}`); } await executeCommand(this.agent, `!goal("${agentGoal}")`); + + if (this.data.conversation && this.agent.count_id === 0) { + let other_name = this.available_agents.filter(n => n !== this.name)[0]; + let waitCount = 0; + while (other_name === undefined && waitCount < 20) { + other_name = this.available_agents.filter(n => n !== this.name)[0]; + await new Promise((resolve) => setTimeout(resolve, 1000)); + waitCount++; + } + if (other_name === undefined && this.data.agent_count > 1) { + console.log('No other agents found. Task unsuccessful.'); + this.agent.killAll(); + } + await executeCommand(this.agent, `!startConversation("${other_name}", "${this.data.conversation}")`); + } } async initBotTask() { - await this.setAgentGoal(); await this.agent.bot.chat(`/clear ${this.name}`); console.log(`Cleared ${this.name}'s inventory.`); @@ -511,21 +525,8 @@ export class Task { this.agent.killAll(); } } - - if (this.data.conversation && this.agent.count_id === 0) { - let other_name = this.available_agents.filter(n => n !== this.name)[0]; - let waitCount = 0; - while (other_name === undefined && waitCount < 20) { - other_name = this.available_agents.filter(n => n !== this.name)[0]; - await new Promise((resolve) => setTimeout(resolve, 1000)); - waitCount++; - } - if (other_name === undefined && this.data.agent_count > 1) { - console.log('No other agents found. Task unsuccessful.'); - this.agent.killAll(); - } - await executeCommand(this.agent, `!startConversation("${other_name}", "${this.data.conversation}")`); - } + await new Promise((resolve) => setTimeout(resolve, 500)); + await this.setAgentGoal(); } diff --git a/src/models/vllm.js b/src/models/vllm.js index 52e3e5b..e9116ef 100644 --- a/src/models/vllm.js +++ b/src/models/vllm.js @@ -38,6 +38,7 @@ export class VLLM { try { console.log('Awaiting openai api response...') // console.log('Messages:', messages); + // todo set max_tokens, temperature, top_p, etc. in pack let completion = await this.vllm.chat.completions.create(pack); if (completion.choices[0].finish_reason == 'length') throw new Error('Context length exceeded'); From 0503ee34097d80d965ef23091c6143a48597f736 Mon Sep 17 00:00:00 2001 From: Isadora White Date: Sun, 1 Jun 2025 18:46:50 -0500 Subject: [PATCH 065/101] remove the conversation thingie from the set agent goal command --- src/agent/tasks/tasks.js | 31 ++++++++++++++----------------- 1 file changed, 14 insertions(+), 17 deletions(-) diff --git a/src/agent/tasks/tasks.js b/src/agent/tasks/tasks.js index f2d0fb2..a7948f5 100644 --- a/src/agent/tasks/tasks.js +++ b/src/agent/tasks/tasks.js @@ -423,21 +423,6 @@ export class Task { console.log(`Setting goal for agent ${this.agent.count_id}: ${agentGoal}`); } await executeCommand(this.agent, `!goal("${agentGoal}")`); - - if (this.data.conversation && this.agent.count_id === 0) { - let other_name = this.available_agents.filter(n => n !== this.name)[0]; - let waitCount = 0; - while (other_name === undefined && waitCount < 20) { - other_name = this.available_agents.filter(n => n !== this.name)[0]; - await new Promise((resolve) => setTimeout(resolve, 1000)); - waitCount++; - } - if (other_name === undefined && this.data.agent_count > 1) { - console.log('No other agents found. Task unsuccessful.'); - this.agent.killAll(); - } - await executeCommand(this.agent, `!startConversation("${other_name}", "${this.data.conversation}")`); - } } async initBotTask() { @@ -526,9 +511,21 @@ export class Task { } } await new Promise((resolve) => setTimeout(resolve, 500)); + if (this.data.conversation && this.agent.count_id === 0) { + let other_name = this.available_agents.filter(n => n !== this.name)[0]; + let waitCount = 0; + while (other_name === undefined && waitCount < 20) { + other_name = this.available_agents.filter(n => n !== this.name)[0]; + await new Promise((resolve) => setTimeout(resolve, 1000)); + waitCount++; + } + if (other_name === undefined && this.data.agent_count > 1) { + console.log('No other agents found. Task unsuccessful.'); + this.agent.killAll(); + } + await executeCommand(this.agent, `!startConversation("${other_name}", "${this.data.conversation}")`); + } await this.setAgentGoal(); - - } async teleportBots() { From 6f2bf41e6e088cf176afd0a2f761a91213eab7e2 Mon Sep 17 00:00:00 2001 From: Maximus Date: Mon, 2 Jun 2025 13:47:07 -0600 Subject: [PATCH 066/101] initial refactor --- api.js | 43 +++++++++++++++++++ main.js | 8 ++-- mindcraft.js | 32 ++++++++++++++ settings.js | 25 ++++++----- src/agent/settings.js | 0 src/process/agent_process.js | 4 +- .../{main_proxy.js => mindserver_proxy.js} | 16 +++---- src/server/{mind_server.js => mindserver.js} | 5 +++ 8 files changed, 109 insertions(+), 24 deletions(-) create mode 100644 api.js create mode 100644 mindcraft.js create mode 100644 src/agent/settings.js rename src/process/{main_proxy.js => mindserver_proxy.js} (81%) rename src/server/{mind_server.js => mindserver.js} (96%) diff --git a/api.js b/api.js new file mode 100644 index 0000000..ddd3ea1 --- /dev/null +++ b/api.js @@ -0,0 +1,43 @@ +import * as Mindcraft from './mindcraft.js'; + +await Mindcraft.init('localhost', 8080); // starts server locally +await Mindcraft.connect('ip', 'port') // connects to remote server +// ^ must do one of these before calling anything else + +Mindcraft.addWorld( + { + name: 'test', + minecraft_version: "1.21.1", + host: 'localhost', + port: 55916, + auth: 'offline', + + render_bot_views: false, // show bot's view in browser at localhost:3000, 3001... + allow_insecure_coding: true, // allows newAction command and model can write/run code on server. enable at own risk + code_timeout_mins: -1, // minutes code is allowed to run. -1 for no timeout + verbose_commands: true, // show full command syntax + chat_bot_messages: true, // publicly chat bot-to-bot messages + } +) +// add world for easy reuse. not super necessary, easy for user to copy world def object around. remove? + + +Mindcraft.addAgent( + { + world: 'test', + world: { + minecraft_version: '', + host: '', + port: '', + auth: 'offline' + }, + profile: './profiles/test.json', + // profile: { + // name: 'test', + // prompt: 'test', + // }, + task: './tasks/test.json' + } +) + +Mindcraft.removeAgent() \ No newline at end of file diff --git a/main.js b/main.js index 521aadf..07d3808 100644 --- a/main.js +++ b/main.js @@ -2,8 +2,8 @@ import { AgentProcess } from './src/process/agent_process.js'; import settings from './settings.js'; import yargs from 'yargs'; import { hideBin } from 'yargs/helpers'; -import { createMindServer } from './src/server/mind_server.js'; -import { mainProxy } from './src/process/main_proxy.js'; +import { createMindServer } from './src/server/mindserver.js'; +import { mindserverProxy } from './src/process/mindserver_proxy.js.js'; import { readFileSync } from 'fs'; function parseArguments() { @@ -33,7 +33,7 @@ async function main() { if (settings.host_mindserver) { const mindServer = createMindServer(settings.mindserver_port); } - mainProxy.connect(); + mindserverProxy.connect(); const args = parseArguments(); const profiles = getProfiles(args); @@ -44,7 +44,7 @@ async function main() { const agent_process = new AgentProcess(); const profile = readFileSync(profiles[i], 'utf8'); const agent_json = JSON.parse(profile); - mainProxy.registerAgent(agent_json.name, agent_process); + mindserverProxy.registerAgent(agent_json.name, agent_process); agent_process.start(profiles[i], load_memory, init_message, i, args.task_path, args.task_id); await new Promise(resolve => setTimeout(resolve, 1000)); } diff --git a/mindcraft.js b/mindcraft.js new file mode 100644 index 0000000..e4fae5b --- /dev/null +++ b/mindcraft.js @@ -0,0 +1,32 @@ +import { AgentProcess } from './src/process/agent_process.js'; +import { createMindServer } from './src/server/mindserver.js'; +import { mindserverProxy } from './src/process/mindserver_proxy.js.js'; +import { readFileSync } from 'fs'; + +let mindserver; +let connected = false; + +export async function init(host='localhost', port=8080) { + if (connected) { + console.error('Already initiliazed!'); + return; + } + mindserver = createMindServer(host, port); + mindserverProxy.connect(host, port); + connected = true; +} + +export async function connect() { + if (connected) { + console.error('Already connected!'); + return; + } +} + +export function addWorld(settings) { + +} + +export async function addAgent(settings) { + +} \ No newline at end of file diff --git a/settings.js b/settings.js index b782097..1d6c5a2 100644 --- a/settings.js +++ b/settings.js @@ -10,11 +10,10 @@ const settings = { "mindserver_port": 8080, // the base profile is shared by all bots for default prompts/examples/modes - "base_profile": "./profiles/defaults/survival.json", // also see creative.json, god_mode.json "profiles": [ - "./andy.json", + // "./andy.json", // "./profiles/gpt.json", - // "./profiles/claude.json", + "./profiles/claude.json", // "./profiles/gemini.json", // "./profiles/llama.json", // "./profiles/qwen.json", @@ -25,26 +24,32 @@ const settings = { // using more than 1 profile requires you to /msg each bot indivually // individual profiles override values from the base profile ], + + // agent settings + "base_profile": "./profiles/defaults/god_mode.json", // also see creative.json, god_mode.json "load_memory": false, // load memory from previous session "init_message": "Respond with hello world and your name", // sends to all on spawn "only_chat_with": [], // users that the bots listen to and send general messages to. if empty it will chat publicly "speak": false, // allows all bots to speak through system text-to-speech. works on windows, mac, on linux you need to `apt install espeak` "language": "en", // translate to/from this language. Supports these language names: https://cloud.google.com/translate/docs/languages - "show_bot_views": false, // show bot's view in browser at localhost:3000, 3001... - - "allow_insecure_coding": false, // allows newAction command and model can write/run code on your computer. enable at own risk "allow_vision": false, // allows vision model to interpret screenshots as inputs "blocked_actions" : ["!checkBlueprint", "!checkBlueprintLevel", "!getBlueprint", "!getBlueprintLevel"] , // commands to disable and remove from docs. Ex: ["!setMode"] - "code_timeout_mins": -1, // minutes code is allowed to run. -1 for no timeout "relevant_docs_count": 5, // number of relevant code function docs to select for prompting. -1 for all - "max_messages": 15, // max number of messages to keep in context "num_examples": 2, // number of examples to give to the model "max_commands": -1, // max number of commands that can be used in consecutive responses. -1 for no limit - "verbose_commands": true, // show full command syntax "narrate_behavior": true, // chat simple automatic actions ('Picking up item!') - "chat_bot_messages": true, // publicly chat messages to other bots "log_all_prompts": false, // log ALL prompts to file + "task": {}, + "task_file": "", + "task_name": "", + "verbose_commands": true, // show full command syntax + "chat_bot_messages": true, // publicly chat bot-to-bot messages + + // mindserver settings + "render_bot_views": false, // show bot's view in browser at localhost:3000, 3001... + "allow_insecure_coding": true, // allows newAction command and model can write/run code on your computer. enable at own risk + "code_timeout_mins": -1, // minutes code is allowed to run. -1 for no timeout } // these environment variables override certain settings diff --git a/src/agent/settings.js b/src/agent/settings.js new file mode 100644 index 0000000..e69de29 diff --git a/src/process/agent_process.js b/src/process/agent_process.js index 7418d31..603f348 100644 --- a/src/process/agent_process.js +++ b/src/process/agent_process.js @@ -1,5 +1,5 @@ import { spawn } from 'child_process'; -import { mainProxy } from './main_proxy.js'; +import { mindserverProxy } from './mindserver_proxy.js.js'; export class AgentProcess { start(profile, load_memory=false, init_message=null, count_id=0, task_path=null, task_id=null) { @@ -28,7 +28,7 @@ export class AgentProcess { agentProcess.on('exit', (code, signal) => { console.log(`Agent process exited with code ${code} and signal ${signal}`); this.running = false; - mainProxy.logoutAgent(this.name); + mindserverProxy.logoutAgent(this.name); if (code > 1) { console.log(`Ending task`); diff --git a/src/process/main_proxy.js b/src/process/mindserver_proxy.js similarity index 81% rename from src/process/main_proxy.js rename to src/process/mindserver_proxy.js index 8336458..d2d4a97 100644 --- a/src/process/main_proxy.js +++ b/src/process/mindserver_proxy.js @@ -1,23 +1,23 @@ import { io } from 'socket.io-client'; -import settings from '../../settings.js'; // Singleton mindserver proxy for the main process -class MainProxy { +// recieves commands from mindserver +class MindserverProxy { constructor() { - if (MainProxy.instance) { - return MainProxy.instance; + if (MindserverProxy.instance) { + return MindserverProxy.instance; } this.socket = null; this.connected = false; this.agent_processes = {}; - MainProxy.instance = this; + MindserverProxy.instance = this; } - connect() { + connect(host, port) { if (this.connected) return; - this.socket = io(`http://${settings.mindserver_host}:${settings.mindserver_port}`); + this.socket = io(`http://${host}:${port}`); this.connected = true; this.socket.on('stop-agent', (agentName) => { @@ -61,4 +61,4 @@ class MainProxy { } } -export const mainProxy = new MainProxy(); \ No newline at end of file +export const mindserverProxy = new MindserverProxy(); \ No newline at end of file diff --git a/src/server/mind_server.js b/src/server/mindserver.js similarity index 96% rename from src/server/mind_server.js rename to src/server/mindserver.js index eed71d7..ac54db3 100644 --- a/src/server/mind_server.js +++ b/src/server/mindserver.js @@ -4,6 +4,11 @@ import http from 'http'; import path from 'path'; import { fileURLToPath } from 'url'; +// Mindserver purposes: +// - central hub for inter-process communication between all agent processes +// - api to control from other languages and remote users +// - host for webapp + // Module-level variables let io; let server; From 088b71a99aa8a7fd7b2258a2c9f97346ff1f4ca7 Mon Sep 17 00:00:00 2001 From: Isadora White Date: Mon, 9 Jun 2025 01:35:18 -0500 Subject: [PATCH 067/101] more friendly messages in the python evaluation script to make it more easy for the users to understand what is happening --- tasks/evaluation_script.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tasks/evaluation_script.py b/tasks/evaluation_script.py index cb380f5..4b5cb3c 100644 --- a/tasks/evaluation_script.py +++ b/tasks/evaluation_script.py @@ -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"): From 6748b65fcbad0f3f5fcfe538977da6c7173ccff6 Mon Sep 17 00:00:00 2001 From: Isadora White <54700097+icwhite@users.noreply.github.com> Date: Mon, 9 Jun 2025 01:45:28 -0500 Subject: [PATCH 068/101] Update README.md --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 95f90ef..4c5b20d 100644 --- a/README.md +++ b/README.md @@ -10,15 +10,15 @@ Do not connect this bot to public servers with coding enabled. This project allo ## Requirements -- [Minecraft Java Edition](https://www.minecraft.net/en-us/store/minecraft-java-bedrock-edition-pc) (up to v1.21.1, recommend v1.20.4) -- [Node.js Installed](https://nodejs.org/) (at least v14) +- [Minecraft Java Edition](https://www.minecraft.net/en-us/store/minecraft-java-bedrock-edition-pc) (up to v1.21.1, recommend v1.21.1) +- [Node.js Installed](https://nodejs.org/) (at least v14, recommended v20.9.0) - One of these: [OpenAI API Key](https://openai.com/blog/openai-api) | [Gemini API Key](https://aistudio.google.com/app/apikey) | [Anthropic API Key](https://docs.anthropic.com/claude/docs/getting-access-to-claude) | [Replicate API Key](https://replicate.com/) | [Hugging Face API Key](https://huggingface.co/) | [Groq API Key](https://console.groq.com/keys) | [Ollama Installed](https://ollama.com/download). | [Mistral API Key](https://docs.mistral.ai/getting-started/models/models_overview/) | [Qwen API Key [Intl.]](https://www.alibabacloud.com/help/en/model-studio/developer-reference/get-api-key)/[[cn]](https://help.aliyun.com/zh/model-studio/getting-started/first-api-call-to-qwen?) | [Novita AI API Key](https://novita.ai/settings?utm_source=github_mindcraft&utm_medium=github_readme&utm_campaign=link#key-management) | ## Install and Run 1. Make sure you have the requirements above. -2. Clone or download this repository (big green button) +2. Clone or download this repository (big green button) 'git clone https://github.com/kolbytn/mindcraft.git' 3. Rename `keys.example.json` to `keys.json` and fill in your API keys (you only need one). The desired model is set in `andy.json` or other profiles. For other models refer to the table below. @@ -28,7 +28,7 @@ Do not connect this bot to public servers with coding enabled. This project allo 6. Run `node main.js` from the installed directory -If you encounter issues, check the [FAQ](https://github.com/kolbytn/mindcraft/blob/main/FAQ.md) or find support on [discord](https://discord.gg/mp73p35dzC). We are currently not very responsive to github issues. +If you encounter issues, check the [FAQ](https://github.com/kolbytn/mindcraft/blob/main/FAQ.md) or find support on [discord](https://discord.gg/mp73p35dzC). We are currently not very responsive to github issues. To run tasks please refer to [Minecollab Instructions]((minecollab.md#installation) ## Tasks From 3a43b3c03c986d6c24b6465dc1e2625ec60702f7 Mon Sep 17 00:00:00 2001 From: Isadora White <54700097+icwhite@users.noreply.github.com> Date: Mon, 9 Jun 2025 01:46:08 -0500 Subject: [PATCH 069/101] Fix a small typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4c5b20d..0835b4c 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ Do not connect this bot to public servers with coding enabled. This project allo 6. Run `node main.js` from the installed directory -If you encounter issues, check the [FAQ](https://github.com/kolbytn/mindcraft/blob/main/FAQ.md) or find support on [discord](https://discord.gg/mp73p35dzC). We are currently not very responsive to github issues. To run tasks please refer to [Minecollab Instructions]((minecollab.md#installation) +If you encounter issues, check the [FAQ](https://github.com/kolbytn/mindcraft/blob/main/FAQ.md) or find support on [discord](https://discord.gg/mp73p35dzC). We are currently not very responsive to github issues. To run tasks please refer to [Minecollab Instructions](minecollab.md#installation) ## Tasks From 3661114321343df44e62aa4651ce3a3fd312b9bd Mon Sep 17 00:00:00 2001 From: Isadora White <54700097+icwhite@users.noreply.github.com> Date: Mon, 9 Jun 2025 01:55:47 -0500 Subject: [PATCH 070/101] Clarifying instructions for installing tmux --- minecollab.md | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/minecollab.md b/minecollab.md index 019d8b1..fa2fca3 100644 --- a/minecollab.md +++ b/minecollab.md @@ -55,9 +55,20 @@ pip install -r requirements.txt Then, you can run the evaluation_script **from the project root** using `python tasks/evaluation_script.py --task_path {your-task-path} --model {model you want to use}`. +### Tmux Installation +**MacOS**: +1. If brew isn't already installed run `/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"` +2. `brew install tmux` +**Linux**: `apt-get -y install tmux` +**Windows**: You can not use tmux on Windows, but you can run tasks with the --no-launch-world flag. Run +``` +cd /tasks/server_data/ +java -jar server.jar +``` + If you want to run with vllm be sure to run with `--api vllm --url {your_url_for_vllm} --model {model_name}`, by default vllm will use http://127.0.0.1:8000/v1 as the url for quering the model! -When running with construction tasks, make sure to set the flag `--insecure_coding` so that the agents can be allowed to write freeform javascript code to complete the tasks. However, when using insecure coding it is highly recommended to use a docker container to avoid damage to your computer. +When running with construction tasks, make sure to set the flag `--insecure_coding` so that the agents can be allowed to write freeform javascript code to complete the tasks. However, when using insecure coding it is **highly recommended** to use a docker container to avoid damage to your computer. When running an experiment that requires more than 2 agents, use the `--num_agents` flag to match the number of agents in your task file. For example, if you are running a task file with 3 agents, use `--num_agents 3`. @@ -81,7 +92,7 @@ python tasks/evaluation_script.py --task_path {path_to_two_agent_construction_ta When you launch the evaluation script, you will see the minecraft server being launched. If you want to join this world, you can connect to it on the port localhost:55916 the way you would a standard Minecraft world (go to single player -> direct connection -> type in localhost:55916) It may take a few minutes for everything to be properly loaded - as first the agents need to be added to the world and given the correct permissions to use cheats and add inventory. After about 5 minutes everything should be loaded and working. If you wish to kill the experiment run `tmux kill-server`. Sometimes there will be issues copying the files, if this happens you can run the python file twice. -## Installation (without tmux) +## Windows Installation (without tmux) If you are on a machine that can't run tmux (like a Windows PC without WSL) or you don't care about doing evaluations only running tasks you can run the following script @@ -99,7 +110,7 @@ As you run, the evalaution script will evaluate the performance so far. It will ### Running multiple worlds in parallel -You can use `--num_parallel` to run multiple Minecraft worlds in parallel. This will launch `n` tmux shells, claled `server_i` and shell `i`, where `i` corresponds to ith parallel world. It will also copy worlds into `server_data_i` as well. On an M3 Mac with 34 GB of RAM, we can normally support up to 4 parallel worlds. When running an open source model, it is more likely you will be constrained by the throughput and size of your GPU RAM. On a cluster of 8 H100s you can expect to run 4 experiments in parallel. However, for best performance it is advisable to only use one parallel world. +You can use `--num_parallel` to run multiple Minecraft worlds in parallel. This will launch `n` tmux shells, called `server_i` and shell `i`, where `i` corresponds to ith parallel world. It will also copy worlds into `server_data_i` as well. On an M3 Mac with 34 GB of RAM, we can normally support up to 4 parallel worlds. When running an open source model, it is more likely you will be constrained by the throughput and size of your GPU RAM. On a cluster of 8 H100s you can expect to run 4 experiments in parallel. However, for best performance it is advisable to only use one parallel world. ### Using an S3 Bucket to store files To use S3 set the --s3 flag and the --bucket_name to use an s3 bucket to log all the files collected. It will also copy the /bots folder in this case with all of the files in there. From 00aa14ab5fbfcf2b53a6857dd76a4307b3e2f702 Mon Sep 17 00:00:00 2001 From: Isadora White <54700097+icwhite@users.noreply.github.com> Date: Mon, 9 Jun 2025 02:00:04 -0500 Subject: [PATCH 071/101] Update minecollab.md --- minecollab.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/minecollab.md b/minecollab.md index fa2fca3..5e3fb00 100644 --- a/minecollab.md +++ b/minecollab.md @@ -43,6 +43,12 @@ You can view the crafting task in action [here](https://www.youtube.com/shorts/V Please follow the installation docs in the README to install mindcraft. You can create a docker image using the Dockerfile. +If you don't own Minecraft you can run a limited version solely for offline games using these instructions: +1. Download the TLauncher https://tlauncher.org/en/ +2. Enter a username and select version 1.21.1 +3. Click "Multiplayer" and then "Direct Connection" +4. Then enter "localhost:55916" and hit `Join Server` + Download the relevant task files and server data files, you can find the link [here](https://drive.google.com/drive/folders/1XygbitBBTsNO6q_doEiZHmdETpnyRmCS). The tasks files are for specifying the tasks to run and the server data is for allowing the models to launch the task in the correct world automatically. **Unzip the server_data.zip in the base `tasks/` folder**. Then, set up your conda environment: From 5a403951d1fef71cf3109c554a22d81a05a719a8 Mon Sep 17 00:00:00 2001 From: Isadora White <54700097+icwhite@users.noreply.github.com> Date: Mon, 9 Jun 2025 02:00:36 -0500 Subject: [PATCH 072/101] Update minecollab.md --- minecollab.md | 1 + 1 file changed, 1 insertion(+) diff --git a/minecollab.md b/minecollab.md index 5e3fb00..945a4db 100644 --- a/minecollab.md +++ b/minecollab.md @@ -65,6 +65,7 @@ Then, you can run the evaluation_script **from the project root** using `python **MacOS**: 1. If brew isn't already installed run `/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"` 2. `brew install tmux` + **Linux**: `apt-get -y install tmux` **Windows**: You can not use tmux on Windows, but you can run tasks with the --no-launch-world flag. Run ``` From 447b906ce314a7b89246df86c18686bc40c59245 Mon Sep 17 00:00:00 2001 From: Isadora White <54700097+icwhite@users.noreply.github.com> Date: Mon, 9 Jun 2025 02:00:57 -0500 Subject: [PATCH 073/101] Update minecollab.md --- minecollab.md | 1 + 1 file changed, 1 insertion(+) diff --git a/minecollab.md b/minecollab.md index 945a4db..29206d4 100644 --- a/minecollab.md +++ b/minecollab.md @@ -67,6 +67,7 @@ Then, you can run the evaluation_script **from the project root** using `python 2. `brew install tmux` **Linux**: `apt-get -y install tmux` + **Windows**: You can not use tmux on Windows, but you can run tasks with the --no-launch-world flag. Run ``` cd /tasks/server_data/ From a33465ce032cbd2d620a177e3e703a255b33db89 Mon Sep 17 00:00:00 2001 From: Max Robinson Date: Tue, 10 Jun 2025 13:56:56 -0500 Subject: [PATCH 074/101] better node version --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0835b4c..07ce15a 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ Do not connect this bot to public servers with coding enabled. This project allo ## Requirements - [Minecraft Java Edition](https://www.minecraft.net/en-us/store/minecraft-java-bedrock-edition-pc) (up to v1.21.1, recommend v1.21.1) -- [Node.js Installed](https://nodejs.org/) (at least v14, recommended v20.9.0) +- [Node.js Installed](https://nodejs.org/) (at least v18) - One of these: [OpenAI API Key](https://openai.com/blog/openai-api) | [Gemini API Key](https://aistudio.google.com/app/apikey) | [Anthropic API Key](https://docs.anthropic.com/claude/docs/getting-access-to-claude) | [Replicate API Key](https://replicate.com/) | [Hugging Face API Key](https://huggingface.co/) | [Groq API Key](https://console.groq.com/keys) | [Ollama Installed](https://ollama.com/download). | [Mistral API Key](https://docs.mistral.ai/getting-started/models/models_overview/) | [Qwen API Key [Intl.]](https://www.alibabacloud.com/help/en/model-studio/developer-reference/get-api-key)/[[cn]](https://help.aliyun.com/zh/model-studio/getting-started/first-api-call-to-qwen?) | [Novita AI API Key](https://novita.ai/settings?utm_source=github_mindcraft&utm_medium=github_readme&utm_campaign=link#key-management) | ## Install and Run From 8162fc1ab183c9756f7d142e0d9b32630d8280aa Mon Sep 17 00:00:00 2001 From: MaxRobinsonTheGreat Date: Tue, 10 Jun 2025 17:52:30 -0500 Subject: [PATCH 075/101] major refactor: use mindserver to init settings --- api.js | 120 ++++++++++++++++++++-------- main.js | 2 +- mindcraft.js | 56 ++++++++++--- src/agent/agent.js | 36 ++++----- src/agent/agent_proxy.js | 73 ----------------- src/agent/coder.js | 4 +- src/agent/commands/actions.js | 4 +- src/agent/conversation.js | 7 +- src/agent/history.js | 2 +- src/agent/library/lockdown.js | 26 +++--- src/agent/mindserver_proxy.js | 107 +++++++++++++++++++++++++ src/agent/modes.js | 2 +- src/agent/settings.js | 7 ++ src/agent/tasks/tasks.js | 46 +++-------- src/agent/vision/browser_viewer.js | 4 +- src/models/prompter.js | 15 +++- src/process/agent_process.js | 25 +++--- src/process/init_agent.js | 48 +++++------ src/process/mindserver_proxy.js | 64 --------------- src/server/mindserver.js | 123 +++++++++++++---------------- src/utils/mcdata.js | 18 +++-- src/utils/translator.js | 10 ++- 22 files changed, 423 insertions(+), 376 deletions(-) delete mode 100644 src/agent/agent_proxy.js create mode 100644 src/agent/mindserver_proxy.js delete mode 100644 src/process/mindserver_proxy.js diff --git a/api.js b/api.js index ddd3ea1..25322c4 100644 --- a/api.js +++ b/api.js @@ -1,43 +1,101 @@ import * as Mindcraft from './mindcraft.js'; +import { readFileSync } from 'fs'; + await Mindcraft.init('localhost', 8080); // starts server locally -await Mindcraft.connect('ip', 'port') // connects to remote server +// await Mindcraft.connect('ip', 'port') // connects to remote server // ^ must do one of these before calling anything else -Mindcraft.addWorld( +let profile = JSON.parse(readFileSync('./profiles/gemini.json', 'utf8')); + +Mindcraft.createAgent( { - name: 'test', - minecraft_version: "1.21.1", - host: 'localhost', - port: 55916, - auth: 'offline', - - render_bot_views: false, // show bot's view in browser at localhost:3000, 3001... - allow_insecure_coding: true, // allows newAction command and model can write/run code on server. enable at own risk - code_timeout_mins: -1, // minutes code is allowed to run. -1 for no timeout - verbose_commands: true, // show full command syntax - chat_bot_messages: true, // publicly chat bot-to-bot messages - } -) -// add world for easy reuse. not super necessary, easy for user to copy world def object around. remove? - - -Mindcraft.addAgent( - { - world: 'test', world: { - minecraft_version: '', - host: '', - port: '', - auth: 'offline' + "minecraft_version": "1.21.1", // supports up to 1.21.1 + "host": "127.0.0.1", // or "localhost", "your.ip.address.here" + "port": 55916, + "auth": "offline", // or "microsoft" }, - profile: './profiles/test.json', - // profile: { - // name: 'test', - // prompt: 'test', + profile, + "base_profile": "survival", // survival | creative | god_mode + "load_memory": false, // load memory from previous session + "init_message": "Respond with hello world and your name", // sends to all on spawn + "only_chat_with": [], // users that the bots listen to and send general messages to. if empty it will chat publicly + "speak": false, // allows all bots to speak through system text-to-speech. works on windows, mac, on linux you need to `apt install espeak` + "language": "en", // translate to/from this language. Supports these language names: https://cloud.google.com/translate/docs/languages + "allow_vision": false, // allows vision model to interpret screenshots as inputs + "blocked_actions" : ["!checkBlueprint", "!checkBlueprintLevel", "!getBlueprint", "!getBlueprintLevel"] , // commands to disable and remove from docs. Ex: ["!setMode"] + "relevant_docs_count": 5, // number of relevant code function docs to select for prompting. -1 for all + "max_messages": 15, // max number of messages to keep in context + "num_examples": 2, // number of examples to give to the model + "max_commands": -1, // max number of commands that can be used in consecutive responses. -1 for no limit + "narrate_behavior": true, // chat simple automatic actions ('Picking up item!') + "log_all_prompts": false, // log ALL prompts to file + // "task": { + // "task_id": "multiagent_crafting_pink_wool_full_plan__depth_0", + // "goal": "Collaborate with other agents to craft an pink_wool", + // "conversation": "Let's work together to craft an pink_wool.", + // "initial_inventory": { + // "0": { + // "pink_dye": 1 + // } + // }, + // "agent_count": 1, + // "target": "pink_wool", + // "number_of_target": 1, + // "type": "techtree", + // "max_depth": 1, + // "depth": 0, + // "timeout": 300, + // "blocked_actions": { + // "0": [], + // }, + // "missing_items": [], + // "requires_ctable": false // }, - task: './tasks/test.json' + "verbose_commands": true, // show full command syntax + "chat_bot_messages": true, // publicly chat bot-to-bot messages + + // mindserver settings + "render_bot_view": false, // show bot's view in browser at localhost:3000, 3001... + "allow_insecure_coding": true, // allows newAction command and model can write/run code on your computer. enable at own risk + "code_timeout_mins": -1, // minutes code is allowed to run. -1 for no timeout } ) -Mindcraft.removeAgent() \ No newline at end of file +// profile = JSON.parse(readFileSync('./andy.json', 'utf8')); + +// Mindcraft.createAgent( +// { +// world: { +// "minecraft_version": "1.21.1", // supports up to 1.21.1 +// "host": "127.0.0.1", // or "localhost", "your.ip.address.here" +// "port": 55916, +// "auth": "offline", // or "microsoft" +// }, +// profile, +// "base_profile": "survival", // also see creative.json, god_mode.json +// "load_memory": false, // load memory from previous session +// "init_message": "Respond with hello world and your name", // sends to all on spawn +// "only_chat_with": [], // users that the bots listen to and send general messages to. if empty it will chat publicly +// "speak": false, // allows all bots to speak through system text-to-speech. works on windows, mac, on linux you need to `apt install espeak` +// "language": "en", // translate to/from this language. Supports these language names: https://cloud.google.com/translate/docs/languages +// "allow_vision": false, // allows vision model to interpret screenshots as inputs +// "blocked_actions" : ["!checkBlueprint", "!checkBlueprintLevel", "!getBlueprint", "!getBlueprintLevel"] , // commands to disable and remove from docs. Ex: ["!setMode"] +// "relevant_docs_count": 5, // number of relevant code function docs to select for prompting. -1 for all +// "max_messages": 15, // max number of messages to keep in context +// "num_examples": 2, // number of examples to give to the model +// "max_commands": -1, // max number of commands that can be used in consecutive responses. -1 for no limit +// "narrate_behavior": true, // chat simple automatic actions ('Picking up item!') +// "log_all_prompts": false, // log ALL prompts to file +// "task_file": "", +// "task_name": "", +// "verbose_commands": true, // show full command syntax +// "chat_bot_messages": true, // publicly chat bot-to-bot messages + +// // mindserver settings +// "render_bot_view": false, // show bot's view in browser at localhost:3000, 3001... +// "allow_insecure_coding": true, // allows newAction command and model can write/run code on your computer. enable at own risk +// "code_timeout_mins": -1, // minutes code is allowed to run. -1 for no timeout +// } +// ) \ No newline at end of file diff --git a/main.js b/main.js index 07d3808..c5e3685 100644 --- a/main.js +++ b/main.js @@ -3,7 +3,7 @@ import settings from './settings.js'; import yargs from 'yargs'; import { hideBin } from 'yargs/helpers'; import { createMindServer } from './src/server/mindserver.js'; -import { mindserverProxy } from './src/process/mindserver_proxy.js.js'; +import { mindserverProxy } from './src/process/mindserver_proxy.js'; import { readFileSync } from 'fs'; function parseArguments() { diff --git a/mindcraft.js b/mindcraft.js index e4fae5b..6ec88aa 100644 --- a/mindcraft.js +++ b/mindcraft.js @@ -1,10 +1,12 @@ +import { createMindServer, registerAgent } from './src/server/mindserver.js'; import { AgentProcess } from './src/process/agent_process.js'; -import { createMindServer } from './src/server/mindserver.js'; -import { mindserverProxy } from './src/process/mindserver_proxy.js.js'; -import { readFileSync } from 'fs'; let mindserver; let connected = false; +let agent_processes = {}; +let agent_count = 0; +let host = 'localhost'; +let port = 8080; export async function init(host='localhost', port=8080) { if (connected) { @@ -12,21 +14,55 @@ export async function init(host='localhost', port=8080) { return; } mindserver = createMindServer(host, port); - mindserverProxy.connect(host, port); + host = host; + port = port; connected = true; } -export async function connect() { - if (connected) { - console.error('Already connected!'); +export async function createAgent(settings) { + if (!settings.profile.name) { + console.error('Agent name is required in profile'); return; } + let agent_name = settings.profile.name; + registerAgent(settings); + let load_memory = settings.load_memory || false; + let init_message = settings.init_message || null; + const agentProcess = new AgentProcess(agent_name); + agentProcess.start(load_memory, init_message, agent_count, host, port); + agent_count++; + agent_processes[settings.profile.name] = agentProcess; +} + +export function getAgentProcess(agentName) { + return agent_processes[agentName]; +} + +export function startAgent(agentName) { + if (this.agent_processes[agentName]) { + this.agent_processes[agentName].continue(); + } + else { + console.error(`Cannot start agent ${agentName}; not found`); + } } -export function addWorld(settings) { - +export function stopAgent(agentName) { + if (this.agent_processes[agentName]) { + this.agent_processes[agentName].stop(); + } } -export async function addAgent(settings) { +export function shutdown() { + console.log('Shutting down'); + for (let agentName in this.agent_processes) { + this.agent_processes[agentName].stop(); + } + setTimeout(() => { + process.exit(0); + }, 2000); +} +export function logoutAgent(agentName) { + this.socket.emit('logout-agent', agentName); } \ No newline at end of file diff --git a/src/agent/agent.js b/src/agent/agent.js index 3cd671b..d490557 100644 --- a/src/agent/agent.js +++ b/src/agent/agent.js @@ -12,26 +12,21 @@ import { SelfPrompter } from './self_prompter.js'; import convoManager from './conversation.js'; import { handleTranslation, handleEnglishTranslation } from '../utils/translator.js'; import { addBrowserViewer } from './vision/browser_viewer.js'; -import settings from '../../settings.js'; -import { serverProxy } from './agent_proxy.js'; +import { serverProxy } from './mindserver_proxy.js'; +import settings from './settings.js'; import { Task } from './tasks/tasks.js'; import { say } from './speak.js'; export class Agent { - async start(profile_fp, load_mem=false, init_message=null, count_id=0, task_path=null, task_id=null) { + async start(load_mem=false, init_message=null, count_id=0) { this.last_sender = null; this.count_id = count_id; - if (!profile_fp) { - throw new Error('No profile filepath provided'); - } - - console.log('Starting agent initialization with profile:', profile_fp); // Initialize components with more detailed error handling console.log('Initializing action manager...'); this.actions = new ActionManager(this); console.log('Initializing prompter...'); - this.prompter = new Prompter(this, profile_fp); + this.prompter = new Prompter(this, settings.profile); this.name = this.prompter.getName(); console.log('Initializing history...'); this.history = new History(this); @@ -59,19 +54,15 @@ export class Agent { } else { taskStart = Date.now(); } - this.task = new Task(this, task_path, task_id, taskStart); + this.task = new Task(this, settings.task, taskStart); this.blocked_actions = settings.blocked_actions.concat(this.task.blocked_actions || []); blacklistCommands(this.blocked_actions); - serverProxy.connect(this); - console.log(this.name, 'logging into minecraft...'); this.bot = initBot(this.name); initModes(this); - - this.bot.on('login', () => { console.log(this.name, 'logged in!'); serverProxy.login(); @@ -90,6 +81,8 @@ export class Agent { try { clearTimeout(spawnTimeout); addBrowserViewer(this.bot, count_id); + console.log('Initializing vision intepreter...'); + this.vision_interpreter = new VisionInterpreter(this, settings.allow_vision); // wait for a bit so stats are not undefined await new Promise((resolve) => setTimeout(resolve, 1000)); @@ -101,22 +94,19 @@ export class Agent { this.startEvents(); if (!load_mem) { - if (task_path !== null) { + if (settings.task) { this.task.initBotTask(); this.task.setAgentGoal(); } } else { // set the goal without initializing the rest of the task - if (task_path !== null) { + if (settings.task) { this.task.setAgentGoal(); } } await new Promise((resolve) => setTimeout(resolve, 10000)); this.checkAllPlayersPresent(); - - console.log('Initializing vision intepreter...'); - this.vision_interpreter = new VisionInterpreter(this, settings.allow_vision); } catch (error) { console.error('Error in spawn event:', error); @@ -160,8 +150,12 @@ export class Agent { this.respondFunc = respondFunc; this.bot.on('whisper', respondFunc); - if (settings.profiles.length === 1) - this.bot.on('chat', respondFunc); + + this.bot.on('chat', (username, message) => { + if (serverProxy.getNumOtherAgents() > 0) return; + // only respond to open chat messages when there are no other agents + respondFunc(username, message); + }); // Set up auto-eat this.bot.autoEat.options = { diff --git a/src/agent/agent_proxy.js b/src/agent/agent_proxy.js deleted file mode 100644 index b0333b1..0000000 --- a/src/agent/agent_proxy.js +++ /dev/null @@ -1,73 +0,0 @@ -import { io } from 'socket.io-client'; -import convoManager from './conversation.js'; -import settings from '../../settings.js'; - -class AgentServerProxy { - constructor() { - if (AgentServerProxy.instance) { - return AgentServerProxy.instance; - } - - this.socket = null; - this.connected = false; - AgentServerProxy.instance = this; - } - - connect(agent) { - if (this.connected) return; - - this.agent = agent; - - this.socket = io(`http://${settings.mindserver_host}:${settings.mindserver_port}`); - this.connected = true; - - this.socket.on('connect', () => { - console.log('Connected to MindServer'); - }); - - this.socket.on('disconnect', () => { - console.log('Disconnected from MindServer'); - this.connected = false; - }); - - this.socket.on('chat-message', (agentName, json) => { - convoManager.receiveFromBot(agentName, json); - }); - - this.socket.on('agents-update', (agents) => { - convoManager.updateAgents(agents); - }); - - this.socket.on('restart-agent', (agentName) => { - console.log(`Restarting agent: ${agentName}`); - this.agent.cleanKill(); - }); - - this.socket.on('send-message', (agentName, message) => { - try { - this.agent.respondFunc("NO USERNAME", message); - } catch (error) { - console.error('Error: ', JSON.stringify(error, Object.getOwnPropertyNames(error))); - } - }); - } - - login() { - this.socket.emit('login-agent', this.agent.name); - } - - shutdown() { - this.socket.emit('shutdown'); - } - - getSocket() { - return this.socket; - } -} - -// Create and export a singleton instance -export const serverProxy = new AgentServerProxy(); - -export function sendBotChatToServer(agentName, json) { - serverProxy.getSocket().emit('chat-message', agentName, json); -} diff --git a/src/agent/coder.js b/src/agent/coder.js index 956c8fe..18a5f26 100644 --- a/src/agent/coder.js +++ b/src/agent/coder.js @@ -1,6 +1,5 @@ import { writeFile, readFile, mkdirSync } from 'fs'; -import settings from '../../settings.js'; -import { makeCompartment } from './library/lockdown.js'; +import { makeCompartment, lockdown } from './library/lockdown.js'; import * as skills from './library/skills.js'; import * as world from './library/world.js'; import { Vec3 } from 'vec3'; @@ -27,6 +26,7 @@ export class Coder { async generateCode(agent_history) { this.agent.bot.modes.pause('unstuck'); + lockdown(); // this message history is transient and only maintained in this function let messages = agent_history.getHistory(); messages.push({role: 'system', content: 'Code generation started. Write code in codeblock in your response:'}); diff --git a/src/agent/commands/actions.js b/src/agent/commands/actions.js index b2b3ccb..e321764 100644 --- a/src/agent/commands/actions.js +++ b/src/agent/commands/actions.js @@ -1,5 +1,5 @@ import * as skills from '../library/skills.js'; -import settings from '../../../settings.js'; +import settings from '../settings.js'; import convoManager from '../conversation.js'; @@ -46,7 +46,7 @@ export const actionsList = [ result = 'Error generating code: ' + e.toString(); } }; - await agent.actions.runAction('action:newAction', actionFn); + await agent.actions.runAction('action:newAction', actionFn, {timeout: settings.code_timeout_mins}); return result; } }, diff --git a/src/agent/conversation.js b/src/agent/conversation.js index 41c6888..1cd781e 100644 --- a/src/agent/conversation.js +++ b/src/agent/conversation.js @@ -1,10 +1,9 @@ -import settings from '../../settings.js'; -import { readFileSync } from 'fs'; +import settings from './settings.js'; import { containsCommand } from './commands/index.js'; -import { sendBotChatToServer } from './agent_proxy.js'; +import { sendBotChatToServer } from './mindserver_proxy.js'; let agent; -let agent_names = settings.profiles.map((p) => JSON.parse(readFileSync(p, 'utf8')).name); +let agent_names = []; let agents_in_game = []; class Conversation { diff --git a/src/agent/history.js b/src/agent/history.js index 13b9c79..04a72f7 100644 --- a/src/agent/history.js +++ b/src/agent/history.js @@ -1,6 +1,6 @@ import { writeFileSync, readFileSync, mkdirSync, existsSync } from 'fs'; import { NPCData } from './npc/data.js'; -import settings from '../../settings.js'; +import settings from './settings.js'; export class History { diff --git a/src/agent/library/lockdown.js b/src/agent/library/lockdown.js index 2d8f79d..2db7e3f 100644 --- a/src/agent/library/lockdown.js +++ b/src/agent/library/lockdown.js @@ -4,16 +4,22 @@ import 'ses'; // We disable some of the taming to allow for more flexibility // For configuration, see https://github.com/endojs/endo/blob/master/packages/ses/docs/lockdown.md -lockdown({ - // basic devex and quality of life improvements - localeTaming: 'unsafe', - consoleTaming: 'unsafe', - errorTaming: 'unsafe', - stackFiltering: 'verbose', - // allow eval outside of created compartments - // (mineflayer dep "protodef" uses eval) - evalTaming: 'unsafeEval', -}); + +let lockeddown = false; +export function lockdown() { + if (lockeddown) return; + lockeddown = true; + lockdown({ + // basic devex and quality of life improvements + localeTaming: 'unsafe', + consoleTaming: 'unsafe', + errorTaming: 'unsafe', + stackFiltering: 'verbose', + // allow eval outside of created compartments + // (mineflayer dep "protodef" uses eval) + evalTaming: 'unsafeEval', + }); +} export const makeCompartment = (endowments = {}) => { return new Compartment({ diff --git a/src/agent/mindserver_proxy.js b/src/agent/mindserver_proxy.js new file mode 100644 index 0000000..59f043a --- /dev/null +++ b/src/agent/mindserver_proxy.js @@ -0,0 +1,107 @@ +import { io } from 'socket.io-client'; +import convoManager from './conversation.js'; +import { setSettings } from './settings.js'; + +class MindServerProxy { + constructor() { + if (MindServerProxy.instance) { + return MindServerProxy.instance; + } + + this.socket = null; + this.connected = false; + this.agents = []; + MindServerProxy.instance = this; + } + + async connect(name, host, port) { + if (this.connected) return; + + this.name = name; + + this.socket = io(`http://${host}:${port}`); + this.connected = true; + + this.socket.on('connect', () => { + console.log(name, 'connected to MindServer'); + }); + + this.socket.on('disconnect', () => { + console.log('Disconnected from MindServer'); + this.connected = false; + }); + + this.socket.on('chat-message', (agentName, json) => { + convoManager.receiveFromBot(agentName, json); + }); + + this.socket.on('agents-update', (agents) => { + this.agents = agents; + convoManager.updateAgents(agents); + if (this.agent?.task) { + console.log(this.agent.name, 'updating available agents'); + this.agent.task.updateAvailableAgents(agents); + } + }); + + this.socket.on('restart-agent', (agentName) => { + console.log(`Restarting agent: ${agentName}`); + this.agent.cleanKill(); + }); + + this.socket.on('send-message', (agentName, message) => { + try { + this.agent.respondFunc("NO USERNAME", message); + } catch (error) { + console.error('Error: ', JSON.stringify(error, Object.getOwnPropertyNames(error))); + } + }); + + // Request settings and wait for response + await new Promise((resolve, reject) => { + const timeout = setTimeout(() => { + reject(new Error('Settings request timed out after 10 seconds')); + }, 10000); + + this.socket.emit('get-settings', name, (response) => { + clearTimeout(timeout); + if (response.error) { + return reject(new Error(response.error)); + } + setSettings(response.settings); + resolve(); + }); + }); + } + + setAgent(agent) { + this.agent = agent; + } + + getAgents() { + return this.agents; + } + + getNumOtherAgents() { + return this.agents.length - 1; + } + + login() { + this.socket.emit('login-agent', this.agent.name); + } + + shutdown() { + this.socket.emit('shutdown'); + } + + getSocket() { + return this.socket; + } +} + +// Create and export a singleton instance +export const serverProxy = new MindServerProxy(); + +export function sendBotChatToServer(agentName, json) { + serverProxy.getSocket().emit('chat-message', agentName, json); +} diff --git a/src/agent/modes.js b/src/agent/modes.js index 69b2f06..dc2b925 100644 --- a/src/agent/modes.js +++ b/src/agent/modes.js @@ -1,7 +1,7 @@ import * as skills from './library/skills.js'; import * as world from './library/world.js'; import * as mc from '../utils/mcdata.js'; -import settings from '../../settings.js' +import settings from './settings.js' import convoManager from './conversation.js'; async function say(agent, message) { diff --git a/src/agent/settings.js b/src/agent/settings.js index e69de29..e9fd133 100644 --- a/src/agent/settings.js +++ b/src/agent/settings.js @@ -0,0 +1,7 @@ +// extremely lightweight obj that can be imported/modified by any file +let settings = {}; +export default settings; +export function setSettings(new_settings) { + Object.keys(settings).forEach(key => delete settings[key]); + Object.assign(settings, new_settings); +} diff --git a/src/agent/tasks/tasks.js b/src/agent/tasks/tasks.js index 1c00d95..2234d59 100644 --- a/src/agent/tasks/tasks.js +++ b/src/agent/tasks/tasks.js @@ -1,7 +1,6 @@ import { readFileSync , writeFileSync, existsSync} from 'fs'; import { executeCommand } from '../commands/index.js'; import { getPosition } from '../library/world.js'; -import settings from '../../../settings.js'; import { ConstructionTaskValidator, Blueprint } from './construction_tasks.js'; import { CookingTaskInitiator } from './cooking_tasks.js'; @@ -233,27 +232,26 @@ class CookingCraftingTaskValidator { } export class Task { - constructor(agent, task_path, task_id, taskStartTime = null) { + constructor(agent, task_data, taskStartTime = null) { this.agent = agent; this.data = null; if (taskStartTime !== null) this.taskStartTime = taskStartTime; else this.taskStartTime = Date.now(); - console.log("Task start time set to", this.taskStartTime); this.validator = null; this.reset_function = null; this.blocked_actions = []; - this.task_id = task_id; - - if (task_path && task_id) { - console.log('Starting task', task_id); - if (task_id.endsWith('hells_kitchen')) { + this.task_data = task_data; + if (task_data) { + console.log('Starting task', task_data.task_id); + console.log("Task start time set to", this.taskStartTime); + if (task_data.task_id.endsWith('hells_kitchen')) { // Reset hells_kitchen progress when a new task starts - hellsKitchenProgressManager.resetTask(task_id); + hellsKitchenProgressManager.resetTask(task_data.task_id); console.log('Reset Hells Kitchen progress for new task'); } - this.data = this.loadTask(task_path, task_id); + this.data = task_data; this.task_type = this.data.type; if (this.task_type === 'construction' && this.data.blueprint) { this.blueprint = new Blueprint(this.data.blueprint); @@ -300,7 +298,11 @@ export class Task { } this.name = this.agent.name; - this.available_agents = settings.profiles.map((p) => JSON.parse(readFileSync(p, 'utf8')).name); + this.available_agents = [] + } + + updateAvailableAgents(agents) { + this.available_agents = agents } // Add this method if you want to manually reset the hells_kitchen progress @@ -360,28 +362,6 @@ export class Task { return null; } - loadTask(task_path, task_id) { - try { - const tasksFile = readFileSync(task_path, 'utf8'); - const tasks = JSON.parse(tasksFile); - let task = tasks[task_id]; - task['task_id'] = task_id; - console.log(task); - console.log(this.agent.count_id); - if (!task) { - throw new Error(`Task ${task_id} not found`); - } - // if ((!task.agent_count || task.agent_count <= 1) && this.agent.count_id > 0) { - // task = null; - // } - - return task; - } catch (error) { - console.error('Error loading task:', error); - process.exit(1); - } - } - isDone() { let res = null; if (this.validator) diff --git a/src/agent/vision/browser_viewer.js b/src/agent/vision/browser_viewer.js index 9ae7c7b..6cce3ed 100644 --- a/src/agent/vision/browser_viewer.js +++ b/src/agent/vision/browser_viewer.js @@ -1,8 +1,8 @@ -import settings from '../../../settings.js'; +import settings from '../settings.js'; import prismarineViewer from 'prismarine-viewer'; const mineflayerViewer = prismarineViewer.mineflayer; export function addBrowserViewer(bot, count_id) { - if (settings.show_bot_views) + if (settings.render_bot_view) mineflayerViewer(bot, { port: 3000+count_id, firstPerson: true, }); } \ No newline at end of file diff --git a/src/models/prompter.js b/src/models/prompter.js index e05f5a8..ebdf521 100644 --- a/src/models/prompter.js +++ b/src/models/prompter.js @@ -4,7 +4,7 @@ import { getCommandDocs } from '../agent/commands/index.js'; import { SkillLibrary } from "../agent/library/skill_library.js"; import { stringifyTurns } from '../utils/text.js'; import { getCommand } from '../agent/commands/index.js'; -import settings from '../../settings.js'; +import settings from '../agent/settings.js'; import { Gemini } from './gemini.js'; import { GPT } from './gpt.js'; @@ -30,11 +30,18 @@ const __filename = fileURLToPath(import.meta.url); const __dirname = path.dirname(__filename); export class Prompter { - constructor(agent, fp) { + constructor(agent, profile) { this.agent = agent; - this.profile = JSON.parse(readFileSync(fp, 'utf8')); + this.profile = profile; let default_profile = JSON.parse(readFileSync('./profiles/defaults/_default.json', 'utf8')); - let base_fp = settings.base_profile; + let base_fp = ''; + if (settings.base_profile === 'survival') { + base_fp = './profiles/defaults/survival.json'; + } else if (settings.base_profile === 'creative') { + base_fp = './profiles/defaults/creative.json'; + } else if (settings.base_profile === 'god_mode') { + base_fp = './profiles/defaults/god_mode.json'; + } let base_profile = JSON.parse(readFileSync(base_fp, 'utf8')); // first use defaults to fill in missing values in the base profile diff --git a/src/process/agent_process.js b/src/process/agent_process.js index 603f348..7dc7e05 100644 --- a/src/process/agent_process.js +++ b/src/process/agent_process.js @@ -1,23 +1,24 @@ import { spawn } from 'child_process'; -import { mindserverProxy } from './mindserver_proxy.js.js'; +import { logoutAgent } from '../server/mindserver.js'; export class AgentProcess { - start(profile, load_memory=false, init_message=null, count_id=0, task_path=null, task_id=null) { - this.profile = profile; + constructor(name) { + this.name = name; + } + + start(load_memory=false, init_message=null, count_id=0, host, port) { this.count_id = count_id; this.running = true; let args = ['src/process/init_agent.js', this.name]; - args.push('-p', profile); + args.push('-n', this.name); args.push('-c', count_id); if (load_memory) args.push('-l', load_memory); if (init_message) args.push('-m', init_message); - if (task_path) - args.push('-t', task_path); - if (task_id) - args.push('-i', task_id); + args.push('-h', host); + args.push('-p', port); const agentProcess = spawn('node', args, { stdio: 'inherit', @@ -28,7 +29,7 @@ export class AgentProcess { agentProcess.on('exit', (code, signal) => { console.log(`Agent process exited with code ${code} and signal ${signal}`); this.running = false; - mindserverProxy.logoutAgent(this.name); + logoutAgent(this.name); if (code > 1) { console.log(`Ending task`); @@ -38,11 +39,11 @@ export class AgentProcess { if (code !== 0 && signal !== 'SIGINT') { // agent must run for at least 10 seconds before restarting if (Date.now() - last_restart < 10000) { - console.error(`Agent process ${profile} exited too quickly and will not be restarted.`); + console.error(`Agent process exited too quickly and will not be restarted.`); return; } console.log('Restarting agent...'); - this.start(profile, true, 'Agent process restarted.', count_id, task_path, task_id); + this.start(true, 'Agent process restarted.', count_id, host, port); last_restart = Date.now(); } }); @@ -61,7 +62,7 @@ export class AgentProcess { continue() { if (!this.running) { - this.start(this.profile, true, 'Agent process restarted.', this.count_id); + this.start(true, 'Agent process restarted.', this.count_id); } } } \ No newline at end of file diff --git a/src/process/init_agent.js b/src/process/init_agent.js index da79189..1af31b1 100644 --- a/src/process/init_agent.js +++ b/src/process/init_agent.js @@ -1,16 +1,7 @@ import { Agent } from '../agent/agent.js'; +import { serverProxy } from '../agent/mindserver_proxy.js'; import yargs from 'yargs'; -// Add global unhandled rejection handler -process.on('unhandledRejection', (reason, promise) => { - console.error('Unhandled Rejection at:', { - promise: promise, - reason: reason, - stack: reason?.stack || 'No stack trace' - }); - process.exit(1); -}); - const args = process.argv.slice(2); if (args.length < 1) { console.log('Usage: node init_agent.js [profile] [load_memory] [init_message]'); @@ -18,10 +9,10 @@ if (args.length < 1) { } const argv = yargs(args) - .option('profile', { - alias: 'p', + .option('name', { + alias: 'n', type: 'string', - description: 'profile filepath to use for agent' + description: 'name of agent' }) .option('load_memory', { alias: 'l', @@ -33,29 +24,32 @@ const argv = yargs(args) type: 'string', description: 'automatically prompt the agent on startup' }) - .option('task_path', { - alias: 't', - type: 'string', - description: 'task filepath to use for agent' - }) - .option('task_id', { - alias: 'i', - type: 'string', - description: 'task ID to execute' - }) .option('count_id', { alias: 'c', type: 'number', default: 0, description: 'identifying count for multi-agent scenarios', - }).argv; + }) + .option('host', { + alias: 'h', + type: 'string', + description: 'host of mindserver' + }) + .option('port', { + alias: 'p', + type: 'number', + description: 'port of mindserver' + }) + .argv; -// Wrap agent start in async IIFE with proper error handling (async () => { try { - console.log('Starting agent with profile:', argv.profile); + console.log('Connecting to MindServer'); + await serverProxy.connect(argv.name, argv.host, argv.port); + console.log('Starting agent'); const agent = new Agent(); - await agent.start(argv.profile, argv.load_memory, argv.init_message, argv.count_id, argv.task_path, argv.task_id); + serverProxy.setAgent(agent); + await agent.start(argv.load_memory, argv.init_message, argv.count_id); } catch (error) { console.error('Failed to start agent process:'); console.error(error.message); diff --git a/src/process/mindserver_proxy.js b/src/process/mindserver_proxy.js deleted file mode 100644 index d2d4a97..0000000 --- a/src/process/mindserver_proxy.js +++ /dev/null @@ -1,64 +0,0 @@ -import { io } from 'socket.io-client'; - -// Singleton mindserver proxy for the main process -// recieves commands from mindserver -class MindserverProxy { - constructor() { - if (MindserverProxy.instance) { - return MindserverProxy.instance; - } - - this.socket = null; - this.connected = false; - this.agent_processes = {}; - MindserverProxy.instance = this; - } - - connect(host, port) { - if (this.connected) return; - - this.socket = io(`http://${host}:${port}`); - this.connected = true; - - this.socket.on('stop-agent', (agentName) => { - if (this.agent_processes[agentName]) { - this.agent_processes[agentName].stop(); - } - }); - - this.socket.on('start-agent', (agentName) => { - if (this.agent_processes[agentName]) { - this.agent_processes[agentName].continue(); - } - }); - - this.socket.on('register-agents-success', () => { - console.log('Agents registered'); - }); - - this.socket.on('shutdown', () => { - console.log('Shutting down'); - for (let agentName in this.agent_processes) { - this.agent_processes[agentName].stop(); - } - setTimeout(() => { - process.exit(0); - }, 2000); - }); - } - - addAgent(agent) { - this.agent_processes.push(agent); - } - - logoutAgent(agentName) { - this.socket.emit('logout-agent', agentName); - } - - registerAgent(name, process) { - this.socket.emit('register-agents', [name]); - this.agent_processes[name] = process; - } -} - -export const mindserverProxy = new MindserverProxy(); \ No newline at end of file diff --git a/src/server/mindserver.js b/src/server/mindserver.js index ac54db3..035354e 100644 --- a/src/server/mindserver.js +++ b/src/server/mindserver.js @@ -3,21 +3,41 @@ import express from 'express'; import http from 'http'; import path from 'path'; import { fileURLToPath } from 'url'; +import * as mindcraft from '../../mindcraft.js'; -// Mindserver purposes: -// - central hub for inter-process communication between all agent processes +// Mindserver is: +// - central hub for communication between all agent processes // - api to control from other languages and remote users // - host for webapp // Module-level variables let io; let server; -const registeredAgents = new Set(); -const inGameAgents = {}; -const agentManagers = {}; // socket for main process that registers/controls agents +const agent_connections = {}; + +class AgentConnection { + constructor(settings) { + this.socket = null; + this.settings = settings; + this.in_game = false; + } + +} + +export function registerAgent(settings) { + let agentConnection = new AgentConnection(settings); + agent_connections[settings.profile.name] = agentConnection; +} + +export function logoutAgent(agentName) { + if (agent_connections[agentName]) { + agent_connections[agentName].in_game = false; + agentsUpdate(); + } +} // Initialize the server -export function createMindServer(port = 8080) { +export function createMindServer(host = 'localhost', port = 8080) { const app = express(); server = http.createServer(app); io = new Server(server); @@ -33,109 +53,90 @@ export function createMindServer(port = 8080) { agentsUpdate(socket); - socket.on('register-agents', (agentNames) => { - console.log(`Registering agents: ${agentNames}`); - agentNames.forEach(name => registeredAgents.add(name)); - for (let name of agentNames) { - agentManagers[name] = socket; + socket.on('get-settings', (agentName, callback) => { + if (agent_connections[agentName]) { + callback({ settings: agent_connections[agentName].settings }); + } else { + callback({ error: `Agent '${agentName}' not found.` }); } - socket.emit('register-agents-success'); - agentsUpdate(); }); socket.on('login-agent', (agentName) => { - if (curAgentName && curAgentName !== agentName) { - console.warn(`Agent ${agentName} already logged in as ${curAgentName}`); - return; - } - if (registeredAgents.has(agentName)) { + if (agent_connections[agentName]) { + agent_connections[agentName].socket = socket; + agent_connections[agentName].in_game = true; curAgentName = agentName; - inGameAgents[agentName] = socket; agentsUpdate(); - } else { - console.warn(`Agent ${agentName} not registered`); + } + else { + console.warn(`Unregistered agent ${agentName} tried to login`); } }); socket.on('logout-agent', (agentName) => { - if (inGameAgents[agentName]) { - delete inGameAgents[agentName]; + if (agent_connections[agentName]) { + agent_connections[agentName].in_game = false; agentsUpdate(); } }); socket.on('disconnect', () => { console.log('Client disconnected'); - if (inGameAgents[curAgentName]) { - delete inGameAgents[curAgentName]; + if (agent_connections[curAgentName]) { + agent_connections[curAgentName].in_game = false; agentsUpdate(); } }); socket.on('chat-message', (agentName, json) => { - if (!inGameAgents[agentName]) { + if (!agent_connections[agentName]) { console.warn(`Agent ${agentName} tried to send a message but is not logged in`); return; } console.log(`${curAgentName} sending message to ${agentName}: ${json.message}`); - inGameAgents[agentName].emit('chat-message', curAgentName, json); + agent_connections[agentName].socket.emit('chat-message', curAgentName, json); }); socket.on('restart-agent', (agentName) => { console.log(`Restarting agent: ${agentName}`); - inGameAgents[agentName].emit('restart-agent'); + agent_connections[agentName].socket.emit('restart-agent'); }); socket.on('stop-agent', (agentName) => { - let manager = agentManagers[agentName]; - if (manager) { - manager.emit('stop-agent', agentName); - } - else { - console.warn(`Stopping unregisterd agent ${agentName}`); - } + mindcraft.stopAgent(agentName); }); socket.on('start-agent', (agentName) => { - let manager = agentManagers[agentName]; - if (manager) { - manager.emit('start-agent', agentName); - } - else { - console.warn(`Starting unregisterd agent ${agentName}`); - } + mindcraft.startAgent(agentName); }); socket.on('stop-all-agents', () => { console.log('Killing all agents'); - stopAllAgents(); + for (let agentName in agent_connections) { + mindcraft.stopAgent(agentName); + } }); socket.on('shutdown', () => { console.log('Shutting down'); - for (let manager of Object.values(agentManagers)) { - manager.emit('shutdown'); - } - setTimeout(() => { - process.exit(0); - }, 2000); + process.exit(0); }); socket.on('send-message', (agentName, message) => { - if (!inGameAgents[agentName]) { - console.warn(`Agent ${agentName} not logged in, cannot send message via MindServer.`); + if (!agent_connections[agentName]) { + console.warn(`Agent ${agentName} not in game, cannot send message via MindServer.`); return } try { console.log(`Sending message to agent ${agentName}: ${message}`); - inGameAgents[agentName].emit('send-message', agentName, message) + agent_connections[agentName].socket.emit('send-message', agentName, message) } catch (error) { console.error('Error: ', error); } }); }); - server.listen(port, 'localhost', () => { + server.listen(port, host, () => { console.log(`MindServer running on port ${port}`); }); @@ -147,22 +148,12 @@ function agentsUpdate(socket) { socket = io; } let agents = []; - registeredAgents.forEach(name => { - agents.push({name, in_game: !!inGameAgents[name]}); - }); + for (let agentName in agent_connections) { + agents.push({name: agentName, in_game: agent_connections[agentName].in_game}); + }; socket.emit('agents-update', agents); } -function stopAllAgents() { - for (const agentName in inGameAgents) { - let manager = agentManagers[agentName]; - if (manager) { - manager.emit('stop-agent', agentName); - } - } -} - // Optional: export these if you need access to them from other files export const getIO = () => io; export const getServer = () => server; -export const getConnectedAgents = () => connectedAgents; diff --git a/src/utils/mcdata.js b/src/utils/mcdata.js index 1b79d3e..f79092c 100644 --- a/src/utils/mcdata.js +++ b/src/utils/mcdata.js @@ -1,5 +1,5 @@ import minecraftData from 'minecraft-data'; -import settings from '../../settings.js'; +import settings from '../agent/settings.js'; import { createBot } from 'mineflayer'; import prismarine_items from 'prismarine-item'; import { pathfinder } from 'mineflayer-pathfinder'; @@ -8,10 +8,9 @@ import { plugin as collectblock } from 'mineflayer-collectblock'; import { plugin as autoEat } from 'mineflayer-auto-eat'; import plugin from 'mineflayer-armor-manager'; const armorManager = plugin; - -const mc_version = settings.minecraft_version; -const mcdata = minecraftData(mc_version); -const Item = prismarine_items(mc_version); +let mc_version = null; +let mcdata = null; +let Item = null; /** * @typedef {string} ItemName @@ -54,12 +53,15 @@ export const WOOL_COLORS = [ export function initBot(username) { + mc_version = settings.world.minecraft_version; + mcdata = minecraftData(mc_version); + Item = prismarine_items(mc_version); let bot = createBot({ username: username, - host: settings.host, - port: settings.port, - auth: settings.auth, + host: settings.world.host, + port: settings.world.port, + auth: settings.world.auth, version: mc_version, }); diff --git a/src/utils/translator.js b/src/utils/translator.js index bc9cc77..3ebd566 100644 --- a/src/utils/translator.js +++ b/src/utils/translator.js @@ -1,10 +1,11 @@ import translate from 'google-translate-api-x'; -import settings from '../../settings.js'; +import settings from '../agent/settings.js'; + -const preferred_lang = String(settings.language).toLowerCase(); export async function handleTranslation(message) { - if (preferred_lang === 'en' || preferred_lang === 'english') + let preferred_lang = String(settings.language).toLowerCase(); + if (!preferred_lang || preferred_lang === 'en' || preferred_lang === 'english') return message; try { const translation = await translate(message, { to: preferred_lang }); @@ -16,7 +17,8 @@ export async function handleTranslation(message) { } export async function handleEnglishTranslation(message) { - if (preferred_lang === 'en' || preferred_lang === 'english') + let preferred_lang = String(settings.language).toLowerCase(); + if (!preferred_lang || preferred_lang === 'en' || preferred_lang === 'english') return message; try { const translation = await translate(message, { to: 'english' }); From 0f5dd0cb07c745ab864cc62cd83dcd5284dcae32 Mon Sep 17 00:00:00 2001 From: MaxRobinsonTheGreat Date: Wed, 11 Jun 2025 16:41:54 -0500 Subject: [PATCH 076/101] create-agent endpoint from ui --- api.js | 101 -------------------- main.js | 72 ++++++++------ settings.js | 37 +------ src/agent/agent.js | 10 +- src/agent/mindserver_proxy.js | 17 ++-- src/mindcraft/default_settings.json | 25 +++++ mindcraft.js => src/mindcraft/mindcraft.js | 25 +++-- src/{server => mindcraft}/mindserver.js | 33 +++++-- src/{server => mindcraft}/public/index.html | 34 +++++++ src/models/prompter.js | 6 +- src/process/agent_process.js | 14 +-- src/utils/mcdata.js | 8 +- 12 files changed, 167 insertions(+), 215 deletions(-) delete mode 100644 api.js create mode 100644 src/mindcraft/default_settings.json rename mindcraft.js => src/mindcraft/mindcraft.js (65%) rename src/{server => mindcraft}/mindserver.js (81%) rename src/{server => mindcraft}/public/index.html (72%) diff --git a/api.js b/api.js deleted file mode 100644 index 25322c4..0000000 --- a/api.js +++ /dev/null @@ -1,101 +0,0 @@ -import * as Mindcraft from './mindcraft.js'; -import { readFileSync } from 'fs'; - - -await Mindcraft.init('localhost', 8080); // starts server locally -// await Mindcraft.connect('ip', 'port') // connects to remote server -// ^ must do one of these before calling anything else - -let profile = JSON.parse(readFileSync('./profiles/gemini.json', 'utf8')); - -Mindcraft.createAgent( - { - world: { - "minecraft_version": "1.21.1", // supports up to 1.21.1 - "host": "127.0.0.1", // or "localhost", "your.ip.address.here" - "port": 55916, - "auth": "offline", // or "microsoft" - }, - profile, - "base_profile": "survival", // survival | creative | god_mode - "load_memory": false, // load memory from previous session - "init_message": "Respond with hello world and your name", // sends to all on spawn - "only_chat_with": [], // users that the bots listen to and send general messages to. if empty it will chat publicly - "speak": false, // allows all bots to speak through system text-to-speech. works on windows, mac, on linux you need to `apt install espeak` - "language": "en", // translate to/from this language. Supports these language names: https://cloud.google.com/translate/docs/languages - "allow_vision": false, // allows vision model to interpret screenshots as inputs - "blocked_actions" : ["!checkBlueprint", "!checkBlueprintLevel", "!getBlueprint", "!getBlueprintLevel"] , // commands to disable and remove from docs. Ex: ["!setMode"] - "relevant_docs_count": 5, // number of relevant code function docs to select for prompting. -1 for all - "max_messages": 15, // max number of messages to keep in context - "num_examples": 2, // number of examples to give to the model - "max_commands": -1, // max number of commands that can be used in consecutive responses. -1 for no limit - "narrate_behavior": true, // chat simple automatic actions ('Picking up item!') - "log_all_prompts": false, // log ALL prompts to file - // "task": { - // "task_id": "multiagent_crafting_pink_wool_full_plan__depth_0", - // "goal": "Collaborate with other agents to craft an pink_wool", - // "conversation": "Let's work together to craft an pink_wool.", - // "initial_inventory": { - // "0": { - // "pink_dye": 1 - // } - // }, - // "agent_count": 1, - // "target": "pink_wool", - // "number_of_target": 1, - // "type": "techtree", - // "max_depth": 1, - // "depth": 0, - // "timeout": 300, - // "blocked_actions": { - // "0": [], - // }, - // "missing_items": [], - // "requires_ctable": false - // }, - "verbose_commands": true, // show full command syntax - "chat_bot_messages": true, // publicly chat bot-to-bot messages - - // mindserver settings - "render_bot_view": false, // show bot's view in browser at localhost:3000, 3001... - "allow_insecure_coding": true, // allows newAction command and model can write/run code on your computer. enable at own risk - "code_timeout_mins": -1, // minutes code is allowed to run. -1 for no timeout - } -) - -// profile = JSON.parse(readFileSync('./andy.json', 'utf8')); - -// Mindcraft.createAgent( -// { -// world: { -// "minecraft_version": "1.21.1", // supports up to 1.21.1 -// "host": "127.0.0.1", // or "localhost", "your.ip.address.here" -// "port": 55916, -// "auth": "offline", // or "microsoft" -// }, -// profile, -// "base_profile": "survival", // also see creative.json, god_mode.json -// "load_memory": false, // load memory from previous session -// "init_message": "Respond with hello world and your name", // sends to all on spawn -// "only_chat_with": [], // users that the bots listen to and send general messages to. if empty it will chat publicly -// "speak": false, // allows all bots to speak through system text-to-speech. works on windows, mac, on linux you need to `apt install espeak` -// "language": "en", // translate to/from this language. Supports these language names: https://cloud.google.com/translate/docs/languages -// "allow_vision": false, // allows vision model to interpret screenshots as inputs -// "blocked_actions" : ["!checkBlueprint", "!checkBlueprintLevel", "!getBlueprint", "!getBlueprintLevel"] , // commands to disable and remove from docs. Ex: ["!setMode"] -// "relevant_docs_count": 5, // number of relevant code function docs to select for prompting. -1 for all -// "max_messages": 15, // max number of messages to keep in context -// "num_examples": 2, // number of examples to give to the model -// "max_commands": -1, // max number of commands that can be used in consecutive responses. -1 for no limit -// "narrate_behavior": true, // chat simple automatic actions ('Picking up item!') -// "log_all_prompts": false, // log ALL prompts to file -// "task_file": "", -// "task_name": "", -// "verbose_commands": true, // show full command syntax -// "chat_bot_messages": true, // publicly chat bot-to-bot messages - -// // mindserver settings -// "render_bot_view": false, // show bot's view in browser at localhost:3000, 3001... -// "allow_insecure_coding": true, // allows newAction command and model can write/run code on your computer. enable at own risk -// "code_timeout_mins": -1, // minutes code is allowed to run. -1 for no timeout -// } -// ) \ No newline at end of file diff --git a/main.js b/main.js index c5e3685..10b3e28 100644 --- a/main.js +++ b/main.js @@ -1,9 +1,7 @@ -import { AgentProcess } from './src/process/agent_process.js'; +import * as Mindcraft from './src/mindcraft/mindcraft.js'; import settings from './settings.js'; import yargs from 'yargs'; import { hideBin } from 'yargs/helpers'; -import { createMindServer } from './src/server/mindserver.js'; -import { mindserverProxy } from './src/process/mindserver_proxy.js'; import { readFileSync } from 'fs'; function parseArguments() { @@ -24,35 +22,51 @@ function parseArguments() { .alias('help', 'h') .parse(); } - -function getProfiles(args) { - return args.profiles || settings.profiles; +const args = parseArguments(); +if (args.profiles) { + settings.profiles = args.profiles; } - -async function main() { - if (settings.host_mindserver) { - const mindServer = createMindServer(settings.mindserver_port); +if (args.task_path) { + let tasks = JSON.parse(readFileSync(args.task_path, 'utf8')); + if (args.task_id) { + settings.task = tasks[args.task_id]; + settings.task.task_id = args.task_id; } - mindserverProxy.connect(); - - const args = parseArguments(); - const profiles = getProfiles(args); - console.log(profiles); - const { load_memory, init_message } = settings; - - for (let i=0; i setTimeout(resolve, 1000)); + else { + throw new Error('task_id is required when task_path is provided'); } } -try { - main(); -} catch (error) { - console.error('An error occurred:', error); - process.exit(1); +// these environment variables override certain settings +if (process.env.MINECRAFT_PORT) { + settings.port = process.env.MINECRAFT_PORT; } +if (process.env.MINDSERVER_PORT) { + settings.mindserver_port = process.env.MINDSERVER_PORT; +} +if (process.env.PROFILES && JSON.parse(process.env.PROFILES).length > 0) { + settings.profiles = JSON.parse(process.env.PROFILES); +} +if (process.env.INSECURE_CODING) { + settings.allow_insecure_coding = true; +} +if (process.env.BLOCKED_ACTIONS) { + settings.blocked_actions = JSON.parse(process.env.BLOCKED_ACTIONS); +} +if (process.env.MAX_MESSAGES) { + settings.max_messages = process.env.MAX_MESSAGES; +} +if (process.env.NUM_EXAMPLES) { + settings.num_examples = process.env.NUM_EXAMPLES; +} +if (process.env.LOG_ALL) { + settings.log_all_prompts = process.env.LOG_ALL; +} + +Mindcraft.init(settings.mindserver_host, settings.mindserver_port); + +for (let profile of settings.profiles) { + const profile_json = JSON.parse(readFileSync(profile, 'utf8')); + settings.profile = profile_json; + Mindcraft.createAgent(settings); +} \ No newline at end of file diff --git a/settings.js b/settings.js index 1d6c5a2..16f8b0f 100644 --- a/settings.js +++ b/settings.js @@ -11,9 +11,9 @@ const settings = { // the base profile is shared by all bots for default prompts/examples/modes "profiles": [ - // "./andy.json", + "./andy.json", // "./profiles/gpt.json", - "./profiles/claude.json", + // "./profiles/claude.json", // "./profiles/gemini.json", // "./profiles/llama.json", // "./profiles/qwen.json", @@ -26,7 +26,7 @@ const settings = { ], // agent settings - "base_profile": "./profiles/defaults/god_mode.json", // also see creative.json, god_mode.json + "base_profile": "survival", // survival, creative, or god_mode "load_memory": false, // load memory from previous session "init_message": "Respond with hello world and your name", // sends to all on spawn "only_chat_with": [], // users that the bots listen to and send general messages to. if empty it will chat publicly @@ -40,42 +40,13 @@ const settings = { "max_commands": -1, // max number of commands that can be used in consecutive responses. -1 for no limit "narrate_behavior": true, // chat simple automatic actions ('Picking up item!') "log_all_prompts": false, // log ALL prompts to file - "task": {}, - "task_file": "", - "task_name": "", "verbose_commands": true, // show full command syntax "chat_bot_messages": true, // publicly chat bot-to-bot messages // mindserver settings - "render_bot_views": false, // show bot's view in browser at localhost:3000, 3001... + "render_bot_view": false, // show bot's view in browser at localhost:3000, 3001... "allow_insecure_coding": true, // allows newAction command and model can write/run code on your computer. enable at own risk "code_timeout_mins": -1, // minutes code is allowed to run. -1 for no timeout } -// these environment variables override certain settings -if (process.env.MINECRAFT_PORT) { - settings.port = process.env.MINECRAFT_PORT; -} -if (process.env.MINDSERVER_PORT) { - settings.mindserver_port = process.env.MINDSERVER_PORT; -} -if (process.env.PROFILES && JSON.parse(process.env.PROFILES).length > 0) { - settings.profiles = JSON.parse(process.env.PROFILES); -} -if (process.env.INSECURE_CODING) { - settings.allow_insecure_coding = true; -} -if (process.env.BLOCKED_ACTIONS) { - settings.blocked_actions = JSON.parse(process.env.BLOCKED_ACTIONS); -} -if (process.env.MAX_MESSAGES) { - settings.max_messages = process.env.MAX_MESSAGES; -} -if (process.env.NUM_EXAMPLES) { - settings.num_examples = process.env.NUM_EXAMPLES; -} -if (process.env.LOG_ALL) { - settings.log_all_prompts = process.env.LOG_ALL; -} - export default settings; diff --git a/src/agent/agent.js b/src/agent/agent.js index d490557..7bc692d 100644 --- a/src/agent/agent.js +++ b/src/agent/agent.js @@ -23,25 +23,17 @@ export class Agent { this.count_id = count_id; // Initialize components with more detailed error handling - console.log('Initializing action manager...'); + console.log(`Initializing agent ${this.name}...`); this.actions = new ActionManager(this); - console.log('Initializing prompter...'); this.prompter = new Prompter(this, settings.profile); this.name = this.prompter.getName(); - console.log('Initializing history...'); this.history = new History(this); - console.log('Initializing coder...'); this.coder = new Coder(this); - console.log('Initializing npc controller...'); this.npc = new NPCContoller(this); - console.log('Initializing memory bank...'); this.memory_bank = new MemoryBank(); - console.log('Initializing self prompter...'); this.self_prompter = new SelfPrompter(this); convoManager.initAgent(this); - console.log('Initializing examples...'); await this.prompter.initExamples(); - console.log('Initializing task...'); // load mem first before doing task let save_data = null; diff --git a/src/agent/mindserver_proxy.js b/src/agent/mindserver_proxy.js index 59f043a..da098e1 100644 --- a/src/agent/mindserver_proxy.js +++ b/src/agent/mindserver_proxy.js @@ -18,14 +18,19 @@ class MindServerProxy { if (this.connected) return; this.name = name; - this.socket = io(`http://${host}:${port}`); - this.connected = true; - this.socket.on('connect', () => { - console.log(name, 'connected to MindServer'); + await new Promise((resolve, reject) => { + this.socket.on('connect', resolve); + this.socket.on('connect_error', (err) => { + console.error('Connection failed:', err); + reject(err); + }); }); + this.connected = true; + console.log(name, 'connected to MindServer'); + this.socket.on('disconnect', () => { console.log('Disconnected from MindServer'); this.connected = false; @@ -60,8 +65,8 @@ class MindServerProxy { // Request settings and wait for response await new Promise((resolve, reject) => { const timeout = setTimeout(() => { - reject(new Error('Settings request timed out after 10 seconds')); - }, 10000); + reject(new Error('Settings request timed out after 5 seconds')); + }, 5000); this.socket.emit('get-settings', name, (response) => { clearTimeout(timeout); diff --git a/src/mindcraft/default_settings.json b/src/mindcraft/default_settings.json new file mode 100644 index 0000000..3ec448b --- /dev/null +++ b/src/mindcraft/default_settings.json @@ -0,0 +1,25 @@ +{ + "minecraft_version": "1.21.1", + "host": "127.0.0.1", + "port": 55916, + "auth": "offline", + "base_profile": "survival", + "load_memory": false, + "init_message": "Respond with hello world and your name", + "only_chat_with": [], + "speak": false, + "language": "en", + "allow_vision": false, + "blocked_actions" : ["!checkBlueprint", "!checkBlueprintLevel", "!getBlueprint", "!getBlueprintLevel"] , + "relevant_docs_count": 5, + "max_messages": 15, + "num_examples": 2, + "max_commands": -1, + "narrate_behavior": true, + "log_all_prompts": false, + "verbose_commands": true, + "chat_bot_messages": true, + "render_bot_view": false, + "allow_insecure_coding": false, + "code_timeout_mins": -1 +} \ No newline at end of file diff --git a/mindcraft.js b/src/mindcraft/mindcraft.js similarity index 65% rename from mindcraft.js rename to src/mindcraft/mindcraft.js index 6ec88aa..a36bbdc 100644 --- a/mindcraft.js +++ b/src/mindcraft/mindcraft.js @@ -1,5 +1,5 @@ -import { createMindServer, registerAgent } from './src/server/mindserver.js'; -import { AgentProcess } from './src/process/agent_process.js'; +import { createMindServer, registerAgent } from './mindserver.js'; +import { AgentProcess } from '../process/agent_process.js'; let mindserver; let connected = false; @@ -24,12 +24,13 @@ export async function createAgent(settings) { console.error('Agent name is required in profile'); return; } + settings = JSON.parse(JSON.stringify(settings)); let agent_name = settings.profile.name; registerAgent(settings); let load_memory = settings.load_memory || false; let init_message = settings.init_message || null; - const agentProcess = new AgentProcess(agent_name); - agentProcess.start(load_memory, init_message, agent_count, host, port); + const agentProcess = new AgentProcess(agent_name, host, port); + agentProcess.start(load_memory, init_message, agent_count); agent_count++; agent_processes[settings.profile.name] = agentProcess; } @@ -39,8 +40,8 @@ export function getAgentProcess(agentName) { } export function startAgent(agentName) { - if (this.agent_processes[agentName]) { - this.agent_processes[agentName].continue(); + if (agent_processes[agentName]) { + agent_processes[agentName].continue(); } else { console.error(`Cannot start agent ${agentName}; not found`); @@ -48,21 +49,17 @@ export function startAgent(agentName) { } export function stopAgent(agentName) { - if (this.agent_processes[agentName]) { - this.agent_processes[agentName].stop(); + if (agent_processes[agentName]) { + agent_processes[agentName].stop(); } } export function shutdown() { console.log('Shutting down'); - for (let agentName in this.agent_processes) { - this.agent_processes[agentName].stop(); + for (let agentName in agent_processes) { + agent_processes[agentName].stop(); } setTimeout(() => { process.exit(0); }, 2000); } - -export function logoutAgent(agentName) { - this.socket.emit('logout-agent', agentName); -} \ No newline at end of file diff --git a/src/server/mindserver.js b/src/mindcraft/mindserver.js similarity index 81% rename from src/server/mindserver.js rename to src/mindcraft/mindserver.js index 035354e..1d51854 100644 --- a/src/server/mindserver.js +++ b/src/mindcraft/mindserver.js @@ -3,18 +3,21 @@ import express from 'express'; import http from 'http'; import path from 'path'; import { fileURLToPath } from 'url'; -import * as mindcraft from '../../mindcraft.js'; +import * as mindcraft from './mindcraft.js'; +import { readFileSync } from 'fs'; +const __dirname = path.dirname(fileURLToPath(import.meta.url)); // Mindserver is: // - central hub for communication between all agent processes // - api to control from other languages and remote users // - host for webapp -// Module-level variables let io; let server; const agent_connections = {}; +const default_settings = JSON.parse(readFileSync(path.join(__dirname, 'default_settings.json'), 'utf8')); + class AgentConnection { constructor(settings) { this.socket = null; @@ -53,6 +56,23 @@ export function createMindServer(host = 'localhost', port = 8080) { agentsUpdate(socket); + socket.on('create-agent', (settings, callback) => { + console.log('API create agent...'); + settings = { ...default_settings, ...settings }; + if (settings.profile?.name) { + if (settings.profile.name in agent_connections) { + callback({ success: false, error: 'Agent already exists' }); + return; + } + mindcraft.createAgent(settings); + callback({ success: true }); + } + else { + console.error('Agent name is required in profile'); + callback({ success: false, error: 'Agent name is required in profile' }); + } + }); + socket.on('get-settings', (agentName, callback) => { if (agent_connections[agentName]) { callback({ settings: agent_connections[agentName].settings }); @@ -73,16 +93,9 @@ export function createMindServer(host = 'localhost', port = 8080) { } }); - socket.on('logout-agent', (agentName) => { - if (agent_connections[agentName]) { - agent_connections[agentName].in_game = false; - agentsUpdate(); - } - }); - socket.on('disconnect', () => { - console.log('Client disconnected'); if (agent_connections[curAgentName]) { + console.log(`Agent ${curAgentName} disconnected`); agent_connections[curAgentName].in_game = false; agentsUpdate(); } diff --git a/src/server/public/index.html b/src/mindcraft/public/index.html similarity index 72% rename from src/server/public/index.html rename to src/mindcraft/public/index.html index c66a986..f16105c 100644 --- a/src/server/public/index.html +++ b/src/mindcraft/public/index.html @@ -64,10 +64,44 @@

Mindcraft

+
+ + +
+ diff --git a/src/mindcraft/public/settings_spec.json b/src/mindcraft/public/settings_spec.json new file mode 100644 index 0000000..9023af6 --- /dev/null +++ b/src/mindcraft/public/settings_spec.json @@ -0,0 +1,127 @@ +{ + "profile": { + "type": "object", + "required": true, + "description": "The profile object to use, including name, prompts, and examples" + }, + "minecraft_version": { + "type": "string", + "description": "The version of Minecraft to use", + "default": "1.21.1" + }, + "host": { + "type": "string", + "description": "The minecraft server host address to connect to", + "default": "127.0.0.1" + }, + "port": { + "type": "number", + "description": "The minecraft server port to connect to", + "default": 55916 + }, + "auth": { + "type": "string", + "description": "The authentication method to use", + "default": "offline" + }, + "base_profile": { + "type": "string", + "description": "Allowed values: survival, creative, god_mode. Each has fine tuned settings for different game modes.", + "default": "survival" + }, + "load_memory": { + "type": "boolean", + "description": "Whether to load bot's previous memory", + "default": false + }, + "init_message": { + "type": "string", + "description": "The initial message to send to the bot", + "default": "Respond with hello world and your name" + }, + "only_chat_with": { + "type": "array", + "description": "List of agents to only chat with. If empty, the bot will chat publicly", + "default": [] + }, + "speak": { + "type": "boolean", + "description": "Whether to enable text-to-speech reading on the host machine", + "default": false + }, + "language": { + "type": "string", + "description": "The language to automatically translate to and from using google translate", + "default": "en" + }, + "allow_vision": { + "type": "boolean", + "description": "Whether to allow vision capabilities", + "default": false + }, + "blocked_actions": { + "type": "array", + "description": "List of actions that are blocked", + "default": ["!checkBlueprint", "!checkBlueprintLevel", "!getBlueprint", "!getBlueprintLevel"] + }, + "relevant_docs_count": { + "type": "number", + "description": "Number of relevant function documents to include in the prompt for LLM code writing", + "default": 5 + }, + "max_messages": { + "type": "number", + "description": "Maximum number of recent messages to keep in context for LLM", + "default": 15 + }, + "num_examples": { + "type": "number", + "description": "Number of examples to select to help prompt better LLM responses", + "default": 2 + }, + "max_commands": { + "type": "number", + "description": "Maximum number of commands allowed in consecutive responses. -1 for no limit", + "default": -1 + }, + "narrate_behavior": { + "type": "boolean", + "description": "Whether to openly chat automatic behavior like 'Picking up item!'", + "default": true + }, + "log_all_prompts": { + "type": "boolean", + "description": "Whether to log all prompts to file. Can be very verbose.", + "default": false + }, + "verbose_commands": { + "type": "boolean", + "description": "Whether to show full command syntax in bot responses. If false will use a shortened syntax.", + "default": true + }, + "chat_bot_messages": { + "type": "boolean", + "description": "Whether to publicly chat messages to and from other bots", + "default": true + }, + "render_bot_view": { + "type": "boolean", + "description": "Whether to render bot view for user observation. Does not give bot vision.", + "default": false + }, + "allow_insecure_coding": { + "type": "boolean", + "description": "Whether to allow newAction command that let's LLM write/run code on host computer. Despite sandboxxing, it is potentially insecure.", + "default": false + }, + "code_timeout_mins": { + "type": "number", + "description": "Number of minutes to allow code execution. -1 for no timeout", + "default": -1 + }, + "task": { + "type": "object", + "description": "The task object to give the agent on start. If null, the agent will not have a task.", + "default": null + } +} \ No newline at end of file diff --git a/viewer.html b/viewer.html deleted file mode 100644 index bdf2047..0000000 --- a/viewer.html +++ /dev/null @@ -1,69 +0,0 @@ - - - Viewer - - - -
- - - - -
- - - From 3317c62d697f10bf568e2b3dc6591d88636d980e Mon Sep 17 00:00:00 2001 From: uukelele Date: Sun, 3 Aug 2025 13:14:32 +0100 Subject: [PATCH 082/101] do not delay if delay is set to 0 --- src/agent/library/skills.js | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/agent/library/skills.js b/src/agent/library/skills.js index fe664ec..3676f95 100644 --- a/src/agent/library/skills.js +++ b/src/agent/library/skills.js @@ -4,6 +4,8 @@ import pf from 'mineflayer-pathfinder'; import Vec3 from 'vec3'; import settings from "../../../settings.js"; +const blockPlaceDelay = settings.block_place_delay || 10 +const useDelay = blockPlaceDelay > 0 export function log(bot, message) { bot.output += message + '\n'; @@ -534,7 +536,7 @@ export async function breakBlockAt(bot, x, y, z) { let block = bot.blockAt(Vec3(x, y, z)); if (block.name !== 'air' && block.name !== 'water' && block.name !== 'lava') { if (bot.modes.isOn('cheat')) { - await new Promise(resolve => setTimeout(resolve, settings.block_place_delay || 10)); + if (useDelay) { await new Promise(resolve => setTimeout(resolve, blockPlaceDelay)); } let msg = '/setblock ' + Math.floor(x) + ' ' + Math.floor(y) + ' ' + Math.floor(z) + ' air'; bot.chat(msg); log(bot, `Used /setblock to break block at ${x}, ${y}, ${z}.`); @@ -631,14 +633,14 @@ export async function placeBlock(bot, blockType, x, y, z, placeOn='bottom', dont if (blockType.includes('stairs')) { blockType += `[facing=${face}]`; } - await new Promise(resolve => setTimeout(resolve, settings.block_place_delay || 10)); + if (useDelay) { await new Promise(resolve => setTimeout(resolve, blockPlaceDelay)); } let msg = '/setblock ' + Math.floor(x) + ' ' + Math.floor(y) + ' ' + Math.floor(z) + ' ' + blockType; bot.chat(msg); if (blockType.includes('door')) - await new Promise(resolve => setTimeout(resolve, settings.block_place_delay || 10)); + if (useDelay) { await new Promise(resolve => setTimeout(resolve, blockPlaceDelay)); } bot.chat('/setblock ' + Math.floor(x) + ' ' + Math.floor(y+1) + ' ' + Math.floor(z) + ' ' + blockType + '[half=upper]'); if (blockType.includes('bed')) - await new Promise(resolve => setTimeout(resolve, settings.block_place_delay || 10)); + if (useDelay) { await new Promise(resolve => setTimeout(resolve, blockPlaceDelay)); } bot.chat('/setblock ' + Math.floor(x) + ' ' + Math.floor(y) + ' ' + Math.floor(z-1) + ' ' + blockType + '[part=head]'); log(bot, `Used /setblock to place ${blockType} at ${target_dest}.`); return true; From 2351de7bc194516b8b1e07fcf0400b8eb30335a0 Mon Sep 17 00:00:00 2001 From: uukelele Date: Sun, 3 Aug 2025 17:16:49 +0100 Subject: [PATCH 083/101] make block place delay 0 by default --- settings.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/settings.js b/settings.js index a134eb5..a5a2060 100644 --- a/settings.js +++ b/settings.js @@ -45,7 +45,7 @@ const settings = { "narrate_behavior": true, // chat simple automatic actions ('Picking up item!') "chat_bot_messages": true, // publicly chat messages to other bots - "block_place_delay": 10, // delay between placing blocks (ms) if using newAction. helps avoid bot being kicked by anti-cheat mechanisms on servers. + "block_place_delay": 0, // delay between placing blocks (ms) if using newAction. helps avoid bot being kicked by anti-cheat mechanisms on servers. "log_all_prompts": false, // log ALL prompts to file } From 6501e83d44fa2ac17fe94fa4d5a18ec67ea6d608 Mon Sep 17 00:00:00 2001 From: MaxRobinsonTheGreat Date: Tue, 12 Aug 2025 14:35:23 -0500 Subject: [PATCH 084/101] first pass at getting doors to work --- patches/mineflayer-pathfinder+2.4.5.patch | 182 +++++++++++++++++++++- src/agent/agent.js | 1 + src/agent/library/skills.js | 42 ++++- 3 files changed, 219 insertions(+), 6 deletions(-) diff --git a/patches/mineflayer-pathfinder+2.4.5.patch b/patches/mineflayer-pathfinder+2.4.5.patch index 6906371..bfc4ad0 100644 --- a/patches/mineflayer-pathfinder+2.4.5.patch +++ b/patches/mineflayer-pathfinder+2.4.5.patch @@ -1,8 +1,35 @@ diff --git a/node_modules/mineflayer-pathfinder/index.js b/node_modules/mineflayer-pathfinder/index.js -index b38bd30..bf16a63 100644 +index b38bd30..fb39b45 100644 --- a/node_modules/mineflayer-pathfinder/index.js +++ b/node_modules/mineflayer-pathfinder/index.js -@@ -550,6 +550,7 @@ function inject (bot) { +@@ -170,6 +170,16 @@ function inject (bot) { + const curPoint = path[i] + if (curPoint.toBreak.length > 0 || curPoint.toPlace.length > 0) break + const b = bot.blockAt(new Vec3(curPoint.x, curPoint.y, curPoint.z)) ++ ++ // openned doors have small Collision box ++ // that may stop the bot from moving forward ++ if(i === 0 && b.name.includes('door')) { ++ curPoint.x = Math.floor(curPoint.x) + 0.5 ++ curPoint.y = Math.floor(curPoint.y) ++ curPoint.z = Math.floor(curPoint.z) + 0.5 ++ continue ++ } ++ + if (b && (b.type === waterType || ((b.type === ladderId || b.type === vineId) && i + 1 < path.length && path[i + 1].y < curPoint.y))) { + curPoint.x = Math.floor(curPoint.x) + 0.5 + curPoint.y = Math.floor(curPoint.y) +@@ -524,6 +534,9 @@ function inject (bot) { + bot.activateBlock(bot.blockAt(new Vec3(placingBlock.x, placingBlock.y, placingBlock.z))).then(() => { + lockUseBlock.release() + placingBlock = nextPoint.toPlace.shift() ++ if (!placingBlock) { ++ placing = false ++ } + }, err => { + console.error(err) + lockUseBlock.release() +@@ -550,6 +563,7 @@ function inject (bot) { lockEquipItem.release() const refBlock = bot.blockAt(new Vec3(placingBlock.x, placingBlock.y, placingBlock.z), false) if (!lockPlaceBlock.tryAcquire()) return @@ -10,7 +37,7 @@ index b38bd30..bf16a63 100644 if (interactableBlocks.includes(refBlock.name)) { bot.setControlState('sneak', true) } -@@ -557,6 +558,7 @@ function inject (bot) { +@@ -557,6 +571,7 @@ function inject (bot) { .then(function () { // Dont release Sneak if the block placement was not successful bot.setControlState('sneak', false) @@ -18,3 +45,152 @@ index b38bd30..bf16a63 100644 if (bot.pathfinder.LOSWhenPlacingBlocks && placingBlock.returnPos) returningPos = placingBlock.returnPos.clone() }) .catch(_ignoreError => { +diff --git a/node_modules/mineflayer-pathfinder/lib/movements.js b/node_modules/mineflayer-pathfinder/lib/movements.js +index a7e3505..3c4a8f2 100644 +--- a/node_modules/mineflayer-pathfinder/lib/movements.js ++++ b/node_modules/mineflayer-pathfinder/lib/movements.js +@@ -62,7 +62,13 @@ + + this.climbables = new Set() + this.climbables.add(registry.blocksByName.ladder.id) +- // this.climbables.add(registry.blocksByName.vine.id) ++ if (registry.blocksByName.vine) this.climbables.add(registry.blocksByName.vine.id) ++ if (registry.blocksByName.weeping_vines) this.climbables.add(registry.blocksByName.weeping_vines.id) ++ if (registry.blocksByName.weeping_vines_plant) this.climbables.add(registry.blocksByName.weeping_vines_plant.id) ++ if (registry.blocksByName.twisting_vines) this.climbables.add(registry.blocksByName.twisting_vines.id) ++ if (registry.blocksByName.twisting_vines_plant) this.climbables.add(registry.blocksByName.twisting_vines_plant.id) ++ if (registry.blocksByName.cave_vines) this.climbables.add(registry.blocksByName.cave_vines.id) ++ if (registry.blocksByName.cave_vines_plant) this.climbables.add(registry.blocksByName.cave_vines_plant.id) + this.emptyBlocks = new Set() + + this.replaceables = new Set() +@@ -92,13 +98,15 @@ + } + }) + registry.blocksArray.forEach(block => { +- if (this.interactableBlocks.has(block.name) && block.name.toLowerCase().includes('gate') && !block.name.toLowerCase().includes('iron')) { ++ if (this.interactableBlocks.has(block.name) ++ && (block.name.toLowerCase().includes('gate') || block.name.toLowerCase().includes('door') || block.name.toLowerCase().includes('trapdoor')) ++ && !block.name.toLowerCase().includes('iron')) { + // console.info(block) + this.openable.add(block.id) + } + }) + +- this.canOpenDoors = false // Causes issues. Probably due to none paper servers. ++ this.canOpenDoors = true + + this.exclusionAreasStep = [] + this.exclusionAreasBreak = [] +@@ -230,8 +238,13 @@ + } + } + b.climbable = this.climbables.has(b.type) +- b.safe = (b.boundingBox === 'empty' || b.climbable || this.carpets.has(b.type)) && !this.blocksToAvoid.has(b.type) +- b.physical = b.boundingBox === 'block' && !this.fences.has(b.type) ++ ++ // Enhanced trapdoor logic - open trapdoors are safe to pass through ++ const isOpenTrapdoor = this.openable.has(b.type) && b.name.includes('trapdoor') && b._properties?.open === true ++ const isClosedTrapdoor = this.openable.has(b.type) && b.name.includes('trapdoor') && b._properties?.open !== true ++ ++ b.safe = (b.boundingBox === 'empty' || b.climbable || this.carpets.has(b.type) || isOpenTrapdoor) && !this.blocksToAvoid.has(b.type) ++ b.physical = (b.boundingBox === 'block' && !this.fences.has(b.type)) || isClosedTrapdoor + b.replaceable = this.replaceables.has(b.type) && !b.physical + b.liquid = this.liquids.has(b.type) + b.height = pos.y + dy +@@ -284,6 +297,18 @@ + cost += this.exclusionStep(block) // Is excluded so can't move or break + cost += this.getNumEntitiesAt(block.position, 0, 0, 0) * this.entityCost + if (block.safe) return cost ++ ++ // process door cost ++ if ((this.canOpenDoors && block.openable) ++ || (block.openable && block._properties?.open === true)) { ++ return cost ++ } ++ ++ // Handle trapdoors specifically - they can be opened instead of broken ++ if (this.canOpenDoors && block.openable && block.name.includes('trapdoor') && !block.name.includes('iron')) { ++ return cost + 1 // Small cost for opening trapdoor ++ } ++ + if (!this.safeToBreak(block)) return 100 // Can't break, so can't move + toBreak.push(block.position) + +@@ -387,8 +412,8 @@ + cost += this.safeOrBreak(blockB, toBreak) + if (cost > 100) return + +- // Open fence gates +- if (this.canOpenDoors && blockC.openable && blockC.shapes && blockC.shapes.length !== 0) { ++ // Open fence gates and doors ++ if (this.canOpenDoors && blockC.openable && !blockC._properties.open) { + toPlace.push({ x: node.x + dir.x, y: node.y, z: node.z + dir.z, dx: 0, dy: 0, dz: 0, useOne: true }) // Indicate that a block should be used on this block not placed + } else { + cost += this.safeOrBreak(blockC, toBreak) +@@ -552,6 +577,54 @@ + if (cost > 100) return + + neighbors.push(new Move(node.x, node.y + 1, node.z, node.remainingBlocks - toPlace.length, cost, toBreak, toPlace)) ++ } ++ ++ getMoveClimbUpThroughTrapdoor (node, neighbors) { ++ const blockCurrent = this.getBlock(node, 0, 0, 0) // Current position (should be climbable) ++ const blockAbove = this.getBlock(node, 0, 1, 0) // Block directly above ++ const blockCeiling = this.getBlock(node, 0, 2, 0) // Trapdoor or ceiling block ++ ++ // Only attempt this move if we're on a climbable block (ladder/vine) ++ if (!blockCurrent.climbable) return ++ ++ // Check if there's a closed trapdoor above us ++ if (!blockCeiling.openable || blockCeiling._properties?.open === true) return ++ ++ let cost = 2 // Base cost for climbing up and opening trapdoor ++ const toBreak = [] ++ const toPlace = [] ++ ++ // Make sure we can break/pass through the block above if needed ++ cost += this.safeOrBreak(blockAbove, toBreak) ++ if (cost > 100) return ++ ++ // Add cost for opening the trapdoor ++ toPlace.push({ x: node.x, y: node.y + 2, z: node.z, dx: 0, dy: 0, dz: 0, useOne: true }) ++ ++ neighbors.push(new Move(node.x, node.y + 2, node.z, node.remainingBlocks - toPlace.length, cost, toBreak, toPlace)) ++ } ++ ++ // Enhanced ladder/vine climbing that can handle stepping on top and jumping ++ getMoveClimbTop (node, neighbors) { ++ const blockCurrent = this.getBlock(node, 0, 0, 0) // Current position (should be climbable) ++ const blockAbove = this.getBlock(node, 0, 1, 0) // Block directly above ++ ++ // Only attempt this move if we're on a climbable block (ladder/vine) ++ if (!blockCurrent.climbable) return ++ ++ // Check if we can step on top of the ladder/vine and then jump up ++ if (!blockAbove.safe) return ++ ++ let cost = 2 // Cost for climbing to top of ladder and jumping ++ const toBreak = [] ++ const toPlace = [] ++ ++ // Check if there's space to jump up from the top of the ladder ++ const blockJumpTarget = this.getBlock(node, 0, 2, 0) ++ cost += this.safeOrBreak(blockJumpTarget, toBreak) ++ if (cost > 100) return ++ ++ neighbors.push(new Move(node.x, node.y + 2, node.z, node.remainingBlocks - toPlace.length, cost, toBreak, toPlace)) + } + + // Jump up, down or forward over a 1 block gap +@@ -655,6 +728,10 @@ + + this.getMoveDown(node, neighbors) + this.getMoveUp(node, neighbors) ++ ++ // Enhanced climbing moves for ladders, vines, and trapdoors ++ this.getMoveClimbUpThroughTrapdoor(node, neighbors) ++ this.getMoveClimbTop(node, neighbors) + + return neighbors + } \ No newline at end of file diff --git a/src/agent/agent.js b/src/agent/agent.js index d989f24..f478764 100644 --- a/src/agent/agent.js +++ b/src/agent/agent.js @@ -118,6 +118,7 @@ export class Agent { ]; const respondFunc = async (username, message) => { + if (message === "") return; if (username === this.name) return; if (settings.only_chat_with.length > 0 && !settings.only_chat_with.includes(username)) return; try { diff --git a/src/agent/library/skills.js b/src/agent/library/skills.js index e488771..7cdec5f 100644 --- a/src/agent/library/skills.js +++ b/src/agent/library/skills.js @@ -1127,9 +1127,45 @@ export async function goToPlayer(bot, username, distance=3) { return false; } - const move = new pf.Movements(bot); - bot.pathfinder.setMovements(move); - await bot.pathfinder.goto(new pf.goals.GoalFollow(player, distance), true); + + const dontBreakBlocks = ['glass', 'glass_pane']; + const nonDestructiveMovements = new pf.Movements(bot); + nonDestructiveMovements.canOpenDoors = true; + nonDestructiveMovements.allowFreeMotion = true; + nonDestructiveMovements.digCost = 100; + nonDestructiveMovements.blocksCantBreak.add(dontBreakBlocks.map(block => mc.getBlockId(block))); + + const destructiveMovements = new pf.Movements(bot); + destructiveMovements.canOpenDoors = true; + destructiveMovements.allowFreeMotion = true; + + let movements = nonDestructiveMovements; + const goal = new pf.goals.GoalFollow(player, distance); + + const timeout = 5000; + try { + console.log('finding non-destructive path...'); + const nonDestructivePath = await bot.pathfinder.getPathTo(nonDestructiveMovements, goal, timeout); + if ( + nonDestructivePath && + nonDestructivePath.path && + nonDestructivePath.path.length > 0 && + nonDestructivePath.status !== 'noPath' + ) { + console.log('found non-destructive path'); + movements = nonDestructiveMovements; + } + else { + console.log('no non-destructive path found, using destructive path'); + movements = destructiveMovements; + } + } catch (err) { + log(bot, `Could not find a path: ${err.message}.`); + return false; + } + + bot.pathfinder.setMovements(movements); + await bot.pathfinder.goto(goal, true); log(bot, `You have reached ${username}.`); } From ec5d783170f0676f53d3578b847292fb529792f8 Mon Sep 17 00:00:00 2001 From: MaxRobinsonTheGreat Date: Tue, 12 Aug 2025 17:38:06 -0500 Subject: [PATCH 085/101] temp fix to digging enchantment issue --- patches/prismarine-item+1.17.0.patch | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 patches/prismarine-item+1.17.0.patch diff --git a/patches/prismarine-item+1.17.0.patch b/patches/prismarine-item+1.17.0.patch new file mode 100644 index 0000000..dd8c226 --- /dev/null +++ b/patches/prismarine-item+1.17.0.patch @@ -0,0 +1,13 @@ +diff --git a/node_modules/prismarine-item/index.js b/node_modules/prismarine-item/index.js +index a1397a2..1d75cad 100644 +--- a/node_modules/prismarine-item/index.js ++++ b/node_modules/prismarine-item/index.js +@@ -231,7 +231,7 @@ function loader (registryOrVersion) { + const typeOfEnchantLevelValue = registry.supportFeature('typeOfValueForEnchantLevel') + const useStoredEnchantments = registry.supportFeature('booksUseStoredEnchantments') && this.name === 'enchanted_book' + +- if (typeOfEnchantLevelValue === 'short' && enchantNbtKey === 'ench') { ++ if (typeOfEnchantLevelValue === 'short' && (enchantNbtKey === 'ench' || enchantNbtKey === 'componentEnchantments')) { + let itemEnch = [] + + if (useStoredEnchantments && this?.nbt?.value?.StoredEnchantments) { From 0d8719f8ef5a141cca6173958253859fc4223a4a Mon Sep 17 00:00:00 2001 From: MaxRobinsonTheGreat Date: Wed, 13 Aug 2025 17:28:21 -0500 Subject: [PATCH 086/101] pretty good door navigation system --- src/agent/library/skills.js | 200 ++++++++++++++++++++++++++---------- src/agent/modes.js | 14 ++- 2 files changed, 158 insertions(+), 56 deletions(-) diff --git a/src/agent/library/skills.js b/src/agent/library/skills.js index 08c460d..bbe8acf 100644 --- a/src/agent/library/skills.js +++ b/src/agent/library/skills.js @@ -4,8 +4,8 @@ import pf from 'mineflayer-pathfinder'; import Vec3 from 'vec3'; import settings from "../../../settings.js"; -const blockPlaceDelay = settings.block_place_delay || 10 -const useDelay = blockPlaceDelay > 0 +const blockPlaceDelay = settings.block_place_delay || 10; +const useDelay = blockPlaceDelay > 0; export function log(bot, message) { bot.output += message + '\n'; @@ -1009,6 +1009,125 @@ export async function giveToPlayer(bot, itemType, username, num=1) { return false; } +export async function goToGoal(bot, goal) { + /** + * Navigate to the given goal, attempting minimally destructive movements. + * @param {MinecraftBot} bot, reference to the minecraft bot. + * @param {pf.goals.Goal} goal, the goal to navigate to. + **/ + + const nonDestructiveMovements = new pf.Movements(bot); + const dontBreakBlocks = ['glass', 'glass_pane']; + for (let block of dontBreakBlocks) { + nonDestructiveMovements.blocksCantBreak.add(mc.getBlockId(block)); + } + nonDestructiveMovements.digCost = 10; + + const destructiveMovements = new pf.Movements(bot); + + let final_movements = null; + let movements = [ + {name: 'nonDestructive', movements: nonDestructiveMovements}, + {name: 'destructive', movements: destructiveMovements} + ]; + + const pathfind_timeout = 1000; + try { + for (let i = 0; i < movements.length; i++) { + const movement = movements[i].movements; + const path = await bot.pathfinder.getPathTo(movement, goal, pathfind_timeout); + if (path && path.path && path.path.length > 0 && path.status !== 'noPath') { + final_movements = movement; + log(bot, `Using ${movements[i].name} movements.`); + break; + } + } + if (!final_movements) { + log(bot, `Could not find a path to ${username}.`); + return false; + } + } catch (err) { + log(bot, `Could not find a path: ${err.message}.`); + return false; + } + + const doorCheckInterval = startDoorInterval(bot); + + bot.pathfinder.setMovements(final_movements); + try { + await bot.pathfinder.goto(goal); + clearInterval(doorCheckInterval); + return true; + } catch (err) { + log(bot, `Could not find a path: ${err.message}.`); + clearInterval(doorCheckInterval); + return false; + } +} + +let _doorInterval = null; +function startDoorInterval(bot) { + /** + * Start helper interval that opens nearby doors if the bot is stuck. + * @param {MinecraftBot} bot, reference to the minecraft bot. + * @returns {number} the interval id. + **/ + if (_doorInterval) { + clearInterval(_doorInterval); + } + let prev_pos = bot.entity.position.clone(); + let prev_check = Date.now(); + let stuck_time = 0; + + // adjacent positions to check for doors + const positions = [ + bot.entity.position.clone(), + bot.entity.position.offset(0, 0, 1), + bot.entity.position.offset(0, 0, -1), + bot.entity.position.offset(1, 0, 0), + bot.entity.position.offset(-1, 0, 0), + ] + let elevated_positions = positions.map(position => position.offset(0, 1, 0)); + positions.push(...elevated_positions); + + const doorCheckInterval = setInterval(() => { + const now = Date.now(); + if (bot.entity.position.distanceTo(prev_pos) >= 0.1) { + stuck_time = 0; + } else { + stuck_time += now - prev_check; + } + + if (stuck_time > 1200) { + // shuffle positions so we're not always opening the same door + let currentIndex = positions.length; + while (currentIndex != 0) { + let randomIndex = Math.floor(Math.random() * currentIndex); + currentIndex--; + [positions[currentIndex], positions[randomIndex]] = [ + positions[randomIndex], positions[currentIndex]]; + } + + for (let position of positions) { + let block = bot.blockAt(position); + if (block && block.name && + !block.name.includes('iron') && + (block.name.includes('door') || + block.name.includes('fence_gate') || + block.name.includes('trapdoor'))) + { + bot.activateBlock(block); + break; + } + } + stuck_time = 0; + } + prev_pos = bot.entity.position.clone(); + prev_check = now; + }, 200); + _doorInterval = doorCheckInterval; + return doorCheckInterval; +} export async function goToPosition(bot, x, y, z, min_distance=2) { /** @@ -1033,10 +1152,7 @@ export async function goToPosition(bot, x, y, z, min_distance=2) { return true; } - const movements = new pf.Movements(bot); - bot.pathfinder.setMovements(movements); - - const checkProgress = () => { + const checkDigProgress = () => { if (bot.targetDigBlock) { const targetBlock = bot.targetDigBlock; const itemId = bot.heldItem ? bot.heldItem.type : null; @@ -1048,17 +1164,17 @@ export async function goToPosition(bot, x, y, z, min_distance=2) { } }; - const progressInterval = setInterval(checkProgress, 1000); + const progressInterval = setInterval(checkDigProgress, 1000); try { - await bot.pathfinder.goto(new pf.goals.GoalNear(x, y, z, min_distance)); + await goToGoal(bot, new pf.goals.GoalNear(x, y, z, min_distance)); log(bot, `You have reached at ${x}, ${y}, ${z}.`); + clearInterval(progressInterval); return true; } catch (err) { log(bot, `Pathfinding stopped: ${err.message}.`); - return false; - } finally { clearInterval(progressInterval); + return false; } } @@ -1134,45 +1250,10 @@ export async function goToPlayer(bot, username, distance=3) { return false; } - - const dontBreakBlocks = ['glass', 'glass_pane']; - const nonDestructiveMovements = new pf.Movements(bot); - nonDestructiveMovements.canOpenDoors = true; - nonDestructiveMovements.allowFreeMotion = true; - nonDestructiveMovements.digCost = 100; - nonDestructiveMovements.blocksCantBreak.add(dontBreakBlocks.map(block => mc.getBlockId(block))); - - const destructiveMovements = new pf.Movements(bot); - destructiveMovements.canOpenDoors = true; - destructiveMovements.allowFreeMotion = true; - - let movements = nonDestructiveMovements; + distance = Math.max(distance, 0.5); const goal = new pf.goals.GoalFollow(player, distance); - const timeout = 5000; - try { - console.log('finding non-destructive path...'); - const nonDestructivePath = await bot.pathfinder.getPathTo(nonDestructiveMovements, goal, timeout); - if ( - nonDestructivePath && - nonDestructivePath.path && - nonDestructivePath.path.length > 0 && - nonDestructivePath.status !== 'noPath' - ) { - console.log('found non-destructive path'); - movements = nonDestructiveMovements; - } - else { - console.log('no non-destructive path found, using destructive path'); - movements = destructiveMovements; - } - } catch (err) { - log(bot, `Could not find a path: ${err.message}.`); - return false; - } - - bot.pathfinder.setMovements(movements); - await bot.pathfinder.goto(goal, true); + await goToGoal(bot, goal, true); log(bot, `You have reached ${username}.`); } @@ -1192,24 +1273,36 @@ export async function followPlayer(bot, username, distance=4) { return false; const move = new pf.Movements(bot); + move.digCost = 10; bot.pathfinder.setMovements(move); + let doorCheckInterval = startDoorInterval(bot); + bot.pathfinder.setGoal(new pf.goals.GoalFollow(player, distance), true); log(bot, `You are now actively following player ${username}.`); + while (!bot.interrupt_code) { await new Promise(resolve => setTimeout(resolve, 500)); // in cheat mode, if the distance is too far, teleport to the player if (bot.modes.isOn('cheat') && bot.entity.position.distanceTo(player.position) > 100 && player.isOnGround) { await goToPlayer(bot, username); } - if (bot.modes.isOn('unstuck')) { - const is_nearby = bot.entity.position.distanceTo(player.position) <= distance + 1; - if (is_nearby) - bot.modes.pause('unstuck'); - else - bot.modes.unpause('unstuck'); + const is_nearby = bot.entity.position.distanceTo(player.position) <= distance + 1; + if (is_nearby) { + clearInterval(doorCheckInterval); + doorCheckInterval = null; + bot.modes.pause('unstuck'); + bot.modes.pause('elbow_room'); + } + else { + if (!doorCheckInterval) { + doorCheckInterval = startDoorInterval(bot); + } + bot.modes.unpause('unstuck'); + bot.modes.unpause('elbow_room'); } } + clearInterval(doorCheckInterval); return true; } @@ -1232,7 +1325,6 @@ export async function moveAway(bot, distance) { const move = new pf.Movements(bot); const path = await bot.pathfinder.getPathTo(move, inverted_goal, 10000); let last_move = path.path[path.path.length-1]; - console.log(last_move); if (last_move) { let x = Math.floor(last_move.x); let y = Math.floor(last_move.y); diff --git a/src/agent/modes.js b/src/agent/modes.js index dc2b925..cde53fc 100644 --- a/src/agent/modes.js +++ b/src/agent/modes.js @@ -114,6 +114,11 @@ const modes_list = [ }); } this.last_time = Date.now(); + }, + unpause: function () { + this.prev_location = null; + this.stuck_time = 0; + this.prev_dig_block = null; } }, { @@ -342,13 +347,18 @@ class ModeController { } unpause(mode_name) { - modes_map[mode_name].paused = false; + const mode = modes_map[mode_name]; + //if unpause func is defined and mode is currently paused + if (mode.unpause && mode.paused) { + mode.unpause(); + } + mode.paused = false; } unPauseAll() { for (let mode of modes_list) { if (mode.paused) console.log(`Unpausing mode ${mode.name}`); - mode.paused = false; + this.unpause(mode.name); } } From 5aa4aa4e06d77d2e33f83582aa8b986db9b6a4f4 Mon Sep 17 00:00:00 2001 From: MaxRobinsonTheGreat Date: Thu, 14 Aug 2025 18:40:13 -0500 Subject: [PATCH 087/101] use goToGoal, better movement selection and error handling --- src/agent/library/skills.js | 74 +++++++++++++++++++------------------ src/agent/library/world.js | 1 + 2 files changed, 39 insertions(+), 36 deletions(-) diff --git a/src/agent/library/skills.js b/src/agent/library/skills.js index bbe8acf..9d62ef1 100644 --- a/src/agent/library/skills.js +++ b/src/agent/library/skills.js @@ -4,7 +4,7 @@ import pf from 'mineflayer-pathfinder'; import Vec3 from 'vec3'; import settings from "../../../settings.js"; -const blockPlaceDelay = settings.block_place_delay || 10; +const blockPlaceDelay = settings.block_place_delay == null ? 0 : settings.block_place_delay; const useDelay = blockPlaceDelay > 0; export function log(bot, message) { @@ -506,7 +506,7 @@ export async function pickupNearbyItems(bot) { let pickedUp = 0; while (nearestItem) { bot.pathfinder.setMovements(new pf.Movements(bot)); - await bot.pathfinder.goto(new pf.goals.GoalFollow(nearestItem, 0.8), true); + await goToGoal(bot, new pf.goals.GoalFollow(nearestItem, 0.8)); await new Promise(resolve => setTimeout(resolve, 200)); let prev = nearestItem; nearestItem = getNearestItem(bot); @@ -549,7 +549,7 @@ export async function breakBlockAt(bot, x, y, z) { movements.canPlaceOn = false; movements.allow1by1towers = false; bot.pathfinder.setMovements(movements); - await bot.pathfinder.goto(new pf.goals.GoalNear(pos.x, pos.y, pos.z, 4)); + await goToGoal(bot, new pf.goals.GoalNear(pos.x, pos.y, pos.z, 4)); } if (bot.game.gameMode !== 'creative') { await bot.tool.equipForBlock(block); @@ -727,7 +727,7 @@ export async function placeBlock(bot, blockType, x, y, z, placeOn='bottom', dont let pos = targetBlock.position; let movements = new pf.Movements(bot); bot.pathfinder.setMovements(movements); - await bot.pathfinder.goto(new pf.goals.GoalNear(pos.x, pos.y, pos.z, 4)); + await goToGoal(bot, new pf.goals.GoalNear(pos.x, pos.y, pos.z, 4)); } await bot.equip(block, 'hand'); @@ -952,6 +952,10 @@ export async function giveToPlayer(bot, itemType, username, num=1) { * @example * await skills.giveToPlayer(bot, "oak_log", "player1"); **/ + if (bot.username === username) { + log(bot, `You cannot give items to yourself.`); + return false; + } let player = bot.players[username].entity if (!player) { log(bot, `Could not find ${username}.`); @@ -1011,7 +1015,7 @@ export async function giveToPlayer(bot, itemType, username, num=1) { export async function goToGoal(bot, goal) { /** - * Navigate to the given goal, attempting minimally destructive movements. + * Navigate to the given goal. Use doors and attempt minimally destructive movements. * @param {MinecraftBot} bot, reference to the minecraft bot. * @param {pf.goals.Goal} goal, the goal to navigate to. **/ @@ -1025,30 +1029,18 @@ export async function goToGoal(bot, goal) { const destructiveMovements = new pf.Movements(bot); - let final_movements = null; - let movements = [ - {name: 'nonDestructive', movements: nonDestructiveMovements}, - {name: 'destructive', movements: destructiveMovements} - ]; + let final_movements = destructiveMovements; const pathfind_timeout = 1000; - try { - for (let i = 0; i < movements.length; i++) { - const movement = movements[i].movements; - const path = await bot.pathfinder.getPathTo(movement, goal, pathfind_timeout); - if (path && path.path && path.path.length > 0 && path.status !== 'noPath') { - final_movements = movement; - log(bot, `Using ${movements[i].name} movements.`); - break; - } - } - if (!final_movements) { - log(bot, `Could not find a path to ${username}.`); - return false; - } - } catch (err) { - log(bot, `Could not find a path: ${err.message}.`); - return false; + if (await bot.pathfinder.getPathTo(nonDestructiveMovements, goal, pathfind_timeout).status === 'success') { + final_movements = nonDestructiveMovements; + log(bot, `Found non-destructive path.`); + } + else if (await bot.pathfinder.getPathTo(destructiveMovements, goal, pathfind_timeout).status === 'success') { + log(bot, `Found destructive path.`); + } + else { + log(bot, `Could not find a path to goal, attempting to navigate anyway using destructive movements.`); } const doorCheckInterval = startDoorInterval(bot); @@ -1059,9 +1051,9 @@ export async function goToGoal(bot, goal) { clearInterval(doorCheckInterval); return true; } catch (err) { - log(bot, `Could not find a path: ${err.message}.`); clearInterval(doorCheckInterval); - return false; + // we need to catch so we can clean up the door check interval, then rethrow the error + throw err; } } @@ -1168,9 +1160,16 @@ export async function goToPosition(bot, x, y, z, min_distance=2) { try { await goToGoal(bot, new pf.goals.GoalNear(x, y, z, min_distance)); - log(bot, `You have reached at ${x}, ${y}, ${z}.`); clearInterval(progressInterval); - return true; + const distance = bot.entity.position.distanceTo(new Vec3(x, y, z)); + if (distance <= min_distance+1) { + log(bot, `You have reached at ${x}, ${y}, ${z}.`); + return true; + } + else { + log(bot, `Unable to reach ${x}, ${y}, ${z}, you are ${Math.round(distance)} blocks away.`); + return false; + } } catch (err) { log(bot, `Pathfinding stopped: ${err.message}.`); clearInterval(progressInterval); @@ -1235,7 +1234,10 @@ export async function goToPlayer(bot, username, distance=3) { * @example * await skills.goToPlayer(bot, "player"); **/ - + if (bot.username === username) { + log(bot, `You are already at ${username}.`); + return true; + } if (bot.modes.isOn('cheat')) { bot.chat('/tp @s ' + username); log(bot, `Teleported to ${username}.`); @@ -1287,7 +1289,7 @@ export async function followPlayer(bot, username, distance=4) { if (bot.modes.isOn('cheat') && bot.entity.position.distanceTo(player.position) > 100 && player.isOnGround) { await goToPlayer(bot, username); } - const is_nearby = bot.entity.position.distanceTo(player.position) <= distance + 1; + const is_nearby = bot.entity.position.distanceTo(player.position) <= distance + 2; if (is_nearby) { clearInterval(doorCheckInterval); doorCheckInterval = null; @@ -1334,7 +1336,7 @@ export async function moveAway(bot, distance) { } } - await bot.pathfinder.goto(inverted_goal); + await goToGoal(bot, inverted_goal); let new_pos = bot.entity.position; log(bot, `Moved away from nearest entity to ${new_pos}.`); return true; @@ -1528,7 +1530,7 @@ export async function tillAndSow(bot, x, y, z, seedType=null) { if (bot.entity.position.distanceTo(block.position) > 4.5) { let pos = block.position; bot.pathfinder.setMovements(new pf.Movements(bot)); - await bot.pathfinder.goto(new pf.goals.GoalNear(pos.x, pos.y, pos.z, 4)); + await goToGoal(bot, new pf.goals.GoalNear(pos.x, pos.y, pos.z, 4)); } if (block.name !== 'farmland') { let hoe = bot.inventory.items().find(item => item.name.includes('hoe')); @@ -1574,7 +1576,7 @@ export async function activateNearestBlock(bot, type) { if (bot.entity.position.distanceTo(block.position) > 4.5) { let pos = block.position; bot.pathfinder.setMovements(new pf.Movements(bot)); - await bot.pathfinder.goto(new pf.goals.GoalNear(pos.x, pos.y, pos.z, 4)); + await goToGoal(bot, new pf.goals.GoalNear(pos.x, pos.y, pos.z, 4)); } await bot.activateBlock(block); log(bot, `Activated ${type} at x:${block.position.x.toFixed(1)}, y:${block.position.y.toFixed(1)}, z:${block.position.z.toFixed(1)}.`); diff --git a/src/agent/library/world.js b/src/agent/library/world.js index 0253b41..ae97d2d 100644 --- a/src/agent/library/world.js +++ b/src/agent/library/world.js @@ -354,6 +354,7 @@ export async function isClearPath(bot, target) { let movements = new pf.Movements(bot) movements.canDig = false; movements.canPlaceOn = false; + movements.canOpenDoors = false; let goal = new pf.goals.GoalNear(target.position.x, target.position.y, target.position.z, 1); let path = await bot.pathfinder.getPathTo(movements, goal, 100); return path.status === 'success'; From ccbaca6ecb6d73b2960ce76e98e366b1aae25728 Mon Sep 17 00:00:00 2001 From: MaxRobinsonTheGreat Date: Fri, 15 Aug 2025 11:21:11 -0500 Subject: [PATCH 088/101] fixed issue with door opening interval --- src/agent/library/skills.js | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/src/agent/library/skills.js b/src/agent/library/skills.js index 9d62ef1..8fd5086 100644 --- a/src/agent/library/skills.js +++ b/src/agent/library/skills.js @@ -1071,17 +1071,7 @@ function startDoorInterval(bot) { let prev_check = Date.now(); let stuck_time = 0; - // adjacent positions to check for doors - const positions = [ - bot.entity.position.clone(), - bot.entity.position.offset(0, 0, 1), - bot.entity.position.offset(0, 0, -1), - bot.entity.position.offset(1, 0, 0), - bot.entity.position.offset(-1, 0, 0), - ] - let elevated_positions = positions.map(position => position.offset(0, 1, 0)); - positions.push(...elevated_positions); - + const doorCheckInterval = setInterval(() => { const now = Date.now(); if (bot.entity.position.distanceTo(prev_pos) >= 0.1) { @@ -1092,6 +1082,16 @@ function startDoorInterval(bot) { if (stuck_time > 1200) { // shuffle positions so we're not always opening the same door + const positions = [ + bot.entity.position.clone(), + bot.entity.position.offset(0, 0, 1), // north + bot.entity.position.offset(0, 0, -1), + bot.entity.position.offset(1, 0, 0), + bot.entity.position.offset(-1, 0, 0), + ] + let elevated_positions = positions.map(position => position.offset(0, 1, 0)); + positions.push(...elevated_positions); + let currentIndex = positions.length; while (currentIndex != 0) { let randomIndex = Math.floor(Math.random() * currentIndex); @@ -1099,7 +1099,7 @@ function startDoorInterval(bot) { [positions[currentIndex], positions[randomIndex]] = [ positions[randomIndex], positions[currentIndex]]; } - + for (let position of positions) { let block = bot.blockAt(position); if (block && block.name && From 61e1010e490158911509dc65500c6bf01e16e508 Mon Sep 17 00:00:00 2001 From: MaxRobinsonTheGreat Date: Fri, 15 Aug 2025 16:14:27 -0500 Subject: [PATCH 089/101] a few protections from infinite loops --- src/agent/action_manager.js | 21 +++++++++++++++++++++ src/agent/agent.js | 6 +++++- src/agent/library/skills.js | 4 +++- 3 files changed, 29 insertions(+), 2 deletions(-) diff --git a/src/agent/action_manager.js b/src/agent/action_manager.js index 3af3c2b..470f507 100644 --- a/src/agent/action_manager.js +++ b/src/agent/action_manager.js @@ -7,6 +7,8 @@ export class ActionManager { this.timedout = false; this.resume_func = null; this.resume_name = ''; + this.last_action_time = 0; + this.recent_action_counter = 0; } async resumeAction(actionFn, timeout) { @@ -59,6 +61,25 @@ export class ActionManager { async _executeAction(actionLabel, actionFn, timeout = 10) { let TIMEOUT; try { + if (this.last_action_time > 0) { + let time_diff = Date.now() - this.last_action_time; + if (time_diff < 20) { + this.recent_action_counter++; + } + else { + this.recent_action_counter = 0; + } + if (this.recent_action_counter > 2) { + console.warn('Fast action loop detected, cancelling resume.'); + this.cancelResume(); // likely cause of repetition + } + if (this.recent_action_counter > 5) { + console.error('Infinite action loop detected, shutting down.'); + this.agent.cleanKill('Infinite action loop detected, shutting down.'); + return { success: false, message: 'Infinite action loop detected, shutting down.', interrupted: false, timedout: false }; + } + } + this.last_action_time = Date.now(); console.log('executing code...\n'); // await current action to finish (executing=false), with 10 seconds timeout diff --git a/src/agent/agent.js b/src/agent/agent.js index f478764..4a7a4a1 100644 --- a/src/agent/agent.js +++ b/src/agent/agent.js @@ -439,7 +439,11 @@ export class Agent { this.bot.clearControlStates(); this.bot.pathfinder.stop(); // clear any lingering pathfinder this.bot.modes.unPauseAll(); - this.actions.resumeAction(); + setTimeout(() => { + if (this.isIdle()) { + this.actions.resumeAction(); + } + }, 1000); }); // Init NPC controller diff --git a/src/agent/library/skills.js b/src/agent/library/skills.js index 8fd5086..68cd4d0 100644 --- a/src/agent/library/skills.js +++ b/src/agent/library/skills.js @@ -1084,13 +1084,15 @@ function startDoorInterval(bot) { // shuffle positions so we're not always opening the same door const positions = [ bot.entity.position.clone(), - bot.entity.position.offset(0, 0, 1), // north + bot.entity.position.offset(0, 0, 1), bot.entity.position.offset(0, 0, -1), bot.entity.position.offset(1, 0, 0), bot.entity.position.offset(-1, 0, 0), ] let elevated_positions = positions.map(position => position.offset(0, 1, 0)); positions.push(...elevated_positions); + positions.push(bot.entity.position.offset(0, 2, 0)); // above head + positions.push(bot.entity.position.offset(0, -1, 0)); // below feet let currentIndex = positions.length; while (currentIndex != 0) { From dde8ef210f0d6f845810c3bcc58c23ebff1da884 Mon Sep 17 00:00:00 2001 From: MaxRobinsonTheGreat Date: Sun, 17 Aug 2025 11:19:34 -0500 Subject: [PATCH 090/101] quickfix gpt 5, add assistant base profile --- profiles/defaults/assistant.json | 14 ++++++++++++++ settings.js | 2 +- src/mindcraft/public/settings_spec.json | 2 +- src/models/gpt.js | 2 +- src/models/prompter.js | 2 ++ 5 files changed, 19 insertions(+), 3 deletions(-) create mode 100644 profiles/defaults/assistant.json diff --git a/profiles/defaults/assistant.json b/profiles/defaults/assistant.json new file mode 100644 index 0000000..eb66d12 --- /dev/null +++ b/profiles/defaults/assistant.json @@ -0,0 +1,14 @@ +{ + "modes": { + "self_preservation": true, + "unstuck": true, + "cowardice": false, + "self_defense": true, + "hunting": false, + "item_collecting": true, + "torch_placing": true, + "elbow_room": true, + "idle_staring": true, + "cheat": false + } +} \ No newline at end of file diff --git a/settings.js b/settings.js index b27f7f5..855fea7 100644 --- a/settings.js +++ b/settings.js @@ -7,7 +7,7 @@ const settings = { // the mindserver manages all agents and hosts the UI "mindserver_port": 8080, - "base_profile": "survival", // survival, creative, or god_mode + "base_profile": "survival", // survival, creative, assistant, or god_mode "profiles": [ "./andy.json", // "./profiles/gpt.json", diff --git a/src/mindcraft/public/settings_spec.json b/src/mindcraft/public/settings_spec.json index 9023af6..f431256 100644 --- a/src/mindcraft/public/settings_spec.json +++ b/src/mindcraft/public/settings_spec.json @@ -26,7 +26,7 @@ }, "base_profile": { "type": "string", - "description": "Allowed values: survival, creative, god_mode. Each has fine tuned settings for different game modes.", + "description": "Allowed values: survival, assistant, creative, god_mode. Each has fine tuned settings for different game modes.", "default": "survival" }, "load_memory": { diff --git a/src/models/gpt.js b/src/models/gpt.js index 4f33f22..e8e5c5c 100644 --- a/src/models/gpt.js +++ b/src/models/gpt.js @@ -28,7 +28,7 @@ export class GPT { stop: stop_seq, ...(this.params || {}) }; - if (this.model_name.includes('o1')) { + if (this.model_name.includes('o1') || this.model_name.includes('o3') || this.model_name.includes('5')) { delete pack.stop; } diff --git a/src/models/prompter.js b/src/models/prompter.js index d1de9bf..89d5fe9 100644 --- a/src/models/prompter.js +++ b/src/models/prompter.js @@ -37,6 +37,8 @@ export class Prompter { let base_fp = ''; if (settings.base_profile.includes('survival')) { base_fp = './profiles/defaults/survival.json'; + } else if (settings.base_profile.includes('assistant')) { + base_fp = './profiles/defaults/assistant.json'; } else if (settings.base_profile.includes('creative')) { base_fp = './profiles/defaults/creative.json'; } else if (settings.base_profile.includes('god_mode')) { From 0cd4dcd4205ec5d52c2b264144b222c1f05ae0fb Mon Sep 17 00:00:00 2001 From: MaxRobinsonTheGreat Date: Mon, 18 Aug 2025 23:21:57 -0500 Subject: [PATCH 091/101] lil fixes to smelting/pathfinding --- settings.js | 2 +- src/agent/action_manager.js | 2 +- src/agent/commands/actions.js | 7 +------ src/agent/modes.js | 2 +- 4 files changed, 4 insertions(+), 9 deletions(-) diff --git a/settings.js b/settings.js index 855fea7..c0f7705 100644 --- a/settings.js +++ b/settings.js @@ -7,7 +7,7 @@ const settings = { // the mindserver manages all agents and hosts the UI "mindserver_port": 8080, - "base_profile": "survival", // survival, creative, assistant, or god_mode + "base_profile": "survival", // survival, assistant, creative, or god_mode "profiles": [ "./andy.json", // "./profiles/gpt.json", diff --git a/src/agent/action_manager.js b/src/agent/action_manager.js index 470f507..9b9d0d2 100644 --- a/src/agent/action_manager.js +++ b/src/agent/action_manager.js @@ -69,7 +69,7 @@ export class ActionManager { else { this.recent_action_counter = 0; } - if (this.recent_action_counter > 2) { + if (this.recent_action_counter > 3) { console.warn('Fast action loop detected, cancelling resume.'); this.cancelResume(); // likely cause of repetition } diff --git a/src/agent/commands/actions.js b/src/agent/commands/actions.js index e321764..4e6acbb 100644 --- a/src/agent/commands/actions.js +++ b/src/agent/commands/actions.js @@ -278,12 +278,7 @@ export const actionsList = [ 'num': { type: 'int', description: 'The number of times to smelt the item.', domain: [1, Number.MAX_SAFE_INTEGER] } }, perform: runAsAction(async (agent, item_name, num) => { - let success = await skills.smeltItem(agent.bot, item_name, num); - if (success) { - setTimeout(() => { - agent.cleanKill('Safely restarting to update inventory.'); - }, 500); - } + await skills.smeltItem(agent.bot, item_name, num); }) }, { diff --git a/src/agent/modes.js b/src/agent/modes.js index cde53fc..ce196af 100644 --- a/src/agent/modes.js +++ b/src/agent/modes.js @@ -156,7 +156,7 @@ const modes_list = [ { name: 'hunting', description: 'Hunt nearby animals when idle.', - interrupts: [], + interrupts: ['action:followPlayer'], on: true, active: false, update: async function (agent) { From 2a38d310fcd26a49976da6c0d2bfddaa97ff2a3b Mon Sep 17 00:00:00 2001 From: MaxRobinsonTheGreat Date: Wed, 20 Aug 2025 13:08:59 -0500 Subject: [PATCH 092/101] refactor models for better modularity, use sweaterdog ollama/local --- src/models/_model_map.js | 88 +++++++++++++++ src/models/gemini.js | 6 +- src/models/{local.js => ollama.js} | 69 ++++++------ src/models/prompter.js | 166 ++++------------------------- 4 files changed, 150 insertions(+), 179 deletions(-) create mode 100644 src/models/_model_map.js rename src/models/{local.js => ollama.js} (60%) diff --git a/src/models/_model_map.js b/src/models/_model_map.js new file mode 100644 index 0000000..10fa893 --- /dev/null +++ b/src/models/_model_map.js @@ -0,0 +1,88 @@ +import { Gemini } from './gemini.js'; +import { GPT } from './gpt.js'; +import { Claude } from './claude.js'; +import { Mistral } from './mistral.js'; +import { ReplicateAPI } from './replicate.js'; +import { Ollama } from './ollama.js'; +import { Novita } from './novita.js'; +import { GroqCloudAPI } from './groq.js'; +import { HuggingFace } from './huggingface.js'; +import { Qwen } from "./qwen.js"; +import { Grok } from "./grok.js"; +import { DeepSeek } from './deepseek.js'; +import { Hyperbolic } from './hyperbolic.js'; +import { GLHF } from './glhf.js'; +import { OpenRouter } from './openrouter.js'; +import { VLLM } from './vllm.js'; + +// Add new models here. +// It maps api prefixes to model classes, eg 'openai/gpt-4o' -> GPT +const apiMap = { + 'openai': GPT, + 'google': Gemini, + 'anthropic': Claude, + 'replicate': ReplicateAPI, + 'ollama': Ollama, + 'mistral': Mistral, + 'groq': GroqCloudAPI, + 'huggingface': HuggingFace, + 'novita': Novita, + 'qwen': Qwen, + 'grok': Grok, + 'deepseek': DeepSeek, + 'hyperbolic': Hyperbolic, + 'glhf': GLHF, + 'openrouter': OpenRouter, + 'vllm': VLLM, +} + +export function selectAPI(profile) { + if (typeof profile === 'string' || profile instanceof String) { + profile = {model: profile}; + } + const api = Object.keys(apiMap).find(key => profile.model.startsWith(key)); + if (api) { + profile.api = api; + } + else { + // backwards compatibility with local->ollama + if (profile.model.includes('local')) { + profile.api = 'ollama'; + profile.model = profile.model.replace('local/', ''); + } + // check for some common models that do not require prefixes + else if (profile.model.includes('gpt') || profile.model.includes('o1')|| profile.model.includes('o3')) + profile.api = 'openai'; + else if (profile.model.includes('claude')) + profile.api = 'anthropic'; + else if (profile.model.includes('gemini')) + profile.api = "google"; + else if (profile.model.includes('grok')) + profile.api = 'grok'; + else if (profile.model.includes('mistral')) + profile.api = 'mistral'; + else if (profile.model.includes('deepseek')) + profile.api = 'deepseek'; + else if (profile.model.includes('qwen')) + profile.api = 'qwen'; + } + if (!profile.api) { + throw new Error('Unknown model:', profile.model); + } + let model_name = profile.model.replace(profile.api + '/', ''); // remove prefix + profile.model = model_name === "" ? null : model_name; // if model is empty, set to null + return profile; +} + +export function createModel(profile) { + if (!!apiMap[profile.model]) { + // if the model value is an api (instead of a specific model name) + // then set model to null so it uses the default model for that api + profile.model = null; + } + if (!apiMap[profile.api]) { + throw new Error('Unknown api:', profile.api); + } + const model = new apiMap[profile.api](profile.model, profile.url, profile.params); + return model; +} \ No newline at end of file diff --git a/src/models/gemini.js b/src/models/gemini.js index 4d24c93..4e3af14 100644 --- a/src/models/gemini.js +++ b/src/models/gemini.js @@ -142,15 +142,15 @@ export class Gemini { } async embed(text) { - let model; + let model = this.model_name || "text-embedding-004"; if (this.url) { model = this.genAI.getGenerativeModel( - { model: "text-embedding-004" }, + { model }, { baseUrl: this.url } ); } else { model = this.genAI.getGenerativeModel( - { model: "text-embedding-004" } + { model } ); } diff --git a/src/models/local.js b/src/models/ollama.js similarity index 60% rename from src/models/local.js rename to src/models/ollama.js index e51bcf8..064d2ad 100644 --- a/src/models/local.js +++ b/src/models/ollama.js @@ -1,6 +1,6 @@ import { strictFormat } from '../utils/text.js'; -export class Local { +export class Ollama { constructor(model_name, url, params) { this.model_name = model_name; this.params = params; @@ -10,11 +10,9 @@ export class Local { } async sendRequest(turns, systemMessage) { - let model = this.model_name || 'llama3.1'; // Updated to llama3.1, as it is more performant than llama3 + let model = this.model_name || 'sweaterdog/andy-4:micro-q5_k_m'; let messages = strictFormat(turns); messages.unshift({ role: 'system', content: systemMessage }); - - // We'll attempt up to 5 times for models with deepseek-r1-esk reasoning if the tags are mismatched. const maxAttempts = 5; let attempt = 0; let finalRes = null; @@ -24,14 +22,14 @@ export class Local { console.log(`Awaiting local response... (model: ${model}, attempt: ${attempt})`); let res = null; try { - res = await this.send(this.chat_endpoint, { + let apiResponse = await this.send(this.chat_endpoint, { model: model, messages: messages, stream: false, ...(this.params || {}) }); - if (res) { - res = res['message']['content']; + if (apiResponse) { + res = apiResponse['message']['content']; } else { res = 'No response data.'; } @@ -43,36 +41,27 @@ export class Local { console.log(err); res = 'My brain disconnected, try again.'; } - } - // If the model name includes "deepseek-r1" or "Andy-3.5-reasoning", then handle the block. - const hasOpenTag = res.includes(""); - const hasCloseTag = res.includes(""); - - // If there's a partial mismatch, retry to get a complete response. - if ((hasOpenTag && !hasCloseTag)) { - console.warn("Partial block detected. Re-generating..."); - continue; - } - - // If is present but is not, prepend - if (hasCloseTag && !hasOpenTag) { - res = '' + res; - } - // Changed this so if the model reasons, using and but doesn't start the message with , ges prepended to the message so no error occur. - - // If both tags appear, remove them (and everything inside). - if (hasOpenTag && hasCloseTag) { - res = res.replace(/[\s\S]*?<\/think>/g, ''); - } + const hasOpenTag = res.includes(""); + const hasCloseTag = res.includes(""); + if ((hasOpenTag && !hasCloseTag)) { + console.warn("Partial block detected. Re-generating..."); + if (attempt < maxAttempts) continue; + } + if (hasCloseTag && !hasOpenTag) { + res = '' + res; + } + if (hasOpenTag && hasCloseTag) { + res = res.replace(/[\s\S]*?<\/think>/g, '').trim(); + } finalRes = res; - break; // Exit the loop if we got a valid response. + break; } if (finalRes == null) { - console.warn("Could not get a valid block or normal response after max attempts."); + console.warn("Could not get a valid response after max attempts."); finalRes = 'I thought too hard, sorry, try again.'; } return finalRes; @@ -104,4 +93,22 @@ export class Local { } return data; } -} + + async sendVisionRequest(messages, systemMessage, imageBuffer) { + const imageMessages = [...messages]; + imageMessages.push({ + role: "user", + content: [ + { type: "text", text: systemMessage }, + { + type: "image_url", + image_url: { + url: `data:image/jpeg;base64,${imageBuffer.toString('base64')}` + } + } + ] + }); + + return this.sendRequest(imageMessages, systemMessage); + } +} \ No newline at end of file diff --git a/src/models/prompter.js b/src/models/prompter.js index 89d5fe9..a8c4db7 100644 --- a/src/models/prompter.js +++ b/src/models/prompter.js @@ -5,26 +5,10 @@ import { SkillLibrary } from "../agent/library/skill_library.js"; import { stringifyTurns } from '../utils/text.js'; import { getCommand } from '../agent/commands/index.js'; import settings from '../agent/settings.js'; - -import { Gemini } from './gemini.js'; -import { GPT } from './gpt.js'; -import { Claude } from './claude.js'; -import { Mistral } from './mistral.js'; -import { ReplicateAPI } from './replicate.js'; -import { Local } from './local.js'; -import { Novita } from './novita.js'; -import { GroqCloudAPI } from './groq.js'; -import { HuggingFace } from './huggingface.js'; -import { Qwen } from "./qwen.js"; -import { Grok } from "./grok.js"; -import { DeepSeek } from './deepseek.js'; -import { Hyperbolic } from './hyperbolic.js'; -import { GLHF } from './glhf.js'; -import { OpenRouter } from './openrouter.js'; -import { VLLM } from './vllm.js'; import { promises as fs } from 'fs'; import path from 'path'; import { fileURLToPath } from 'url'; +import { selectAPI, createModel } from './_model_map.js'; const __filename = fileURLToPath(import.meta.url); const __dirname = path.dirname(__filename); @@ -66,70 +50,46 @@ export class Prompter { this.last_prompt_time = 0; this.awaiting_coding = false; - // try to get "max_tokens" parameter, else null + // for backwards compatibility, move max_tokens to params let max_tokens = null; if (this.profile.max_tokens) max_tokens = this.profile.max_tokens; - let chat_model_profile = this._selectAPI(this.profile.model); - this.chat_model = this._createModel(chat_model_profile); + let chat_model_profile = selectAPI(this.profile.model); + this.chat_model = createModel(chat_model_profile); if (this.profile.code_model) { - let code_model_profile = this._selectAPI(this.profile.code_model); - this.code_model = this._createModel(code_model_profile); + let code_model_profile = selectAPI(this.profile.code_model); + this.code_model = createModel(code_model_profile); } else { this.code_model = this.chat_model; } if (this.profile.vision_model) { - let vision_model_profile = this._selectAPI(this.profile.vision_model); - this.vision_model = this._createModel(vision_model_profile); + let vision_model_profile = selectAPI(this.profile.vision_model); + this.vision_model = createModel(vision_model_profile); } else { this.vision_model = this.chat_model; } - let embedding = this.profile.embedding; - if (embedding === undefined) { - if (chat_model_profile.api !== 'ollama') - embedding = {api: chat_model_profile.api}; - else - embedding = {api: 'none'}; - } - else if (typeof embedding === 'string' || embedding instanceof String) - embedding = {api: embedding}; - - console.log('Using embedding settings:', embedding); - - try { - if (embedding.api === 'google') - this.embedding_model = new Gemini(embedding.model, embedding.url); - else if (embedding.api === 'openai') - this.embedding_model = new GPT(embedding.model, embedding.url); - else if (embedding.api === 'replicate') - this.embedding_model = new ReplicateAPI(embedding.model, embedding.url); - else if (embedding.api === 'ollama') - this.embedding_model = new Local(embedding.model, embedding.url); - else if (embedding.api === 'qwen') - this.embedding_model = new Qwen(embedding.model, embedding.url); - else if (embedding.api === 'mistral') - this.embedding_model = new Mistral(embedding.model, embedding.url); - else if (embedding.api === 'huggingface') - this.embedding_model = new HuggingFace(embedding.model, embedding.url); - else if (embedding.api === 'novita') - this.embedding_model = new Novita(embedding.model, embedding.url); - else { - this.embedding_model = null; - let embedding_name = embedding ? embedding.api : '[NOT SPECIFIED]' - console.warn('Unsupported embedding: ' + embedding_name + '. Using word-overlap instead, expect reduced performance. Recommend using a supported embedding model. See Readme.'); + + let embedding_model_profile = null; + if (this.profile.embedding) { + try { + embedding_model_profile = selectAPI(this.profile.embedding); + } catch (e) { + embedding_model_profile = null; } } - catch (err) { - console.warn('Warning: Failed to initialize embedding model:', err.message); - console.log('Continuing anyway, using word-overlap instead.'); - this.embedding_model = null; + if (embedding_model_profile) { + this.embedding_model = createModel(embedding_model_profile); } + else { + this.embedding_model = createModel({api: chat_model_profile.api}); + } + this.skill_libary = new SkillLibrary(agent, this.embedding_model); mkdirSync(`./bots/${name}`, { recursive: true }); writeFileSync(`./bots/${name}/last_profile.json`, JSON.stringify(this.profile, null, 4), (err) => { @@ -140,88 +100,6 @@ export class Prompter { }); } - _selectAPI(profile) { - if (typeof profile === 'string' || profile instanceof String) { - profile = {model: profile}; - } - if (!profile.api) { - if (profile.model.includes('openrouter/')) - profile.api = 'openrouter'; // must do first because shares names with other models - else if (profile.model.includes('ollama/')) - profile.api = 'ollama'; // also must do early because shares names with other models - else if (profile.model.includes('gemini')) - profile.api = 'google'; - else if (profile.model.includes('vllm/')) - profile.api = 'vllm'; - else if (profile.model.includes('gpt') || profile.model.includes('o1')|| profile.model.includes('o3')) - profile.api = 'openai'; - else if (profile.model.includes('claude')) - profile.api = 'anthropic'; - else if (profile.model.includes('huggingface/')) - profile.api = "huggingface"; - else if (profile.model.includes('replicate/')) - profile.api = 'replicate'; - else if (profile.model.includes('mistralai/') || profile.model.includes("mistral/")) - model_profile.api = 'mistral'; - else if (profile.model.includes("groq/") || profile.model.includes("groqcloud/")) - profile.api = 'groq'; - else if (profile.model.includes("glhf/")) - profile.api = 'glhf'; - else if (profile.model.includes("hyperbolic/")) - profile.api = 'hyperbolic'; - else if (profile.model.includes('novita/')) - profile.api = 'novita'; - else if (profile.model.includes('qwen')) - profile.api = 'qwen'; - else if (profile.model.includes('grok')) - profile.api = 'xai'; - else if (profile.model.includes('deepseek')) - profile.api = 'deepseek'; - else if (profile.model.includes('mistral')) - profile.api = 'mistral'; - else - throw new Error('Unknown model:', profile.model); - } - return profile; - } - _createModel(profile) { - let model = null; - if (profile.api === 'google') - model = new Gemini(profile.model, profile.url, profile.params); - else if (profile.api === 'openai') - model = new GPT(profile.model, profile.url, profile.params); - else if (profile.api === 'anthropic') - model = new Claude(profile.model, profile.url, profile.params); - else if (profile.api === 'replicate') - model = new ReplicateAPI(profile.model.replace('replicate/', ''), profile.url, profile.params); - else if (profile.api === 'ollama') - model = new Local(profile.model.replace('ollama/', ''), profile.url, profile.params); - else if (profile.api === 'mistral') - model = new Mistral(profile.model, profile.url, profile.params); - else if (profile.api === 'groq') - model = new GroqCloudAPI(profile.model.replace('groq/', '').replace('groqcloud/', ''), profile.url, profile.params); - else if (profile.api === 'huggingface') - model = new HuggingFace(profile.model, profile.url, profile.params); - else if (profile.api === 'glhf') - model = new GLHF(profile.model.replace('glhf/', ''), profile.url, profile.params); - else if (profile.api === 'hyperbolic') - model = new Hyperbolic(profile.model.replace('hyperbolic/', ''), profile.url, profile.params); - else if (profile.api === 'novita') - model = new Novita(profile.model.replace('novita/', ''), profile.url, profile.params); - else if (profile.api === 'qwen') - model = new Qwen(profile.model, profile.url, profile.params); - else if (profile.api === 'xai') - model = new Grok(profile.model, profile.url, profile.params); - else if (profile.api === 'deepseek') - model = new DeepSeek(profile.model, profile.url, profile.params); - else if (profile.api === 'openrouter') - model = new OpenRouter(profile.model.replace('openrouter/', ''), profile.url, profile.params); - else if (profile.api === 'vllm') - model = new VLLM(profile.model.replace('vllm/', ''), profile.url, profile.params); - else - throw new Error('Unknown API:', profile.api); - return model; - } getName() { return this.profile.name; } @@ -482,6 +360,4 @@ export class Prompter { logFile = path.join(logDir, logFile); await fs.appendFile(logFile, String(logEntry), 'utf-8'); } - - } From 14eff85120063697df43d43b614dc0c52e81a717 Mon Sep 17 00:00:00 2001 From: MaxRobinsonTheGreat Date: Wed, 20 Aug 2025 18:04:00 -0500 Subject: [PATCH 093/101] dynamically load models --- src/models/_model_map.js | 123 +++++++++++++++++++------------------- src/models/claude.js | 1 + src/models/deepseek.js | 1 + src/models/gemini.js | 1 + src/models/glhf.js | 1 + src/models/gpt.js | 11 ++-- src/models/grok.js | 1 + src/models/groq.js | 2 +- src/models/huggingface.js | 1 + src/models/hyperbolic.js | 1 + src/models/mistral.js | 1 + src/models/novita.js | 1 + src/models/ollama.js | 1 + src/models/openrouter.js | 1 + src/models/qwen.js | 1 + src/models/replicate.js | 1 + src/models/vllm.js | 6 +- 17 files changed, 85 insertions(+), 70 deletions(-) diff --git a/src/models/_model_map.js b/src/models/_model_map.js index 10fa893..be43893 100644 --- a/src/models/_model_map.js +++ b/src/models/_model_map.js @@ -1,73 +1,74 @@ -import { Gemini } from './gemini.js'; -import { GPT } from './gpt.js'; -import { Claude } from './claude.js'; -import { Mistral } from './mistral.js'; -import { ReplicateAPI } from './replicate.js'; -import { Ollama } from './ollama.js'; -import { Novita } from './novita.js'; -import { GroqCloudAPI } from './groq.js'; -import { HuggingFace } from './huggingface.js'; -import { Qwen } from "./qwen.js"; -import { Grok } from "./grok.js"; -import { DeepSeek } from './deepseek.js'; -import { Hyperbolic } from './hyperbolic.js'; -import { GLHF } from './glhf.js'; -import { OpenRouter } from './openrouter.js'; -import { VLLM } from './vllm.js'; +import { promises as fs } from 'fs'; +import path from 'path'; +import { fileURLToPath, pathToFileURL } from 'url'; -// Add new models here. -// It maps api prefixes to model classes, eg 'openai/gpt-4o' -> GPT -const apiMap = { - 'openai': GPT, - 'google': Gemini, - 'anthropic': Claude, - 'replicate': ReplicateAPI, - 'ollama': Ollama, - 'mistral': Mistral, - 'groq': GroqCloudAPI, - 'huggingface': HuggingFace, - 'novita': Novita, - 'qwen': Qwen, - 'grok': Grok, - 'deepseek': DeepSeek, - 'hyperbolic': Hyperbolic, - 'glhf': GLHF, - 'openrouter': OpenRouter, - 'vllm': VLLM, -} +const __filename = fileURLToPath(import.meta.url); +const __dirname = path.dirname(__filename); + +// Dynamically discover model classes in this directory. +// Each model class must export a static `prefix` string. +const apiMap = await (async () => { + const map = {}; + const files = (await fs.readdir(__dirname)) + .filter(f => f.endsWith('.js') && f !== '_model_map.js' && f !== 'prompter.js'); + for (const file of files) { + try { + const moduleUrl = pathToFileURL(path.join(__dirname, file)).href; + const mod = await import(moduleUrl); + for (const exported of Object.values(mod)) { + if (typeof exported === 'function' && Object.prototype.hasOwnProperty.call(exported, 'prefix')) { + const prefix = exported.prefix; + if (typeof prefix === 'string' && prefix.length > 0) { + map[prefix] = exported; + } + } + } + } catch (e) { + console.warn('Failed to load model module:', file, e?.message || e); + } + } + return map; +})(); export function selectAPI(profile) { if (typeof profile === 'string' || profile instanceof String) { profile = {model: profile}; } - const api = Object.keys(apiMap).find(key => profile.model.startsWith(key)); - if (api) { - profile.api = api; - } - else { - // backwards compatibility with local->ollama - if (profile.model.includes('local')) { - profile.api = 'ollama'; - profile.model = profile.model.replace('local/', ''); + // backwards compatibility with local->ollama + if (profile.api?.includes('local') || profile.model?.includes('local')) { + profile.api = 'ollama'; + if (profile.model) { + profile.model = profile.model.replace('local', 'ollama'); } - // check for some common models that do not require prefixes - else if (profile.model.includes('gpt') || profile.model.includes('o1')|| profile.model.includes('o3')) - profile.api = 'openai'; - else if (profile.model.includes('claude')) - profile.api = 'anthropic'; - else if (profile.model.includes('gemini')) - profile.api = "google"; - else if (profile.model.includes('grok')) - profile.api = 'grok'; - else if (profile.model.includes('mistral')) - profile.api = 'mistral'; - else if (profile.model.includes('deepseek')) - profile.api = 'deepseek'; - else if (profile.model.includes('qwen')) - profile.api = 'qwen'; } if (!profile.api) { - throw new Error('Unknown model:', profile.model); + const api = Object.keys(apiMap).find(key => profile.model?.startsWith(key)); + if (api) { + profile.api = api; + } + else { + // check for some common models that do not require prefixes + if (profile.model.includes('gpt') || profile.model.includes('o1')|| profile.model.includes('o3')) + profile.api = 'openai'; + else if (profile.model.includes('claude')) + profile.api = 'anthropic'; + else if (profile.model.includes('gemini')) + profile.api = "google"; + else if (profile.model.includes('grok')) + profile.api = 'grok'; + else if (profile.model.includes('mistral')) + profile.api = 'mistral'; + else if (profile.model.includes('deepseek')) + profile.api = 'deepseek'; + else if (profile.model.includes('qwen')) + profile.api = 'qwen'; + } + if (!profile.api) { + throw new Error('Unknown model:', profile.model); + } + } + if (!apiMap[profile.api]) { + throw new Error('Unknown api:', profile.api); } let model_name = profile.model.replace(profile.api + '/', ''); // remove prefix profile.model = model_name === "" ? null : model_name; // if model is empty, set to null diff --git a/src/models/claude.js b/src/models/claude.js index d6e48bc..c42d2e6 100644 --- a/src/models/claude.js +++ b/src/models/claude.js @@ -3,6 +3,7 @@ import { strictFormat } from '../utils/text.js'; import { getKey } from '../utils/keys.js'; export class Claude { + static prefix = 'anthropic'; constructor(model_name, url, params) { this.model_name = model_name; this.params = params || {}; diff --git a/src/models/deepseek.js b/src/models/deepseek.js index da98ba2..5596fa8 100644 --- a/src/models/deepseek.js +++ b/src/models/deepseek.js @@ -3,6 +3,7 @@ import { getKey, hasKey } from '../utils/keys.js'; import { strictFormat } from '../utils/text.js'; export class DeepSeek { + static prefix = 'deepseek'; constructor(model_name, url, params) { this.model_name = model_name; this.params = params; diff --git a/src/models/gemini.js b/src/models/gemini.js index 4e3af14..75a20e0 100644 --- a/src/models/gemini.js +++ b/src/models/gemini.js @@ -3,6 +3,7 @@ import { toSinglePrompt, strictFormat } from '../utils/text.js'; import { getKey } from '../utils/keys.js'; export class Gemini { + static prefix = 'google'; constructor(model_name, url, params) { this.model_name = model_name; this.params = params; diff --git a/src/models/glhf.js b/src/models/glhf.js index d41b843..b237c8d 100644 --- a/src/models/glhf.js +++ b/src/models/glhf.js @@ -2,6 +2,7 @@ import OpenAIApi from 'openai'; import { getKey } from '../utils/keys.js'; export class GLHF { + static prefix = 'glhf'; constructor(model_name, url) { this.model_name = model_name; const apiKey = getKey('GHLF_API_KEY'); diff --git a/src/models/gpt.js b/src/models/gpt.js index e8e5c5c..ea7d600 100644 --- a/src/models/gpt.js +++ b/src/models/gpt.js @@ -3,6 +3,7 @@ import { getKey, hasKey } from '../utils/keys.js'; import { strictFormat } from '../utils/text.js'; export class GPT { + static prefix = 'openai'; constructor(model_name, url, params) { this.model_name = model_name; this.params = params; @@ -22,20 +23,21 @@ export class GPT { async sendRequest(turns, systemMessage, stop_seq='***') { let messages = [{'role': 'system', 'content': systemMessage}].concat(turns); messages = strictFormat(messages); + let model = this.model_name || "gpt-4o-mini"; const pack = { - model: this.model_name || "gpt-3.5-turbo", + model: model, messages, stop: stop_seq, ...(this.params || {}) }; - if (this.model_name.includes('o1') || this.model_name.includes('o3') || this.model_name.includes('5')) { + if (model.includes('o1') || model.includes('o3') || model.includes('5')) { delete pack.stop; } let res = null; try { - console.log('Awaiting openai api response from model', this.model_name) + console.log('Awaiting openai api response from model', model) // console.log('Messages:', messages); let completion = await this.openai.chat.completions.create(pack); if (completion.choices[0].finish_reason == 'length') @@ -88,6 +90,3 @@ export class GPT { } } - - - diff --git a/src/models/grok.js b/src/models/grok.js index 2878a10..0753f10 100644 --- a/src/models/grok.js +++ b/src/models/grok.js @@ -3,6 +3,7 @@ import { getKey } from '../utils/keys.js'; // xAI doesn't supply a SDK for their models, but fully supports OpenAI and Anthropic SDKs export class Grok { + static prefix = 'grok'; constructor(model_name, url, params) { this.model_name = model_name; this.url = url; diff --git a/src/models/groq.js b/src/models/groq.js index e4e8f3b..9da88c7 100644 --- a/src/models/groq.js +++ b/src/models/groq.js @@ -6,6 +6,7 @@ import { getKey } from '../utils/keys.js'; // Umbrella class for everything under the sun... That GroqCloud provides, that is. export class GroqCloudAPI { + static prefix = 'groq'; constructor(model_name, url, params) { @@ -63,7 +64,6 @@ export class GroqCloudAPI { if (err.message.includes("content must be a string")) { res = "Vision is only supported by certain models."; } else { - console.log(this.model_name); res = "My brain disconnected, try again."; } console.log(err); diff --git a/src/models/huggingface.js b/src/models/huggingface.js index 80c36e8..91fbdfd 100644 --- a/src/models/huggingface.js +++ b/src/models/huggingface.js @@ -3,6 +3,7 @@ import { getKey } from '../utils/keys.js'; import { HfInference } from "@huggingface/inference"; export class HuggingFace { + static prefix = 'huggingface'; constructor(model_name, url, params) { // Remove 'huggingface/' prefix if present this.model_name = model_name.replace('huggingface/', ''); diff --git a/src/models/hyperbolic.js b/src/models/hyperbolic.js index a2ccc48..f483b69 100644 --- a/src/models/hyperbolic.js +++ b/src/models/hyperbolic.js @@ -1,6 +1,7 @@ import { getKey } from '../utils/keys.js'; export class Hyperbolic { + static prefix = 'hyperbolic'; constructor(modelName, apiUrl) { this.modelName = modelName || "deepseek-ai/DeepSeek-V3"; this.apiUrl = apiUrl || "https://api.hyperbolic.xyz/v1/chat/completions"; diff --git a/src/models/mistral.js b/src/models/mistral.js index 72448f1..536b386 100644 --- a/src/models/mistral.js +++ b/src/models/mistral.js @@ -3,6 +3,7 @@ import { getKey } from '../utils/keys.js'; import { strictFormat } from '../utils/text.js'; export class Mistral { + static prefix = 'mistral'; #client; constructor(model_name, url, params) { diff --git a/src/models/novita.js b/src/models/novita.js index 8f2dd08..380fa4c 100644 --- a/src/models/novita.js +++ b/src/models/novita.js @@ -4,6 +4,7 @@ import { strictFormat } from '../utils/text.js'; // llama, mistral export class Novita { + static prefix = 'novita'; constructor(model_name, url, params) { this.model_name = model_name.replace('novita/', ''); this.url = url || 'https://api.novita.ai/v3/openai'; diff --git a/src/models/ollama.js b/src/models/ollama.js index 064d2ad..37d8557 100644 --- a/src/models/ollama.js +++ b/src/models/ollama.js @@ -1,6 +1,7 @@ import { strictFormat } from '../utils/text.js'; export class Ollama { + static prefix = 'ollama'; constructor(model_name, url, params) { this.model_name = model_name; this.params = params; diff --git a/src/models/openrouter.js b/src/models/openrouter.js index 5cbc090..ca0782b 100644 --- a/src/models/openrouter.js +++ b/src/models/openrouter.js @@ -3,6 +3,7 @@ import { getKey, hasKey } from '../utils/keys.js'; import { strictFormat } from '../utils/text.js'; export class OpenRouter { + static prefix = 'openrouter'; constructor(model_name, url) { this.model_name = model_name; diff --git a/src/models/qwen.js b/src/models/qwen.js index 4dfacfe..a768b5b 100644 --- a/src/models/qwen.js +++ b/src/models/qwen.js @@ -3,6 +3,7 @@ import { getKey, hasKey } from '../utils/keys.js'; import { strictFormat } from '../utils/text.js'; export class Qwen { + static prefix = 'qwen'; constructor(model_name, url, params) { this.model_name = model_name; this.params = params; diff --git a/src/models/replicate.js b/src/models/replicate.js index c8c3ba3..aa296c5 100644 --- a/src/models/replicate.js +++ b/src/models/replicate.js @@ -4,6 +4,7 @@ import { getKey } from '../utils/keys.js'; // llama, mistral export class ReplicateAPI { + static prefix = 'replicate'; constructor(model_name, url, params) { this.model_name = model_name; this.url = url; diff --git a/src/models/vllm.js b/src/models/vllm.js index e9116ef..d821983 100644 --- a/src/models/vllm.js +++ b/src/models/vllm.js @@ -6,6 +6,7 @@ import { getKey, hasKey } from '../utils/keys.js'; import { strictFormat } from '../utils/text.js'; export class VLLM { + static prefix = 'vllm'; constructor(model_name, url) { this.model_name = model_name; @@ -23,13 +24,14 @@ export class VLLM { async sendRequest(turns, systemMessage, stop_seq = '***') { let messages = [{ 'role': 'system', 'content': systemMessage }].concat(turns); + let model = this.model_name || "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B"; - if (this.model_name.includes('deepseek') || this.model_name.includes('qwen')) { + if (model.includes('deepseek') || model.includes('qwen')) { messages = strictFormat(messages); } const pack = { - model: this.model_name || "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", + model: model, messages, stop: stop_seq, }; From 17cabc9df8eb90c90f9b2c6244940b6eeb6239a3 Mon Sep 17 00:00:00 2001 From: Sweaterdog Date: Fri, 22 Aug 2025 12:48:18 -0700 Subject: [PATCH 094/101] Update default model version in sendRequest method --- src/models/ollama.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/models/ollama.js b/src/models/ollama.js index 37d8557..49a80e0 100644 --- a/src/models/ollama.js +++ b/src/models/ollama.js @@ -11,7 +11,7 @@ export class Ollama { } async sendRequest(turns, systemMessage) { - let model = this.model_name || 'sweaterdog/andy-4:micro-q5_k_m'; + let model = this.model_name || 'sweaterdog/andy-4:micro-q8_0'; let messages = strictFormat(turns); messages.unshift({ role: 'system', content: systemMessage }); const maxAttempts = 5; @@ -112,4 +112,4 @@ export class Ollama { return this.sendRequest(imageMessages, systemMessage); } -} \ No newline at end of file +} From 66409185dfbd30d8460f927c11a31dc70d373671 Mon Sep 17 00:00:00 2001 From: MaxRobinsonTheGreat Date: Sat, 23 Aug 2025 11:45:14 -0500 Subject: [PATCH 095/101] revert change, should still restart after smelt --- src/agent/commands/actions.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/agent/commands/actions.js b/src/agent/commands/actions.js index 4e6acbb..e321764 100644 --- a/src/agent/commands/actions.js +++ b/src/agent/commands/actions.js @@ -278,7 +278,12 @@ export const actionsList = [ 'num': { type: 'int', description: 'The number of times to smelt the item.', domain: [1, Number.MAX_SAFE_INTEGER] } }, perform: runAsAction(async (agent, item_name, num) => { - await skills.smeltItem(agent.bot, item_name, num); + let success = await skills.smeltItem(agent.bot, item_name, num); + if (success) { + setTimeout(() => { + agent.cleanKill('Safely restarting to update inventory.'); + }, 500); + } }) }, { From cb263c1b02426158e8a2230514ae7f8060e6a727 Mon Sep 17 00:00:00 2001 From: MaxRobinsonTheGreat Date: Sat, 23 Aug 2025 11:47:07 -0500 Subject: [PATCH 096/101] clear furnace after smelt, better following logic --- src/agent/library/skills.js | 47 +++++++++++++++++++++++++++---------- 1 file changed, 35 insertions(+), 12 deletions(-) diff --git a/src/agent/library/skills.js b/src/agent/library/skills.js index 68cd4d0..4dbb6b5 100644 --- a/src/agent/library/skills.js +++ b/src/agent/library/skills.js @@ -228,28 +228,33 @@ export async function smeltItem(bot, itemName, num=1) { await furnace.putInput(mc.getItemId(itemName), null, num); // wait for the items to smelt let total = 0; - let collected_last = true; let smelted_item = null; await new Promise(resolve => setTimeout(resolve, 200)); + let last_collected = Date.now(); while (total < num) { - await new Promise(resolve => setTimeout(resolve, 10000)); - console.log('checking...'); - let collected = false; + await new Promise(resolve => setTimeout(resolve, 1000)); if (furnace.outputItem()) { smelted_item = await furnace.takeOutput(); if (smelted_item) { total += smelted_item.count; - collected = true; + last_collected = Date.now(); } } - if (!collected && !collected_last) { - break; // if nothing was collected this time or last time + if (Date.now() - last_collected > 11000) { + break; // if nothing has been collected in 11 seconds, stop } - collected_last = collected; if (bot.interrupt_code) { break; } } + // take all remaining in input/fuel slots + if (furnace.inputItem()) { + await furnace.takeInput(); + } + if (furnace.fuelItem()) { + await furnace.takeFuel(); + } + await bot.closeWindow(furnace); if (placedFurnace) { @@ -1040,7 +1045,7 @@ export async function goToGoal(bot, goal) { log(bot, `Found destructive path.`); } else { - log(bot, `Could not find a path to goal, attempting to navigate anyway using destructive movements.`); + log(bot, `Path not found, but attempting to navigate anyway using destructive movements.`); } const doorCheckInterval = startDoorInterval(bot); @@ -1288,11 +1293,29 @@ export async function followPlayer(bot, username, distance=4) { while (!bot.interrupt_code) { await new Promise(resolve => setTimeout(resolve, 500)); // in cheat mode, if the distance is too far, teleport to the player - if (bot.modes.isOn('cheat') && bot.entity.position.distanceTo(player.position) > 100 && player.isOnGround) { + const distance_from_player = bot.entity.position.distanceTo(player.position); + + const teleport_distance = 100; + const ignore_modes_distance = 30; + const nearby_distance = distance + 2; + + if (distance_from_player > teleport_distance && bot.modes.isOn('cheat')) { + // teleport with cheat mode await goToPlayer(bot, username); } - const is_nearby = bot.entity.position.distanceTo(player.position) <= distance + 2; - if (is_nearby) { + else if (distance_from_player > ignore_modes_distance) { + // these modes slow down the bot, and we want to catch up + bot.modes.pause('item_collecting'); + bot.modes.pause('hunting'); + bot.modes.pause('torch_placing'); + } + else if (distance_from_player <= ignore_modes_distance) { + bot.modes.unpause('item_collecting'); + bot.modes.unpause('hunting'); + bot.modes.unpause('torch_placing'); + } + + if (distance_from_player <= nearby_distance) { clearInterval(doorCheckInterval); doorCheckInterval = null; bot.modes.pause('unstuck'); From 246aa450bc7784e60bb9f0398955f15723aa51cf Mon Sep 17 00:00:00 2001 From: MaxRobinsonTheGreat Date: Sat, 23 Aug 2025 12:02:33 -0500 Subject: [PATCH 097/101] fix novita --- src/models/novita.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/models/novita.js b/src/models/novita.js index 380fa4c..46140f0 100644 --- a/src/models/novita.js +++ b/src/models/novita.js @@ -6,7 +6,7 @@ import { strictFormat } from '../utils/text.js'; export class Novita { static prefix = 'novita'; constructor(model_name, url, params) { - this.model_name = model_name.replace('novita/', ''); + this.model_name = model_name; this.url = url || 'https://api.novita.ai/v3/openai'; this.params = params; From 9b23a2177e4d47cd3cb9d6f8ca9903b5195367b3 Mon Sep 17 00:00:00 2001 From: Isadora White <54700097+icwhite@users.noreply.github.com> Date: Sat, 23 Aug 2025 13:40:00 -0400 Subject: [PATCH 098/101] test --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 07ce15a..4d2fe08 100644 --- a/README.md +++ b/README.md @@ -174,3 +174,5 @@ Some of the node modules that we depend on have bugs in them. To add a patch, ch url = {https://arxiv.org/abs/2504.17950}, } ``` + + From 4bf0deaa1b2526040e9900e12d16a2fae61e3121 Mon Sep 17 00:00:00 2001 From: MaxRobinsonTheGreat Date: Sat, 23 Aug 2025 14:29:24 -0500 Subject: [PATCH 099/101] added vision/prefix to cerebras --- package.json | 2 +- src/models/cerebras.js | 24 +++++++++++++++++++++--- 2 files changed, 22 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index dabb8fe..106a75c 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "type": "module", "dependencies": { "@anthropic-ai/sdk": "^0.17.1", - "@cerebras/cerebras_cloud_sdk": "^1.0.0", + "@cerebras/cerebras_cloud_sdk": "^1.46.0", "@google/generative-ai": "^0.2.1", "@huggingface/inference": "^2.8.1", "@mistralai/mistralai": "^1.1.0", diff --git a/src/models/cerebras.js b/src/models/cerebras.js index 21f1eee..be902a6 100644 --- a/src/models/cerebras.js +++ b/src/models/cerebras.js @@ -3,9 +3,9 @@ import { strictFormat } from '../utils/text.js'; import { getKey } from '../utils/keys.js'; export class Cerebras { + static prefix = 'cerebras'; constructor(model_name, url, params) { - // Strip the prefix - this.model_name = model_name.replace('cerebras/', ''); + this.model_name = model_name; this.url = url; this.params = params; @@ -19,7 +19,7 @@ export class Cerebras { messages.unshift({ role: 'system', content: systemMessage }); const pack = { - model: this.model_name || 'llama-4-scout-17b-16e-instruct', + model: this.model_name || 'gpt-oss-120b', messages, stream: false, ...(this.params || {}), @@ -37,6 +37,24 @@ export class Cerebras { return res; } + async sendVisionRequest(messages, systemMessage, imageBuffer) { + const imageMessages = [...messages]; + imageMessages.push({ + role: "user", + content: [ + { type: "text", text: systemMessage }, + { + type: "image_url", + image_url: { + url: `data:image/jpeg;base64,${imageBuffer.toString('base64')}` + } + } + ] + }); + + return this.sendRequest(imageMessages, systemMessage); + } + async embed(text) { throw new Error('Embeddings are not supported by Cerebras.'); } From 6c8382874da4a628dc5d6271d3e3f522eef8c851 Mon Sep 17 00:00:00 2001 From: MaxRobinsonTheGreat Date: Sat, 23 Aug 2025 14:33:26 -0500 Subject: [PATCH 100/101] fix grok, updated many default models --- profiles/claude.json | 2 +- profiles/claude_thinker.json | 2 +- profiles/gemini.json | 2 +- profiles/grok.json | 2 +- src/models/gemini.js | 2 +- src/models/grok.js | 9 ++++----- src/models/groq.js | 2 +- src/models/novita.js | 2 +- 8 files changed, 11 insertions(+), 12 deletions(-) diff --git a/profiles/claude.json b/profiles/claude.json index d4ce4cc..27f610d 100644 --- a/profiles/claude.json +++ b/profiles/claude.json @@ -1,7 +1,7 @@ { "name": "claude", - "model": "claude-3-5-sonnet-latest", + "model": "claude-4-sonnet-latest", "embedding": "openai" } \ No newline at end of file diff --git a/profiles/claude_thinker.json b/profiles/claude_thinker.json index fdddb59..64e3fb4 100644 --- a/profiles/claude_thinker.json +++ b/profiles/claude_thinker.json @@ -2,7 +2,7 @@ "name": "claude_thinker", "model": { - "model": "claude-3-7-sonnet-latest", + "model": "claude-4-sonnet-latest", "params": { "thinking": { "type": "enabled", diff --git a/profiles/gemini.json b/profiles/gemini.json index 8a91387..0e388c7 100644 --- a/profiles/gemini.json +++ b/profiles/gemini.json @@ -1,7 +1,7 @@ { "name": "gemini", - "model": "gemini-2.0-flash", + "model": "gemini-2.5-flash", "cooldown": 5000 } diff --git a/profiles/grok.json b/profiles/grok.json index eeb3a38..eda1aaa 100644 --- a/profiles/grok.json +++ b/profiles/grok.json @@ -1,7 +1,7 @@ { "name": "Grok", - "model": "grok-beta", + "model": "grok-3-mini-latest", "embedding": "openai" } \ No newline at end of file diff --git a/src/models/gemini.js b/src/models/gemini.js index 75a20e0..ba24072 100644 --- a/src/models/gemini.js +++ b/src/models/gemini.js @@ -37,7 +37,7 @@ export class Gemini { async sendRequest(turns, systemMessage) { let model; const modelConfig = { - model: this.model_name || "gemini-1.5-flash", + model: this.model_name || "gemini-2.5-flash", // systemInstruction does not work bc google is trash }; if (this.url) { diff --git a/src/models/grok.js b/src/models/grok.js index 0753f10..40c63ce 100644 --- a/src/models/grok.js +++ b/src/models/grok.js @@ -3,7 +3,7 @@ import { getKey } from '../utils/keys.js'; // xAI doesn't supply a SDK for their models, but fully supports OpenAI and Anthropic SDKs export class Grok { - static prefix = 'grok'; + static prefix = 'xai'; constructor(model_name, url, params) { this.model_name = model_name; this.url = url; @@ -20,13 +20,12 @@ export class Grok { this.openai = new OpenAIApi(config); } - async sendRequest(turns, systemMessage, stop_seq='***') { + async sendRequest(turns, systemMessage) { let messages = [{'role': 'system', 'content': systemMessage}].concat(turns); const pack = { - model: this.model_name || "grok-beta", + model: this.model_name || "grok-3-mini-latest", messages, - stop: [stop_seq], ...(this.params || {}) }; @@ -43,7 +42,7 @@ export class Grok { catch (err) { if ((err.message == 'Context length exceeded' || err.code == 'context_length_exceeded') && turns.length > 1) { console.log('Context length exceeded, trying again with shorter context.'); - return await this.sendRequest(turns.slice(1), systemMessage, stop_seq); + return await this.sendRequest(turns.slice(1), systemMessage); } else if (err.message.includes('The model expects a single `text` element per message.')) { console.log(err); res = 'Vision is only supported by certain models.'; diff --git a/src/models/groq.js b/src/models/groq.js index 9da88c7..85a913e 100644 --- a/src/models/groq.js +++ b/src/models/groq.js @@ -50,7 +50,7 @@ export class GroqCloudAPI { let completion = await this.groq.chat.completions.create({ "messages": messages, - "model": this.model_name || "llama-3.3-70b-versatile", + "model": this.model_name || "qwen/qwen3-32b", "stream": false, "stop": stop_seq, ...(this.params || {}) diff --git a/src/models/novita.js b/src/models/novita.js index 46140f0..18e1fc4 100644 --- a/src/models/novita.js +++ b/src/models/novita.js @@ -26,7 +26,7 @@ export class Novita { messages = strictFormat(messages); const pack = { - model: this.model_name || "meta-llama/llama-3.1-70b-instruct", + model: this.model_name || "meta-llama/llama-4-scout-17b-16e-instruct", messages, stop: [stop_seq], ...(this.params || {}) From 131d04b8874b87662e5024627c7313b00786f030 Mon Sep 17 00:00:00 2001 From: Max Robinson Date: Sat, 23 Aug 2025 14:36:15 -0500 Subject: [PATCH 101/101] removed duplicate requirements --- README.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/README.md b/README.md index 66ae616..fa2b798 100644 --- a/README.md +++ b/README.md @@ -10,9 +10,6 @@ Do not connect this bot to public servers with coding enabled. This project allo ## Requirements -- [Minecraft Java Edition](https://www.minecraft.net/en-us/store/minecraft-java-bedrock-edition-pc) (up to v1.21.1, recommend v1.20.4) -- [Node.js Installed](https://nodejs.org/) (at least v14) -- One of these: [OpenAI API Key](https://openai.com/blog/openai-api) | [Gemini API Key](https://aistudio.google.com/app/apikey) | [Anthropic API Key](https://docs.anthropic.com/claude/docs/getting-access-to-claude) | [Replicate API Key](https://replicate.com/) | [Hugging Face API Key](https://huggingface.co/) | [Groq API Key](https://console.groq.com/keys) | [Ollama Installed](https://ollama.com/download). | [Mistral API Key](https://docs.mistral.ai/getting-started/models/models_overview/) | [Qwen API Key [Intl.]](https://www.alibabacloud.com/help/en/model-studio/developer-reference/get-api-key)/[[cn]](https://help.aliyun.com/zh/model-studio/getting-started/first-api-call-to-qwen?) | [Novita AI API Key](https://novita.ai/settings?utm_source=github_mindcraft&utm_medium=github_readme&utm_campaign=link#key-management) | [Cerebras API Key](https://cloud.cerebras.ai) - [Minecraft Java Edition](https://www.minecraft.net/en-us/store/minecraft-java-bedrock-edition-pc) (up to v1.21.1, recommend v1.21.1) - [Node.js Installed](https://nodejs.org/) (at least v18) - One of these: [OpenAI API Key](https://openai.com/blog/openai-api) | [Gemini API Key](https://aistudio.google.com/app/apikey) | [Anthropic API Key](https://docs.anthropic.com/claude/docs/getting-access-to-claude) | [Replicate API Key](https://replicate.com/) | [Hugging Face API Key](https://huggingface.co/) | [Groq API Key](https://console.groq.com/keys) | [Ollama Installed](https://ollama.com/download). | [Mistral API Key](https://docs.mistral.ai/getting-started/models/models_overview/) | [Qwen API Key [Intl.]](https://www.alibabacloud.com/help/en/model-studio/developer-reference/get-api-key)/[[cn]](https://help.aliyun.com/zh/model-studio/getting-started/first-api-call-to-qwen?) | [Novita AI API Key](https://novita.ai/settings?utm_source=github_mindcraft&utm_medium=github_readme&utm_campaign=link#key-management) | [Cerebras API Key](https://cloud.cerebras.ai)